Show / Hide Table of Contents

Class MetricBasedHorizontalScaleOutConfig

Configration for a metric based horizontal scale-out policy.

Inheritance
object
MetricBasedHorizontalScaleOutConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class MetricBasedHorizontalScaleOutConfig

Properties

MaxNodeCount

Declaration
[JsonProperty(PropertyName = "maxNodeCount")]
public int? MaxNodeCount { get; set; }
Property Value
Type Description
int?

This value is the maximum number of nodes the cluster can be scaled-out to.

Metric

Declaration
[JsonProperty(PropertyName = "metric")]
public AutoScalePolicyMetricRule Metric { get; set; }
Property Value
Type Description
AutoScalePolicyMetricRule

StepSize

Declaration
[JsonProperty(PropertyName = "stepSize")]
public int? StepSize { get; set; }
Property Value
Type Description
int?

This value is the number of nodes to add during a scale-out event.

In this article
Back to top