最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

AWS step functions and replication across regions - Stack Overflow

programmeradmin1浏览0评论

I want to have AWS step functions created in two different regions. Let's say us-east-1 and eu-central-1.

When I invoke the step functions they run in their own region and will have their execution history stored in that region. Let's say step function was executed in us-east-1. Now if for any reason us-east-1 region goes down. Is there a way to have entire execution history of the step function to be available in another region?

Is there a way to enable replication of execution data across regions for step functions?

I want to have AWS step functions created in two different regions. Let's say us-east-1 and eu-central-1.

When I invoke the step functions they run in their own region and will have their execution history stored in that region. Let's say step function was executed in us-east-1. Now if for any reason us-east-1 region goes down. Is there a way to have entire execution history of the step function to be available in another region?

Is there a way to enable replication of execution data across regions for step functions?

Share Improve this question asked Jan 30 at 3:24 SandySandy 2,6156 gold badges27 silver badges33 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

No, the service does not support that.

If you have essential data that is only available in the execution history (not a good long-term storage mechanism as they expire after 90 days), you need to store it in another service.

You could write it to DynamoDB and use the Global Table feature to replicate the data between the two regions.

You could also periodically export the Execution History to a more durable storage medium for retention beyond 90 days.

发布评论

评论列表(0)

  1. 暂无评论