1
0
Fork 0
mirror of https://github.com/nickpoida/og-aws.git synced 2025-03-09 15:40:06 +00:00

Add info about Step Function execution limits (#693)

This limit is not clearly documented and reduces the range of situations that it's appropriate to use Step Functions for iteration.
This commit is contained in:
hayfield 2019-04-07 10:14:54 +01:00 committed by Maish
parent 2f306fbc21
commit a51c3976ac

View file

@ -1649,6 +1649,7 @@ Step Functions
### Step Functions Gotchas and Limitations
- Step Functions are free tier eligible up to an initial 4000 transitions per month. Thereafter, the charge is $0.025 per 1000 state transitions.
- You can have many, simultaneous, executions, but be aware of lambda throttling limits. This has been per-account, pre-region, but recently became settable per-lambda.
- Step Function executions are limited to 25,000 events. Each step creates multiple events. This means that [iterating a loop using Lambda](https://docs.aws.amazon.com/step-functions/latest/dg/tutorial-create-iterate-pattern-section.html) is limited to an iteration count of around 3000 before needing to [continue as a new execution](https://docs.aws.amazon.com/step-functions/latest/dg/tutorial-continue-new.html).
Route 53
--------