Azure 批处理启动任务超过 autoScaleEvaluationInterval
Azure batch start task exceeds the autoScaleEvaluationInterval
我正在处理 Azure 批处理并遇到问题。我已经在我的池上配置了一个启动任务,等待成功,因为启动任务应该在启动作业任务之前完成。
我还想在我的池中设置自动缩放公式。我想将 autoScaleEvaluationInterval
周期设置为 10 mins
。但是每次启动任务都需要超过 10 mins
并且自动缩放公式开始删除池节点。
我尝试在创建池时将 withAutoScaleEvaluationInterval
设置为 30 minutes
,然后当池为 运行 时,我尝试将其更改回 10 mins
。
但这不起作用。
我希望您遵循此处文档中提到的一些提示 :)
请记下您可以尝试使用的 4 个符合条件的选项中的 $NodeDeallocationOption
,值:taskcompletion
-- Waits for currently running tasks to finish and then removes the node from the pool.
我正在处理 Azure 批处理并遇到问题。我已经在我的池上配置了一个启动任务,等待成功,因为启动任务应该在启动作业任务之前完成。
我还想在我的池中设置自动缩放公式。我想将 autoScaleEvaluationInterval
周期设置为 10 mins
。但是每次启动任务都需要超过 10 mins
并且自动缩放公式开始删除池节点。
我尝试在创建池时将 withAutoScaleEvaluationInterval
设置为 30 minutes
,然后当池为 运行 时,我尝试将其更改回 10 mins
。
但这不起作用。
我希望您遵循此处文档中提到的一些提示 :)
请记下您可以尝试使用的 4 个符合条件的选项中的 $NodeDeallocationOption
,值:taskcompletion
-- Waits for currently running tasks to finish and then removes the node from the pool.