|
187 | 187 | "ExecutionTimeout": 300 |
188 | 188 | }, |
189 | 189 | "path": "./src/simple_execution/simple_execution.py" |
| 190 | + }, |
| 191 | + { |
| 192 | + "name": "Map with Max Concurrency", |
| 193 | + "description": "Map operation with maxConcurrency limit", |
| 194 | + "handler": "map_with_max_concurrency.handler", |
| 195 | + "integration": true, |
| 196 | + "durableConfig": { |
| 197 | + "RetentionPeriodInDays": 7, |
| 198 | + "ExecutionTimeout": 300 |
| 199 | + }, |
| 200 | + "path": "./src/map/map_with_max_concurrency.py" |
| 201 | + }, |
| 202 | + { |
| 203 | + "name": "Map with Min Successful", |
| 204 | + "description": "Map operation with min_successful completion config", |
| 205 | + "handler": "map_with_min_successful.handler", |
| 206 | + "integration": true, |
| 207 | + "durableConfig": { |
| 208 | + "RetentionPeriodInDays": 7, |
| 209 | + "ExecutionTimeout": 300 |
| 210 | + }, |
| 211 | + "path": "./src/map/map_with_min_successful.py" |
| 212 | + }, |
| 213 | + { |
| 214 | + "name": "Map with Failure Tolerance", |
| 215 | + "description": "Map operation with failure tolerance", |
| 216 | + "handler": "map_with_failure_tolerance.handler", |
| 217 | + "integration": true, |
| 218 | + "durableConfig": { |
| 219 | + "RetentionPeriodInDays": 7, |
| 220 | + "ExecutionTimeout": 300 |
| 221 | + }, |
| 222 | + "path": "./src/map/map_with_failure_tolerance.py" |
| 223 | + }, |
| 224 | + { |
| 225 | + "name": "Parallel with Max Concurrency", |
| 226 | + "description": "Parallel operation with maxConcurrency limit", |
| 227 | + "handler": "parallel_with_max_concurrency.handler", |
| 228 | + "integration": true, |
| 229 | + "durableConfig": { |
| 230 | + "RetentionPeriodInDays": 7, |
| 231 | + "ExecutionTimeout": 300 |
| 232 | + }, |
| 233 | + "path": "./src/parallel/parallel_with_max_concurrency.py" |
| 234 | + }, |
| 235 | + { |
| 236 | + "name": "Parallel with Wait", |
| 237 | + "description": "Parallel operation with wait operations in branches", |
| 238 | + "handler": "parallel_with_wait.handler", |
| 239 | + "integration": true, |
| 240 | + "durableConfig": { |
| 241 | + "RetentionPeriodInDays": 7, |
| 242 | + "ExecutionTimeout": 300 |
| 243 | + }, |
| 244 | + "path": "./src/parallel/parallel_with_wait.py" |
| 245 | + }, |
| 246 | + { |
| 247 | + "name": "Parallel with Failure Tolerance", |
| 248 | + "description": "Parallel operation with failure tolerance", |
| 249 | + "handler": "parallel_with_failure_tolerance.handler", |
| 250 | + "integration": true, |
| 251 | + "durableConfig": { |
| 252 | + "RetentionPeriodInDays": 7, |
| 253 | + "ExecutionTimeout": 300 |
| 254 | + }, |
| 255 | + "path": "./src/parallel/parallel_with_failure_tolerance.py" |
| 256 | + }, |
| 257 | + { |
| 258 | + "name": "Map with Custom SerDes", |
| 259 | + "description": "Map operation with custom item-level serialization", |
| 260 | + "handler": "map_with_custom_serdes.handler", |
| 261 | + "integration": true, |
| 262 | + "durableConfig": { |
| 263 | + "RetentionPeriodInDays": 7, |
| 264 | + "ExecutionTimeout": 300 |
| 265 | + }, |
| 266 | + "path": "./src/map/map_with_custom_serdes.py" |
| 267 | + }, |
| 268 | + { |
| 269 | + "name": "Map with Batch SerDes", |
| 270 | + "description": "Map operation with custom batch-level serialization", |
| 271 | + "handler": "map_with_batch_serdes.handler", |
| 272 | + "integration": true, |
| 273 | + "durableConfig": { |
| 274 | + "RetentionPeriodInDays": 7, |
| 275 | + "ExecutionTimeout": 300 |
| 276 | + }, |
| 277 | + "path": "./src/map/map_with_batch_serdes.py" |
| 278 | + }, |
| 279 | + { |
| 280 | + "name": "Parallel with Custom SerDes", |
| 281 | + "description": "Parallel operation with custom item-level serialization", |
| 282 | + "handler": "parallel_with_custom_serdes.handler", |
| 283 | + "integration": true, |
| 284 | + "durableConfig": { |
| 285 | + "RetentionPeriodInDays": 7, |
| 286 | + "ExecutionTimeout": 300 |
| 287 | + }, |
| 288 | + "path": "./src/parallel/parallel_with_custom_serdes.py" |
| 289 | + }, |
| 290 | + { |
| 291 | + "name": "Parallel with Batch SerDes", |
| 292 | + "description": "Parallel operation with custom batch-level serialization", |
| 293 | + "handler": "parallel_with_batch_serdes.handler", |
| 294 | + "integration": true, |
| 295 | + "durableConfig": { |
| 296 | + "RetentionPeriodInDays": 7, |
| 297 | + "ExecutionTimeout": 300 |
| 298 | + }, |
| 299 | + "path": "./src/parallel/parallel_with_batch_serdes.py" |
190 | 300 | } |
191 | 301 | ] |
192 | 302 | } |
0 commit comments