AWS Step Functions(複数のステップを組み合わせた自動処理フロー)のワークフローを設計・構築します。 次のような場合に使用: - 複数のステップからなるプロセスを一体管理したい - サガパターン(分散トランザクション)を実装したい - 複数の処理を並行実行したい - リトライ(再試行)やエラーからの復旧に対応させたい - Standard(標準)ワークフローと Express(高速)ワークフローの使い分けを検討したい
Design and build AWS Step Functions workflows. Use when orchestrating multi-step processes, implementing saga patterns, coordinating parallel tasks, handling retries and error recovery, or choosing between Standard and Express workflows.
あなたはStep Functionsのスペシャリストです。チームが信頼性が高くコスト効率の良いステートマシンワークフローを設計できるよう支援します。
| 機能 | Standard | Express |
|---|---|---|
| 最大実行時間 | 1年 | 5分 |
| 実行モデル | 正確に1回 | 最低1回(非同期)/ 最大1回(同期) |
| 料金 | ステート遷移ごと($0.025/1,000回) | リクエスト数+実行時間 |
| 履歴 | コンソールに完全な実行履歴 | CloudWatch Logsのみ |
| ステップ上限 | 1実行あたり25,000イベント | 無制限 |
| 最大並列数 | デフォルト約100万(ソフトリミット) | デフォルト約1,000(ソフトリミット) |
| 適した用途 | 長時間・ビジネスクリティカルなワークフロー | 大量・短時間のイベント処理 |
推奨方針:
推奨方針: すべてのTaskステートには必ずRetryとCatchを追加すること。 Retryがなければ、一時的な障害(Lambdaのスロットリング、DynamoDBのProvisionedThroughputExceededException、ネットワークタイムアウト)が発生した際、2秒後にリトライすれば成功するような場合でも、実行全体が即座に失敗する。 Catchがなければ、永続的な障害(不正な入力、リソース不足)が発生しても未処理エラーとしてワークフローが終了し、失敗のログ記録、通知、補償アクションの実行が一切できなくなる。 Retry+CatchをASLに追加するコストは数行程度だが、省略した場合のコストは本番環境でのサイレント障害だ。
Step Functionsは200以上のAWSサービスを直接呼び出せる。単純なAPI呼び出しをLambdaでラップしてはいけない。 Lambdaの代わりに使用すべき主なダイレクトインテグレーション:
各インテグレーションのASLサンプル、およびChoice・Parallel・Map・Waitステートのサンプルはreferences/integrations.mdを参照。
"Retry": [
{
"ErrorEquals": ["States.Timeout"],
"IntervalSeconds": 5,
"MaxAttempts": 2,
"BackoffRate": 2.0
},
{
"ErrorEquals": ["TransientError", "Lambda.ServiceException"],
"IntervalSeconds": 1,
"MaxAttempts": 5,
"BackoffRate": 2.0,
"JitterStrategy": "FULL"
},
{
"ErrorEquals": ["States.ALL"],
"MaxAttempts": 0
}
]
推奨方針: Retryは具体的なエラーから汎用的なエラーの順に並べること。
サンダリングハード(一斉リトライによる負荷集中)を防ぐためにJitterStrategy: FULLを使用する。
予期しないエラーをリトライせずに確実に失敗させるため、MaxAttempts: 0のStates.ALLを最後に配置する。
"Catch": [
{
"ErrorEquals": ["PaymentDeclined"],
"Next": "NotifyCustomerPaymentFailed",
"ResultPath": "$.error"
},
{
"ErrorEquals": ["States.ALL"],
"Next": "GenericErrorHandler",
"ResultPath": "$.error"
}
]
CatchではResultPathを必ず使用すること。元の入力をエラー情報と一緒に保持するためだ。 指定しない場合、エラー情報がステートの入力全体を上書きしてしまう。
失敗時に完了済みのステップを元に戻す必要がある、サービス間の分散トランザクションに使用する。
各ステップには補償アクションを用意し、補償は逆順に実行する。補償アクションはべき等でなければならない。
補償トランザクションフローを含む完全なASLサンプルはreferences/patterns.mdを参照。
.waitForTaskTokenを使用して実行を一時停止し、外部システムがsend-task-successまたはsend-task-failureでコールバックを送信するまで待機する。
コールバックタスクには必ずTimeoutSecondsを設定すること。
設定しない場合、Standardワークフローでは最長1年間待ち続けることになる。
完全なASLおよびCLIサンプルはreferences/patterns.mdを参照。
Expressの子実行を使用してS3から数百万件のアイテムを処理し、大規模な並列処理を実現する。
S3 CSVリーダー設定を含むASLサンプルはreferences/patterns.mdを参照。
# ステートマシンの作成
aws stepfunctions create-state-machine \
--name my-workflow \
--definition file://definition.json \
--role-arn arn:aws:iam::123456789:role/step-functions-role
# 実行の開始
aws stepfunctions start-execution \
--state-machine-arn arn:aws:states:us-east-1:123456789:stateMachine:my-workflow \
--input '{"orderId": "12345"}'
# 実行一覧の取得
aws stepfunctions list-executions \
--state-machine-arn arn:aws:states:us-east-1:123456789:stateMachine:my-workflow \
--status-filter FAILED
# 実行の詳細を取得
aws stepfunctions describe-execution \
--execution-arn arn:aws:states:us-east-1:123456789:execution:my-workflow:exec-123
# 実行履歴の取得(ステップごとのデバッグ)
aws stepfunctions get-execution-history \
--execution-arn arn:aws:states:us-east-1:123456789:execution:my-workflow:exec-123 \
--query 'events[?type==`TaskFailed` || type==`ExecutionFailed`]'
# ステートマシンの更新
aws stepfunctions update-state-machine \
--state-machine-arn arn:aws:states:us-east-1:123456789:stateMachine:my-workflow \
--definition file://definition.json
# ステートの単体テスト(ローカルテスト)
aws stepfunctions test-state \
--definition '{"Type":"Task","Resource":"arn:aws:states:::dynamodb:getItem","Parameters":{"TableName":"Orders","Key":{"orderId":{"S":"123"}}}}' \
--role-arn arn:aws:iam::123456789:role/step-functions-role \
--input '{"orderId": "123"}'
AWSコンソールのWorkflow Studioは以下の用途に使用する:
推奨方針: プロトタイピングはWorkflow Studioから始め、その後ASL(Amazon States Language)JSONにエクスポートしてバージョン管理で管理する。本番ワークフローをコンソールだけで管理してはいけない。
データは各ステートを以下の順に流れる:
InputPath → Parameters → Task → ResultSelector → ResultPath → OutputPath
推奨方針: ステートをまたいでデータを蓄積するためにResultPathを積極的に活用すること。
大きなAPIレスポンスを必要な情報だけに絞り込むためにResultSelectorを使用する(ステートサイズの削減とStandardワークフローのコスト削減につながる)。
各処理ステージの詳細なサンプルはreferences/integrations.mdを参照。
.waitForTaskTokenタスクが最長1年間ハングする。arn:aws:states:::states:startExecution.sync:2を使用してネストされたステートマシンに分割すること。ResultSelectorを使用する。ペイロードが小さければ処理が速くなる。aws-plan — Step Functionsワークフローを含む可能性のあるアーキテクチャ設計lambda — TaskステートのターゲットとなるLambda関数api-gateway — API GatewayとStep Functionsのダイレクトインテグレーション(StartExecutionYou are a Step Functions specialist. Help teams design reliable, cost-effective state machine workflows.
| Feature | Standard | Express |
|---|---|---|
| Max duration | 1 year | 5 minutes |
| Execution model | Exactly-once | At-least-once (async) / At-most-once (sync) |
| Pricing | Per state transition ($0.025/1000) | Per request + duration |
| History | Full execution history in console | CloudWatch Logs only |
| Step limit | 25,000 events per execution | Unlimited |
| Max concurrency | Default ~1M (soft limit) | Default ~1,000 (soft limit) |
| Ideal for | Long-running, business-critical workflows | High-volume, short, event processing |
Opinionated recommendation:
Opinionated: Always add Retry and Catch to every Task state. Without Retry, a transient failure (Lambda throttle, DynamoDB ProvisionedThroughputExceededException, network timeout) fails the entire execution immediately — even though a retry 2 seconds later would succeed. Without Catch, a permanent failure (invalid input, missing resource) causes an unhandled error that terminates the workflow with no way to log the failure, notify anyone, or run compensating actions. The cost of adding Retry+Catch is a few lines of ASL; the cost of omitting them is silent failures in production.
Step Functions can call 200+ AWS services directly. Do NOT wrap simple API calls in Lambda. Common direct integrations to use instead of Lambda:
See references/integrations.md for ASL examples of each integration, plus Choice, Parallel, Map, and Wait state examples.
"Retry": [
{
"ErrorEquals": ["States.Timeout"],
"IntervalSeconds": 5,
"MaxAttempts": 2,
"BackoffRate": 2.0
},
{
"ErrorEquals": ["TransientError", "Lambda.ServiceException"],
"IntervalSeconds": 1,
"MaxAttempts": 5,
"BackoffRate": 2.0,
"JitterStrategy": "FULL"
},
{
"ErrorEquals": ["States.ALL"],
"MaxAttempts": 0
}
]
Opinionated: Order retries from specific to general. Use JitterStrategy: FULL to prevent thundering herd. Put States.ALL with MaxAttempts: 0 last to explicitly catch-and-fail on unexpected errors rather than retrying them.
"Catch": [
{
"ErrorEquals": ["PaymentDeclined"],
"Next": "NotifyCustomerPaymentFailed",
"ResultPath": "$.error"
},
{
"ErrorEquals": ["States.ALL"],
"Next": "GenericErrorHandler",
"ResultPath": "$.error"
}
]
Always use ResultPath in Catch to preserve the original input alongside the error. Without it, the error replaces your entire state input.
For distributed transactions across services where you need to undo completed steps on failure. Each step has a compensating action, compensations run in reverse order, and compensations must be idempotent. See references/patterns.md for the full ASL example with compensating transaction flow.
Use .waitForTaskToken to pause execution until an external system sends a callback via send-task-success or send-task-failure. Always set TimeoutSeconds on callback tasks. Without it, the execution waits forever (up to 1 year for Standard). See references/patterns.md for the full ASL and CLI examples.
Process millions of items from S3 using Express child executions for massive parallelism. See references/patterns.md for the ASL example with S3 CSV reader configuration.
# Create state machine
aws stepfunctions create-state-machine \
--name my-workflow \
--definition file://definition.json \
--role-arn arn:aws:iam::123456789:role/step-functions-role
# Start execution
aws stepfunctions start-execution \
--state-machine-arn arn:aws:states:us-east-1:123456789:stateMachine:my-workflow \
--input '{"orderId": "12345"}'
# List executions
aws stepfunctions list-executions \
--state-machine-arn arn:aws:states:us-east-1:123456789:stateMachine:my-workflow \
--status-filter FAILED
# Get execution details
aws stepfunctions describe-execution \
--execution-arn arn:aws:states:us-east-1:123456789:execution:my-workflow:exec-123
# Get execution history (debug step-by-step)
aws stepfunctions get-execution-history \
--execution-arn arn:aws:states:us-east-1:123456789:execution:my-workflow:exec-123 \
--query 'events[?type==`TaskFailed` || type==`ExecutionFailed`]'
# Update state machine
aws stepfunctions update-state-machine \
--state-machine-arn arn:aws:states:us-east-1:123456789:stateMachine:my-workflow \
--definition file://definition.json
# Test a state (local testing)
aws stepfunctions test-state \
--definition '{"Type":"Task","Resource":"arn:aws:states:::dynamodb:getItem","Parameters":{"TableName":"Orders","Key":{"orderId":{"S":"123"}}}}' \
--role-arn arn:aws:iam::123456789:role/step-functions-role \
--input '{"orderId": "123"}'
Use Workflow Studio in the AWS Console for:
Opinionated: Start in Workflow Studio for prototyping, then export to ASL (Amazon States Language) JSON and manage in version control. Never rely solely on the console for production workflows.
Data flows through each state as: InputPath -> Parameters -> Task -> ResultSelector -> ResultPath -> OutputPath
Opinionated: Use ResultPath generously to accumulate data through states. Use ResultSelector to trim large API responses down to only what you need (saves state size and cost on Standard workflows). See references/integrations.md for detailed examples of each processing stage.
.waitForTaskToken tasks will hang for up to 1 year if the callback never arrives.arn:aws:states:::states:startExecution.sync:2.JitterStrategy on retries: Without jitter, retried tasks create thundering herd effects that amplify the original failure.ResultSelector to trim response payloads -- smaller payloads mean faster processing.aws-plan -- Architecture planning that may include Step Functions workflowslambda -- Lambda functions used as Task state targetsapi-gateway -- API Gateway to Step Functions direct integrations (StartExecution, StartSyncExecution)observability -- CloudWatch Logs, X-Ray tracing, and monitoring for Step Functionsaws-debug -- Debugging failed Step Functions executions原文・著作権は Anthropic および各プラグイン作者に帰属します。日本語訳は Claude API による自動翻訳です。