Continue long-running workflows using Step Functions API (recommended)
AWS Step Functions is designed to run workflows with a finite duration and number of steps. Standard workflow executions have a maximum duration of one year and 25,000 events (see Step Functions service quotas).
For long-running executions, you can avoid reaching the hard quota by starting a new workflow execution
from the Task
state. You need to break your workflows up into smaller state machines which continue ongoing work in a new execution.
To start new workflow executions, you will call the StartExecution
API action from your Task
state and pass the necessary parameters.
Step Functions can start workflow executions by calling its own API as an integrated service. We recommend that you use this approach to avoid exceeding service quotas for long-running executions.
Step 1: Create a long-running state machine
Create a long-running state machine that you want to start from the Task
state of a different state machine. For this tutorial, use the
state machine that uses a Lambda function.
Note
Make sure to copy the name and Amazon Resource Name of this state machine in a text file for later use.
Step 2: Create a state machine to call the Step Functions API action
To start workflow executions from a Task
state
-
Open the Step Functions console
and choose Create state machine. -
In the Choose a template dialog box, select Blank.
-
Choose Select to open Workflow Studio in Design mode.
-
From the Actions tab, drag the StartExecution API action and drop it on the empty state labelled Drag first state here.
-
Choose the StartExecution state and do the following in the Configuration tab in Design mode:
-
Rename the state to
Start nested execution
. -
For Integration type, choose AWS SDK - new from the dropdown list.
-
In API Parameters, do the following:
-
For
StateMachineArn
, replace the sample Amazon Resource Name with the ARN of your state machine. For example, enter the ARN of the state machine that uses Lambda. -
For
Input
node, replace the existing placeholder text with the following value:"Comment": "Starting workflow execution using a Step Functions API action"
-
Make sure your inputs in API Parameters look similar to the following:
{ "StateMachineArn": "arn:aws:states:us-east-2:123456789012:stateMachine:
LambdaStateMachine
", "Input": { "Comment": "Starting workflow execution using a Step Functions API action", "AWS_STEP_FUNCTIONS_STARTED_BY_EXECUTION_ID.$": "$$.Execution.Id" }
-
-
-
(Optional) Choose Definition on the Inspector panel panel to view the automatically-generated Amazon States Language (ASL) definition of your workflow.
Tip
You can also view the ASL definition in the Code editor of Workflow Studio. In the code editor, you can also edit the ASL definition of your workflow.
-
Specify a name for your state machine. To do this, choose the edit icon next to the default state machine name of MyStateMachine. Then, in State machine configuration, specify a name in the State machine name box.
For this tutorial, enter the name
ParentStateMachine
. -
(Optional) In State machine configuration, specify other workflow settings, such as state machine type and its execution role.
For this tutorial, keep all the default selections in State machine settings.
If you've previously created an IAM role with the correct permissions for your state machine and want to use it, in Permissions, select Choose an existing role, and then select a role from the list. Or select Enter a role ARN and then provide an ARN for that IAM role.
-
In the Confirm role creation dialog box, choose Confirm to continue.
You can also choose View role settings to go back to State machine configuration.
Note
If you delete the IAM role that Step Functions creates, Step Functions can't recreate it later. Similarly, if you modify the role (for example, by removing Step Functions from the principals in the IAM policy), Step Functions can't restore its original settings later.
Step 3: Update the IAM policy
To make sure your state machine has permissions to start the execution of the state machine that uses a Lambda function, you need to attach an inline policy to your state machine's IAM role. For more information, see Embedding Inline Policies in the IAM User Guide.
-
On the ParentStateMachine page, choose the IAM role ARN to navigate to the IAM Roles page for your state machine.
-
Assign an appropriate permission to the IAM role of the ParentStateMachine for it to be able to start execution of another state machine. To assign the permission, do the following:
-
On the IAM Roles page, choose Add permissions, and then choose Create inline policy.
-
On the Create policy page, choose the JSON tab.
-
Replace the existing text with the following policy.
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "states:StartExecution" ], "Resource": [ "arn:aws:states:
us-east-2
:123456789012
:stateMachine:LambdaStateMachine
" ] } ] } -
Choose Review policy.
-
Specify a name for the policy, and then choose Create policy.
-
Step 4: Run the state machine
State machine executions are instances where you run your workflow to perform tasks.
-
On the ParentStateMachine page, choose Start execution.
The Start execution dialog box is displayed.
-
In the Start execution dialog box, do the following:
-
(Optional) Enter a custom execution name to override the generated default.
Non-ASCII names and logging
Step Functions accepts names for state machines, executions, activities, and labels that contain non-ASCII characters. Because such characters will not work with Amazon CloudWatch, we recommend using only ASCII characters so you can track metrics in CloudWatch.
-
(Optional) In the Input box, enter input values in JSON format to run your workflow.
-
Choose Start execution.
-
The Step Functions console directs you to a page that's titled with your execution ID. This page is known as the Execution Details page. On this page, you can review the execution results as the execution progresses or after it's complete.
To review the execution results, choose individual states on the Graph view, and then choose the individual tabs on the Step details pane to view each state's details including input, output, and definition respectively. For details about the execution information you can view on the Execution Details page, see Execution details overview.
-
-
Open the LambdaStateMachine page and notice a new execution triggered by the ParentStateMachine.