Struct google_bigtableadmin2::api::AutoscalingTargets
source · pub struct AutoscalingTargets {
pub cpu_utilization_percent: Option<i32>,
pub storage_utilization_gib_per_node: Option<i32>,
}Expand description
The Autoscaling targets for a Cluster. These determine the recommended nodes.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cpu_utilization_percent: Option<i32>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.
storage_utilization_gib_per_node: Option<i32>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.
Trait Implementations§
source§impl Clone for AutoscalingTargets
impl Clone for AutoscalingTargets
source§fn clone(&self) -> AutoscalingTargets
fn clone(&self) -> AutoscalingTargets
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more