stepfunction parallel state branches limit

0

Hello, I'm learning step function.

is there any quota in (max number of branches in Parallel state) ? I can see max concurrency of Map state in the documentation, but can't find of Parallel state.

已提問 1 年前檢視次數 431 次
1 個回答
0
已接受的答案

Hi, StepFunctions have by default a quota a 10'000 registered activities at any given moment. See https://docs.aws.amazon.com/step-functions/latest/dg/limits-overview.html

As per https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-task-state.html

All work in your state machine is done by tasks. A task performs work 
by using an activity or an AWS Lambda function, or by passing parameters 
to the API actions of other services.

Parallel in itself may have lower limits that I don't know of.

In my experience, we try to avoid Parallel with too many branch. We rather go with Step Functions launching other Step Functions in some Parallel like yours

See https://docs.aws.amazon.com/step-functions/latest/dg/sample-start-workflow.html

Step-in-Step reduces the complexity of workflow management in edge conditions.

profile pictureAWS
專家
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南