-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtemplate.yaml
More file actions
573 lines (573 loc) · 16 KB
/
template.yaml
File metadata and controls
573 lines (573 loc) · 16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Globals:
Function:
Runtime: python3.13
Timeout: 60
MemorySize: 128
Environment:
Variables:
AWS_ENDPOINT_URL_LAMBDA:
Ref: LambdaEndpoint
Parameters:
LambdaEndpoint:
Type: String
Default: https://lambda.us-west-2.amazonaws.com
Resources:
DurableFunctionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
ManagedPolicyArns:
- arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole
Policies:
- PolicyName: DurableExecutionPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- lambda:CheckpointDurableExecution
- lambda:GetDurableExecutionState
Resource: '*'
HelloWorld:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: hello_world.handler
Description: A simple hello world example with no durable operations
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
Step:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: step.handler
Description: Basic usage of context.step() to checkpoint a simple operation
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
StepWithName:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: step_with_name.handler
Description: Step operation with explicit name parameter
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
StepWithRetry:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: step_with_retry.handler
Description: Usage of context.step() with retry configuration for fault tolerance
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
Wait:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait.handler
Description: Basic usage of context.wait() to pause execution
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MultipleWait:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: multiple_wait.handler
Description: Usage of demonstrating multiple sequential wait operations.
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
Callback:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: callback.handler
Description: Basic usage of context.create_callback() to create a callback for
external systems
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallback:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackAnonymous:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_anonymous.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackHeartbeat:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_heartbeat.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackChild:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_child.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackMixedOps:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_mixed_ops.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackMultipleInvocations:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_multiple_invocations.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackSubmitterFailureCatchable:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_submitter_failure_catchable.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackSubmitterFailure:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_submitter_failure.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackSerdes:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_serdes.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackTimeout:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_timeout.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCallbackNested:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_callback_nested.handler
Description: Usage of context.wait_for_callback() to wait for external system
responses
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
RunInChildContext:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: run_in_child_context.handler
Description: Usage of context.run_in_child_context() to execute operations in
isolated contexts
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
Parallel:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: parallel.handler
Description: Executing multiple durable operations in parallel
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MapOperations:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: map_operations.handler
Description: Processing collections using map-like durable operations
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MapWithLargeScale:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: map_with_large_scale.handler
Description: Processing collections using map-like durable operations in large
scale
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
BlockExample:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: block_example.handler
Description: Nested child contexts demonstrating block operations
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
LoggerExample:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: logger_example.handler
Description: Demonstrating logger usage and enrichment in DurableContext
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
StepsWithRetry:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: steps_with_retry.handler
Description: Multiple steps with retry logic in a polling pattern
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
WaitForCondition:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: wait_for_condition.handler
Description: Polling pattern that waits for a condition to be met
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
RunInChildContextLargeData:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: run_in_child_context_large_data.handler
Description: Usage of context.run_in_child_context() to execute operations in
isolated contexts with large data
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
SimpleExecution:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: simple_execution.handler
Description: Simple execution without durable execution
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MapWithMaxConcurrency:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: map_with_max_concurrency.handler
Description: Map operation with maxConcurrency limit
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MapWithMinSuccessful:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: map_with_min_successful.handler
Description: Map operation with min_successful completion config
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MapWithFailureTolerance:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: map_with_failure_tolerance.handler
Description: Map operation with failure tolerance
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
ParallelWithMaxConcurrency:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: parallel_with_max_concurrency.handler
Description: Parallel operation with maxConcurrency limit
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
ParallelWithWait:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: parallel_with_wait.handler
Description: Parallel operation with wait operations in branches
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
ParallelWithFailureTolerance:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: parallel_with_failure_tolerance.handler
Description: Parallel operation with failure tolerance
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MapWithCustomSerdes:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: map_with_custom_serdes.handler
Description: Map operation with custom item-level serialization
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
MapWithBatchSerdes:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: map_with_batch_serdes.handler
Description: Map operation with custom batch-level serialization
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
ParallelWithCustomSerdes:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: parallel_with_custom_serdes.handler
Description: Parallel operation with custom item-level serialization
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
ParallelWithBatchSerdes:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: parallel_with_batch_serdes.handler
Description: Parallel operation with custom batch-level serialization
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
HandlerError:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: handler_error.handler
Description: Simple function with handler error
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300
NoneResults:
Type: AWS::Serverless::Function
Properties:
CodeUri: build/
Handler: none_results.handler
Description: Test handling of step operations with undefined result after replay.
Role:
Fn::GetAtt:
- DurableFunctionRole
- Arn
DurableConfig:
RetentionPeriodInDays: 7
ExecutionTimeout: 300