|
154 | 154 | "ExecutionTimeout": 300 |
155 | 155 | }, |
156 | 156 | "path": "./src/wait_for_condition.py" |
| 157 | + }, |
| 158 | + { |
| 159 | + "name": "Map with Max Concurrency", |
| 160 | + "description": "Map operation with maxConcurrency limit", |
| 161 | + "handler": "map_with_max_concurrency.handler", |
| 162 | + "integration": true, |
| 163 | + "durableConfig": { |
| 164 | + "RetentionPeriodInDays": 7, |
| 165 | + "ExecutionTimeout": 300 |
| 166 | + }, |
| 167 | + "path": "./src/map_with_max_concurrency.py" |
| 168 | + }, |
| 169 | + { |
| 170 | + "name": "Map with Min Successful", |
| 171 | + "description": "Map operation with min_successful completion config", |
| 172 | + "handler": "map_with_min_successful.handler", |
| 173 | + "integration": true, |
| 174 | + "durableConfig": { |
| 175 | + "RetentionPeriodInDays": 7, |
| 176 | + "ExecutionTimeout": 300 |
| 177 | + }, |
| 178 | + "path": "./src/map_with_min_successful.py" |
| 179 | + }, |
| 180 | + { |
| 181 | + "name": "Map with Failure Tolerance", |
| 182 | + "description": "Map operation with failure tolerance", |
| 183 | + "handler": "map_with_failure_tolerance.handler", |
| 184 | + "integration": true, |
| 185 | + "durableConfig": { |
| 186 | + "RetentionPeriodInDays": 7, |
| 187 | + "ExecutionTimeout": 300 |
| 188 | + }, |
| 189 | + "path": "./src/map_with_failure_tolerance.py" |
| 190 | + }, |
| 191 | + { |
| 192 | + "name": "Parallel with Max Concurrency", |
| 193 | + "description": "Parallel operation with maxConcurrency limit", |
| 194 | + "handler": "parallel_with_max_concurrency.handler", |
| 195 | + "integration": true, |
| 196 | + "durableConfig": { |
| 197 | + "RetentionPeriodInDays": 7, |
| 198 | + "ExecutionTimeout": 300 |
| 199 | + }, |
| 200 | + "path": "./src/parallel_with_max_concurrency.py" |
| 201 | + }, |
| 202 | + { |
| 203 | + "name": "Parallel with Wait", |
| 204 | + "description": "Parallel operation with wait operations in branches", |
| 205 | + "handler": "parallel_with_wait.handler", |
| 206 | + "integration": true, |
| 207 | + "durableConfig": { |
| 208 | + "RetentionPeriodInDays": 7, |
| 209 | + "ExecutionTimeout": 300 |
| 210 | + }, |
| 211 | + "path": "./src/parallel_with_wait.py" |
| 212 | + }, |
| 213 | + { |
| 214 | + "name": "Parallel with Failure Tolerance", |
| 215 | + "description": "Parallel operation with failure tolerance", |
| 216 | + "handler": "parallel_with_failure_tolerance.handler", |
| 217 | + "integration": true, |
| 218 | + "durableConfig": { |
| 219 | + "RetentionPeriodInDays": 7, |
| 220 | + "ExecutionTimeout": 300 |
| 221 | + }, |
| 222 | + "path": "./src/parallel_with_failure_tolerance.py" |
| 223 | + }, |
| 224 | + { |
| 225 | + "name": "Map with Custom SerDes", |
| 226 | + "description": "Map operation with custom item-level serialization", |
| 227 | + "handler": "map_with_custom_serdes.handler", |
| 228 | + "integration": true, |
| 229 | + "durableConfig": { |
| 230 | + "RetentionPeriodInDays": 7, |
| 231 | + "ExecutionTimeout": 300 |
| 232 | + }, |
| 233 | + "path": "./src/map_with_custom_serdes.py" |
| 234 | + }, |
| 235 | + { |
| 236 | + "name": "Map with Batch SerDes", |
| 237 | + "description": "Map operation with custom batch-level serialization", |
| 238 | + "handler": "map_with_batch_serdes.handler", |
| 239 | + "integration": true, |
| 240 | + "durableConfig": { |
| 241 | + "RetentionPeriodInDays": 7, |
| 242 | + "ExecutionTimeout": 300 |
| 243 | + }, |
| 244 | + "path": "./src/map_with_batch_serdes.py" |
| 245 | + }, |
| 246 | + { |
| 247 | + "name": "Parallel with Custom SerDes", |
| 248 | + "description": "Parallel operation with custom item-level serialization", |
| 249 | + "handler": "parallel_with_custom_serdes.handler", |
| 250 | + "integration": true, |
| 251 | + "durableConfig": { |
| 252 | + "RetentionPeriodInDays": 7, |
| 253 | + "ExecutionTimeout": 300 |
| 254 | + }, |
| 255 | + "path": "./src/parallel_with_custom_serdes.py" |
| 256 | + }, |
| 257 | + { |
| 258 | + "name": "Parallel with Batch SerDes", |
| 259 | + "description": "Parallel operation with custom batch-level serialization", |
| 260 | + "handler": "parallel_with_batch_serdes.handler", |
| 261 | + "integration": true, |
| 262 | + "durableConfig": { |
| 263 | + "RetentionPeriodInDays": 7, |
| 264 | + "ExecutionTimeout": 300 |
| 265 | + }, |
| 266 | + "path": "./src/parallel_with_batch_serdes.py" |
157 | 267 | } |
158 | 268 | ] |
159 | 269 | } |
0 commit comments