Show / Hide Table of Contents

Class ManagedComputeClusterWorkloadScalePolicy

Workload scaling policy configuration for workloads on managed compute cluster type compute target

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

Properties

CoolDownInSeconds

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

This value is the duration of time window used to restrict the flapping of instance count when the metrics used for scaling keep fluctuating. This window is used to infer a previous desired state and avoid unwanted changes to workload scale. Default value is 300 seconds.

InstanceCountAdjustment

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

The value is used for adjusting the count of instances by.

PendingDuration

Declaration
[JsonProperty(PropertyName = "pendingDuration")]
public string PendingDuration { get; set; }
Property Value
Type Description
string

The period of time that the condition defined in the alarm must persist before the alarm state changes from "OK" to "FIRING" or vice versa. For example, a value of 5 minutes means that the alarm must persist in breaching the condition for five minutes before the alarm updates its state to "FIRING"; likewise, the alarm must persist in not breaching the condition for five minutes before the alarm updates its state to "OK." The duration is specified as a string in ISO 8601 format (PT10M for ten minutes). Minimum: PT1M. Maximum: PT30M. Default: PT3M.

In this article
Back to top