-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexamples-catalog.json
More file actions
460 lines (460 loc) · 15.2 KB
/
examples-catalog.json
File metadata and controls
460 lines (460 loc) · 15.2 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
{
"packageName": "DurableExecutionsPythonExamples-1.0",
"examples": [
{
"name": "Hello World",
"description": "A simple hello world example with no durable operations",
"handler": "hello_world.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/hello_world.py"
},
{
"name": "Basic Step",
"description": "Basic usage of context.step() to checkpoint a simple operation",
"handler": "step.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/step/step.py"
},
{
"name": "Step with Name",
"description": "Step operation with explicit name parameter",
"handler": "step_with_name.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/step/step_with_name.py"
},
{
"name": "Step with Retry",
"description": "Usage of context.step() with retry configuration for fault tolerance",
"handler": "step_with_retry.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/step/step_with_retry.py"
},
{
"name": "Wait State",
"description": "Basic usage of context.wait() to pause execution",
"handler": "wait.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait/wait.py"
},
{
"name": "Multiple Wait",
"description": "Usage of demonstrating multiple sequential wait operations.",
"handler": "multiple_wait.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait/multiple_wait.py"
},
{
"name": "Callback",
"description": "Basic usage of context.create_callback() to create a callback for external systems",
"handler": "callback.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/callback/callback.py"
},
{
"name": "Wait for Callback Success",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback.py"
},
{
"name": "Wait for Callback Failure",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback.py"
},
{
"name": "Wait For Callback Success Anonymous",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_anonymous.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_anonymous.py"
},
{
"name": "Wait For Callback Heartbeat Sends",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_heartbeat.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_heartbeat.py"
},
{
"name": "Wait For Callback With Child Context",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_child.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_child.py"
},
{
"name": "Wait For Callback Mixed Ops",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_mixed_ops.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_mixed_ops.py"
},
{
"name": "Wait For Callback Multiple Invocations",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_multiple_invocations.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_multiple_invocations.py"
},
{
"name": "Wait For Callback Failing Submitter Catchable",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_submitter_failure_catchable.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_submitter_failure_catchable.py"
},
{
"name": "Wait For Callback Submitter Failure",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_submitter_failure.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_submitter_failure.py"
},
{
"name": "Wait For Callback Serdes",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_serdes.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_serdes.py"
},
{
"name": "Wait For Callback Timeout",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_timeout.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_timeout.py"
},
{
"name": "Wait For Callback Nested",
"description": "Usage of context.wait_for_callback() to wait for external system responses",
"handler": "wait_for_callback_nested.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_callback/wait_for_callback_nested.py"
},
{
"name": "Run in Child Context",
"description": "Usage of context.run_in_child_context() to execute operations in isolated contexts",
"handler": "run_in_child_context.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/run_in_child_context/run_in_child_context.py"
},
{
"name": "Parallel Operations",
"description": "Executing multiple durable operations in parallel",
"handler": "parallel.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/parallel/parallel.py"
},
{
"name": "Map Operations",
"description": "Processing collections using map-like durable operations",
"handler": "map_operations.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/map/map_operations.py"
},
{
"name": "Map Large Scale",
"description": "Processing collections using map-like durable operations in large scale",
"handler": "map_with_large_scale.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/map/map_with_large_scale.py"
},
{
"name": "Block Example",
"description": "Nested child contexts demonstrating block operations",
"handler": "block_example.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/block_example/block_example.py"
},
{
"name": "Logger Example",
"description": "Demonstrating logger usage and enrichment in DurableContext",
"handler": "logger_example.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"loggingConfig": {
"ApplicationLogLevel": "INFO",
"LogFormat": "JSON"
},
"path": "./src/logger_example/logger_example.py"
},
{
"name": "Steps with Retry",
"description": "Multiple steps with retry logic in a polling pattern",
"handler": "steps_with_retry.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/step/steps_with_retry.py"
},
{
"name": "Wait for Condition",
"description": "Polling pattern that waits for a condition to be met",
"handler": "wait_for_condition.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/wait_for_condition/wait_for_condition.py"
},
{
"name": "Run in Child Context Large Data",
"description": "Usage of context.run_in_child_context() to execute operations in isolated contexts with large data",
"handler": "run_in_child_context_large_data.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/run_in_child_context/run_in_child_context_large_data.py"
},
{
"name": "Simple Execution",
"description": "Simple execution without durable execution",
"handler": "simple_execution.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/simple_execution/simple_execution.py"
},
{
"name": "Map with Max Concurrency",
"description": "Map operation with maxConcurrency limit",
"handler": "map_with_max_concurrency.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/map/map_with_max_concurrency.py"
},
{
"name": "Map with Min Successful",
"description": "Map operation with min_successful completion config",
"handler": "map_with_min_successful.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/map/map_with_min_successful.py"
},
{
"name": "Map with Failure Tolerance",
"description": "Map operation with failure tolerance",
"handler": "map_with_failure_tolerance.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/map/map_with_failure_tolerance.py"
},
{
"name": "Parallel with Max Concurrency",
"description": "Parallel operation with maxConcurrency limit",
"handler": "parallel_with_max_concurrency.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/parallel/parallel_with_max_concurrency.py"
},
{
"name": "Parallel with Wait",
"description": "Parallel operation with wait operations in branches",
"handler": "parallel_with_wait.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/parallel/parallel_with_wait.py"
},
{
"name": "Parallel with Failure Tolerance",
"description": "Parallel operation with failure tolerance",
"handler": "parallel_with_failure_tolerance.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/parallel/parallel_with_failure_tolerance.py"
},
{
"name": "Map with Custom SerDes",
"description": "Map operation with custom item-level serialization",
"handler": "map_with_custom_serdes.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/map/map_with_custom_serdes.py"
},
{
"name": "Map with Batch SerDes",
"description": "Map operation with custom batch-level serialization",
"handler": "map_with_batch_serdes.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/map/map_with_batch_serdes.py"
},
{
"name": "Parallel with Custom SerDes",
"description": "Parallel operation with custom item-level serialization",
"handler": "parallel_with_custom_serdes.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/parallel/parallel_with_custom_serdes.py"
},
{
"name": "Parallel with Batch SerDes",
"description": "Parallel operation with custom batch-level serialization",
"handler": "parallel_with_batch_serdes.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/parallel/parallel_with_batch_serdes.py"
},
{
"name": "Handler Error",
"description": "Simple function with handler error",
"handler": "handler_error.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/handler_error/handler_error.py"
},
{
"name": "None Results",
"description": "Test handling of step operations with undefined result after replay.",
"handler": "none_results.handler",
"integration": true,
"durableConfig": {
"RetentionPeriodInDays": 7,
"ExecutionTimeout": 300
},
"path": "./src/none_results/none_results.py"
}
]
}