ApplicationMetricDescription.MaximumNodeCapacity Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the maximum node capacity for Service Fabric application.
public long MaximumNodeCapacity { get; set; }
member this.MaximumNodeCapacity : int64 with get, set
Public Property MaximumNodeCapacity As Long
Property Value
Specifies the Maximum Load for an instance of this Application on a single Node. Even if Capacity of the node is greater than this value, Service Fabric will limit the total load of services within the Application on each node to this value.
If set to zero, capacity for this metric is unlimited on each node.
When creating a new application with application capacity defined, the product of MaximumNodes and this value must always be smaller than or equal to TotalApplicationCapacity.
When updating existing application with application capacity, the product of MaximumNodes and this value must always be smaller than or equal to TotalApplicationCapacity.
Applies to
Azure SDK for .NET