ApplicationDescription.MinimumNodes Property

Definition

Gets or sets the minimum number of nodes where Service Fabric will reserve capacity for this application.

public long MinimumNodes { get; set; }
member this.MinimumNodes : int64 with get, set
Public Property MinimumNodes As Long

Property Value

Number of nodes where Service Fabric will reserve Capacity in the cluster for this Application to be placed. Note that this does not mean that the Application is guaranteed to have replicas on all those nodes.

If this parameter is set to zero, no capacity will be reserved.

If this parameters is greater than MaximumNodes an ArgumentException will be thrown when CreateApplicationAsync(ApplicationDescription) is called.

Applies to