Skip to content

Commit 5f13c26

Browse files
committed
Update draft and fix folder path
1 parent 4d93e90 commit 5f13c26

2 files changed

Lines changed: 76 additions & 1 deletion

File tree

drafts/2023-10-17-the-stack-part-4.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,81 @@ We will start from our building blocks, which will be our subgraphs, and then bu
153153
The Router needs an HTTP endpoint, we will use [AWS Lambda Function URLs](https://aws.amazon.com/blogs/aws/announcing-aws-lambda-function-urls-built-in-https-endpoints-for-single-function-microservices/).
154154

155155

156+
Price per 1ms (eu-west-1):
157+
- 128MB = $0.0000000017
158+
- 512MB = $0.0000000067
159+
- 1024MB = $0.0000000133
160+
- 1536MB = $0.0000000200
161+
- 2048MB = $0.0000000267
162+
163+
Cold-start:
164+
- ms-gql-reviews
165+
- Memory: 128MB
166+
- Billed Duration: 67ms
167+
- Total time: 257ms
168+
- Init:
169+
- Invocation:
170+
- ms-gql-users
171+
- Memory: 128MB
172+
- Billed Duration: 57ms
173+
- Total time: 210ms
174+
- Init:
175+
- Invocation:
176+
- ms-gql-products
177+
- Memory: 128MB
178+
- Billed Duration: 53ms
179+
- Total time: 164ms
180+
- Init:
181+
- Invocation:
182+
183+
Warm-start:
184+
- ms-gql-reviews
185+
- Memory: 128MB
186+
- Billed Duration: 2ms
187+
- Total time: 7ms
188+
- ms-gql-users
189+
- Memory: 128MB
190+
- Billed Duration: 1ms
191+
- Total time: 6ms
192+
- ms-gql-products
193+
- Memory: 128MB
194+
- Billed Duration: 2ms
195+
- Total time: 6ms
196+
197+
198+
Cold-start:
199+
- ms-gql-reviews
200+
- Memory: 1024MB
201+
- Billed Duration: 45ms
202+
- Total time: 226ms
203+
- Init: 39ms
204+
- Invocation: 1ms
205+
- ms-gql-users
206+
- Memory: 1024MB
207+
- Billed Duration: 44ms
208+
- Total time: 201ms
209+
- Init: 38ms
210+
- Invocation: 4ms
211+
- ms-gql-products
212+
- Memory: 1024MB
213+
- Billed Duration: 43ms
214+
- Total time: 202ms
215+
- Init: 39ms
216+
- Invocation: 1ms
217+
218+
Warm-start:
219+
- ms-gql-reviews
220+
- Memory: 1024MB
221+
- Billed Duration: 2ms
222+
- Total time: 6ms
223+
- ms-gql-users
224+
- Memory: 1024MB
225+
- Billed Duration: 2ms
226+
- Total time: 8ms
227+
- ms-gql-products
228+
- Memory: 1024MB
229+
- Billed Duration: 2ms
230+
- Total time: 6ms
156231

157232
## DynamoDB: A database for our services
158233

posts/2023-10-16-the-stack-part-3.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Let's start by adding the dependency:
123123
$ bun add next-intl
124124
```
125125

126-
We'll also create a folder that will contain our localization files, which we'll call `locales/` in the root of the `ui-app/` project:
126+
We'll also create a folder that will contain our localization files, which we'll call `messages/` in the root of the `ui-app/` project:
127127

128128
```bash
129129
$ mkdir messages

0 commit comments

Comments
 (0)