Google Cloud Workflows - 并发执行限制

Google Cloud Workflows - Concurrent executions limit

对于“并发执行”,在工作流的配额文档的“请求限制”列表中,有“100 次执行”的限制。

"Concurrent executions - The maximum number of active (started and not yet completed) workflow executions per project: 100 executions"

https://cloud.google.com/workflows/quotas

此限制的真正含义是什么,例如,如果工作流执行正在等待 HTTP 回调,则它“已开始但尚未完成”。在这种情况下,处于这种等待状态的 100 次执行的限制在我看来很少。

根据我的理解,这是正确的。执行是工作流定义中包含的单个 运行 逻辑。所有工作流的执行都是独立的,它们可能同时发生,这取决于工作流的设计和触发方式。因此,仔细考虑工作流的休眠和重试逻辑很重要。