Class ClusterAutoscalingConfig
java.lang.Object
com.google.cloud.bigtable.admin.v2.models.ClusterAutoscalingConfig
Model class to create an autoscaling config for creating or updating a cluster. When creating
this config, min nodes, max nodes, and CPU utilization must all be set.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
The cluster id to set autoscaling onint
Get the CPU utilization that the Autoscaler should be trying to achieve.The instance id of the cluster to set autoscaling onint
Get the maximum number of nodes to scale up to.int
Get the minimum number of nodes to scale down to.int
Get the storage utilization that the Autoscaler should be trying to achieve.int
hashCode()
static ClusterAutoscalingConfig
setCpuUtilizationTargetPercent
(int cpuUtilizationTargetPercent) Set the CPU utilization that the Autoscaler should be trying to achieve.setMaxNodes
(int maxNodes) Set the maximum number of nodes to scale up to.setMinNodes
(int minNodes) Set the minimum number of nodes to scale down to.setStorageUtilizationGibPerNode
(int storageUtilizationGibPerNode) com.google.bigtable.admin.v2.PartialUpdateClusterRequest
Creates the request protobuf.
-
Method Details
-
of
-
getClusterId
The cluster id to set autoscaling on -
getInstanceId
The instance id of the cluster to set autoscaling on -
setMinNodes
Set the minimum number of nodes to scale down to. -
setMaxNodes
Set the maximum number of nodes to scale up to. -
setCpuUtilizationTargetPercent
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). -
setStorageUtilizationGibPerNode
-
getMinNodes
public int getMinNodes()Get the minimum number of nodes to scale down to. -
getMaxNodes
public int getMaxNodes()Get the maximum number of nodes to scale up to. -
getCpuUtilizationTargetPercent
public int getCpuUtilizationTargetPercent()Get 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). -
getStorageUtilizationGibPerNode
public int getStorageUtilizationGibPerNode()Get 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. -
toProto
@InternalApi public com.google.bigtable.admin.v2.PartialUpdateClusterRequest toProto(String projectId) Creates the request protobuf. This method is considered an internal implementation detail and not meant to be used by applications. -
equals
-
hashCode
public int hashCode()
-