Google Cloud Bigtable Administration v2 API - Class AutoscalingTargets (3.4.0)

public sealed class AutoscalingTargets : IMessage<AutoscalingTargets>, IEquatable<AutoscalingTargets>, IDeepCloneable<AutoscalingTargets>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Bigtable Administration v2 API class AutoscalingTargets.

The Autoscaling targets for a Cluster. These determine the recommended nodes.

Inheritance

object > AutoscalingTargets

Namespace

Google.Cloud.Bigtable.Admin.V2

Assembly

Google.Cloud.Bigtable.Admin.V2.dll

Constructors

AutoscalingTargets()

public AutoscalingTargets()

AutoscalingTargets(AutoscalingTargets)

public AutoscalingTargets(AutoscalingTargets other)
Parameter
NameDescription
otherAutoscalingTargets

Properties

CpuUtilizationPercent

public int CpuUtilizationPercent { get; set; }

The cpu utilization that the Autoscaler should be trying to achieve. This number is on a scale from 0 (no utilization) to 100 (total utilization), and is limited between 10 and 80, otherwise it will return INVALID_ARGUMENT error.

Property Value
TypeDescription
int

StorageUtilizationGibPerNode

public int StorageUtilizationGibPerNode { get; set; }

The storage utilization that the Autoscaler should be trying to achieve. This number is limited between 2560 (2.5TiB) and 5120 (5TiB) for a SSD cluster and between 8192 (8TiB) and 16384 (16TiB) for an HDD cluster; otherwise it will return INVALID_ARGUMENT error. If this value is set to 0, it will be treated as if it were set to the default value: 2560 for SSD, 8192 for HDD.

Property Value
TypeDescription
int