Struct google_api_proto::google::appengine::v1::AutomaticScaling
source · pub struct AutomaticScaling {Show 13 fields
pub cool_down_period: Option<Duration>,
pub cpu_utilization: Option<CpuUtilization>,
pub max_concurrent_requests: i32,
pub max_idle_instances: i32,
pub max_total_instances: i32,
pub max_pending_latency: Option<Duration>,
pub min_idle_instances: i32,
pub min_total_instances: i32,
pub min_pending_latency: Option<Duration>,
pub request_utilization: Option<RequestUtilization>,
pub disk_utilization: Option<DiskUtilization>,
pub network_utilization: Option<NetworkUtilization>,
pub standard_scheduler_settings: Option<StandardSchedulerSettings>,
}
Expand description
Automatic scaling is based on request rate, response latencies, and other application metrics.
Fields§
§cool_down_period: Option<Duration>
The time period that the Autoscaler should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.
cpu_utilization: Option<CpuUtilization>
Target scaling by CPU usage.
max_concurrent_requests: i32
Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.
Defaults to a runtime-specific value.
max_idle_instances: i32
Maximum number of idle instances that should be maintained for this version.
max_total_instances: i32
Maximum number of instances that should be started to handle requests for this version.
max_pending_latency: Option<Duration>
Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.
min_idle_instances: i32
Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.
min_total_instances: i32
Minimum number of running instances that should be maintained for this version.
min_pending_latency: Option<Duration>
Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.
request_utilization: Option<RequestUtilization>
Target scaling by request utilization.
disk_utilization: Option<DiskUtilization>
Target scaling by disk usage.
network_utilization: Option<NetworkUtilization>
Target scaling by network usage.
standard_scheduler_settings: Option<StandardSchedulerSettings>
Scheduler settings for standard environment.
Trait Implementations§
source§impl Clone for AutomaticScaling
impl Clone for AutomaticScaling
source§fn clone(&self) -> AutomaticScaling
fn clone(&self) -> AutomaticScaling
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AutomaticScaling
impl Debug for AutomaticScaling
source§impl Default for AutomaticScaling
impl Default for AutomaticScaling
source§impl Message for AutomaticScaling
impl Message for AutomaticScaling
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for AutomaticScaling
impl PartialEq for AutomaticScaling
source§fn eq(&self, other: &AutomaticScaling) -> bool
fn eq(&self, other: &AutomaticScaling) -> bool
self
and other
values to be equal, and is used
by ==
.impl Copy for AutomaticScaling
impl StructuralPartialEq for AutomaticScaling
Auto Trait Implementations§
impl Freeze for AutomaticScaling
impl RefUnwindSafe for AutomaticScaling
impl Send for AutomaticScaling
impl Sync for AutomaticScaling
impl Unpin for AutomaticScaling
impl UnwindSafe for AutomaticScaling
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request