如何实现ML Step Functions 的版本管理?

0

【以下的问题经过翻译处理】 您好,Step Functions 可用于创建 ML 工作流程。 对创建这些工作流程的代码进行版本控制的最佳实践是什么? CodeCommit 中的 boto3 代码? 还有别的方法?

profile picture
EXPERT
asked 8 months ago30 views
1 Answer
0

【以下的回答经过翻译处理】 Step Functions 状态机不会单独存在,通常依赖于其他资源,例如 Lambda、EC2、DynamoDB 等。您可能希望将这些依赖项/资源一起打包在一个版本中,否则您可能会拥有一个不支持的状态机。 不能完全工作(例如,状态机版本与 Lambda 版本不匹配)。 我想实现这一目标的最简单方法是将这些资源作为代码(例如 CDK 或 CloudFormation)一起提供,并将它们存储在 Git 中。 然后使用 Git 标签进行版本控制。

profile picture
EXPERT
answered 8 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions