管道中的 Azure 集群启动时间

Azure Cluster Startup time in Pipeline

我有一个包含 10 个数据流活动的管道,每个活动都使用 AutoResolveIntegrationRuntime 默认集成集群。

当我触发管道时,每个数据流的集群启动大约需要 4 分钟,完成管道执行总共需要 40 分钟。我可以避免这种情况吗?如果是,怎么做?

谢谢, 卡尔提克

您需要将这些数据流放在没有依赖行的管道 canvas 上,以便它们全部 运行 并行,或者在您的 Azure IR 中设置 TTL 并使用相同的 Azure每个 activity 的 IR。这样,每个后续 activity 都可以使用暖池并在 1-2 分钟内启动,而不是 4 分钟。

Here is an explanation of these different methods.

And here is how to configure TTL to set a warm pool for your factory.