CloudPool.EnableAutoScale メソッド

定義

このプールで自動スケーリングを有効にします。

public void EnableAutoScale (string autoscaleFormula = default, TimeSpan? autoscaleEvaluationInterval = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);
member this.EnableAutoScale : string * Nullable<TimeSpan> * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit
Public Sub EnableAutoScale (Optional autoscaleFormula As String = Nothing, Optional autoscaleEvaluationInterval As Nullable(Of TimeSpan) = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)

パラメーター

autoscaleFormula
String

プール内のコンピューティング ノードの必要な数の数式。

autoscaleEvaluationInterval
Nullable<TimeSpan>

自動スケーリングの数式に従ってプール サイズを自動的に調整する時間間隔。 既定値は 15 分です。 最小値は 5 分です。

additionalBehaviors
IEnumerable<BatchClientBehavior>

の後の BatchClientBehavior Batch サービス要求に適用されるインスタンスの CustomBehaviorsコレクション。

注釈

数式は、プールに適用される前に有効性をチェックします。 数式が無効な場合は、例外が発生します。

プールでサイズ変更操作が進行中の場合、プールで自動スケーリングを有効にすることはできません。

これはブロック操作です。 非ブロッキングに相当する場合は、「」を参照してください EnableAutoScaleAsync(String, Nullable<TimeSpan>, IEnumerable<BatchClientBehavior>, CancellationToken)

適用対象