从 Metaflow 流程创建时如何在 aws 上定义步骤函数名称?

How to define step function name on aws when creating it from a metaflow flow?

我有一个 Metaflow 流程,我想在 aws 上为它创建一个步骤函数 但我想为同一流程创建 2 个步骤函数两次,一次作为暂存环境,另一次作为生产环境(MY_FLOW_STG 和 MY_FLOW_PRD)

我们必须创建步进函数的命令是:

python MY_FLOW.py step-functions create

此命令将强制命名并且不会给我创建两次步骤函数的可能性, 有人有想法吗?

你可以做到

SFN_STATE_MACHINE_PREFIX=blah python foo.py step-functions create

为您的步进函数状态机添加自定义前缀。

https://github.com/Netflix/metaflow/issues/372