mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-19 07:15:23 +00:00
gcloud: Wed Oct 8 11:07:39 UTC 2025
This commit is contained in:
parent
a0434a4d7a
commit
6f9bb9a0f0
137 changed files with 5133 additions and 291 deletions
|
|
@ -14,14 +14,15 @@ SYNOPSIS
|
|||
[--balancing-mode=BALANCING_MODE] [--capacity-scaler=CAPACITY_SCALER]
|
||||
[--description=DESCRIPTION] [--failover]
|
||||
[--max-utilization=MAX_UTILIZATION] [--preference=PREFERENCE]
|
||||
[--traffic-duration=TRAFFIC_DURATION]
|
||||
[--custom-metrics=[CUSTOM_METRICS,...]
|
||||
| --custom-metrics-file=[CUSTOM_METRICS,...]]
|
||||
[--global | --region=REGION]
|
||||
[--max-connections=MAX_CONNECTIONS
|
||||
| --max-connections-per-endpoint=MAX_CONNECTIONS_PER_ENDPOINT
|
||||
| --max-connections-per-instance=MAX_CONNECTIONS_PER_INSTANCE
|
||||
| --max-rate=MAX_RATE | --max-rate-per-endpoint=MAX_RATE_PER_ENDPOINT
|
||||
| --max-rate-per-instance=MAX_RATE_PER_INSTANCE]
|
||||
| --max-in-flight-requests=MAX_IN_FLIGHT_REQUESTS
|
||||
| --max-in-flight-requests-per-endpoint=MAX_IN_FLIGHT_REQUESTS_PER_ENDPOINT | --max-in-flight-requests-per-instance=MAX_IN_FLIGHT_REQUESTS_PER_INSTANCE | --max-rate=MAX_RATE | --max-rate-per-endpoint=MAX_RATE_PER_ENDPOINT | --max-rate-per-instance=MAX_RATE_PER_INSTANCE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
|
|
@ -188,6 +189,19 @@ OPTIONAL FLAGS
|
|||
CUSTOM_METRICS
|
||||
Spreads load based on custom defined and reported metrics.
|
||||
|
||||
IN_FLIGHT
|
||||
Available if the backend service's load balancing scheme is
|
||||
INTERNAL_MANAGED, INTERNAL_SELF_MANAGED, or EXTERNAL_MANAGED.
|
||||
Available if the backend service's protocol is one of HTTP, HTTPS,
|
||||
or HTTP/2.
|
||||
|
||||
Spreads load based on how many in-flight requests the backend can
|
||||
handle.
|
||||
|
||||
You must specify exactly one of these additional parameters:
|
||||
--max-in-flight-requests, --max-in-flight-requests-per-instance, or
|
||||
--max-in-flight-requests-per-endpoint, and --traffic-duration=LONG.
|
||||
|
||||
RATE
|
||||
Available if the backend service's load balancing scheme is
|
||||
INTERNAL_MANAGED, INTERNAL_SELF_MANAGED, or EXTERNAL. Available if
|
||||
|
|
@ -256,6 +270,20 @@ OPTIONAL FLAGS
|
|||
Backends with this preference setting are used up to their capacity
|
||||
limits first, while optimizing overall network latency.
|
||||
|
||||
--traffic-duration=TRAFFIC_DURATION
|
||||
The expected traffic duration for this service. TRAFFIC_DURATION must
|
||||
be one of:
|
||||
|
||||
LONG
|
||||
Most of the requests are expected to take more than multiple
|
||||
seconds to finish.
|
||||
|
||||
SHORT
|
||||
Most requests are expected to finish with a sub-second latency.
|
||||
|
||||
TRAFFIC_DURATION_UNSPECIFIED
|
||||
Default value. Defaults to SHORT.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--custom-metrics=[CUSTOM_METRICS,...]
|
||||
|
|
@ -372,6 +400,29 @@ OPTIONAL FLAGS
|
|||
number of instances in the instance group, and then dividing by the
|
||||
number of healthy instances.
|
||||
|
||||
--max-in-flight-requests=MAX_IN_FLIGHT_REQUESTS
|
||||
Maximum number of in-flight requests that the backend can handle.
|
||||
|
||||
This cannot be used when the endpoint type of an attached network
|
||||
endpoint group is INTERNET_IP_PORT, INTERNET_FQDN_PORT, or
|
||||
SERVERLESS.
|
||||
|
||||
--max-in-flight-requests-per-endpoint=MAX_IN_FLIGHT_REQUESTS_PER_ENDPOINT
|
||||
Only valid for network endpoint group backends. Defines the maximum
|
||||
number of in-flight requests per endpoint.
|
||||
|
||||
This cannot be used when the endpoint type of an attached network
|
||||
endpoint group is INTERNET_IP_PORT, INTERNET_FQDN_PORT, or
|
||||
SERVERLESS.
|
||||
|
||||
--max-in-flight-requests-per-instance=MAX_IN_FLIGHT_REQUESTS_PER_INSTANCE
|
||||
Only valid for instance group backends. Defines the maximum number of
|
||||
in-flight requests per instance.
|
||||
|
||||
This cannot be used when the endpoint type of an attached network
|
||||
endpoint group is INTERNET_IP_PORT, INTERNET_FQDN_PORT, or
|
||||
SERVERLESS.
|
||||
|
||||
--max-rate=MAX_RATE
|
||||
Maximum number of HTTP requests per second (RPS) that the backend can
|
||||
handle. Valid for network endpoint group and instance group backends
|
||||
|
|
|
|||
|
|
@ -12,14 +12,15 @@ SYNOPSIS
|
|||
[--balancing-mode=BALANCING_MODE] [--capacity-scaler=CAPACITY_SCALER]
|
||||
[--description=DESCRIPTION] [--failover]
|
||||
[--max-utilization=MAX_UTILIZATION] [--preference=PREFERENCE]
|
||||
[--traffic-duration=TRAFFIC_DURATION]
|
||||
[--clear-custom-metrics | --custom-metrics=[CUSTOM_METRICS,...]
|
||||
| --custom-metrics-file=[CUSTOM_METRICS,...]]
|
||||
[--global | --region=REGION]
|
||||
[--max-connections=MAX_CONNECTIONS
|
||||
| --max-connections-per-endpoint=MAX_CONNECTIONS_PER_ENDPOINT
|
||||
| --max-connections-per-instance=MAX_CONNECTIONS_PER_INSTANCE
|
||||
| --max-rate=MAX_RATE | --max-rate-per-endpoint=MAX_RATE_PER_ENDPOINT
|
||||
| --max-rate-per-instance=MAX_RATE_PER_INSTANCE]
|
||||
| --max-in-flight-requests=MAX_IN_FLIGHT_REQUESTS
|
||||
| --max-in-flight-requests-per-endpoint=MAX_IN_FLIGHT_REQUESTS_PER_ENDPOINT | --max-in-flight-requests-per-instance=MAX_IN_FLIGHT_REQUESTS_PER_INSTANCE | --max-rate=MAX_RATE | --max-rate-per-endpoint=MAX_RATE_PER_ENDPOINT | --max-rate-per-instance=MAX_RATE_PER_INSTANCE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
|
|
@ -160,6 +161,19 @@ OPTIONAL FLAGS
|
|||
CUSTOM_METRICS
|
||||
Spreads load based on custom defined and reported metrics.
|
||||
|
||||
IN_FLIGHT
|
||||
Available if the backend service's load balancing scheme is
|
||||
INTERNAL_MANAGED, INTERNAL_SELF_MANAGED, or EXTERNAL_MANAGED.
|
||||
Available if the backend service's protocol is one of HTTP, HTTPS,
|
||||
or HTTP/2.
|
||||
|
||||
Spreads load based on how many in-flight requests the backend can
|
||||
handle.
|
||||
|
||||
You must specify exactly one of these additional parameters:
|
||||
--max-in-flight-requests, --max-in-flight-requests-per-instance, or
|
||||
--max-in-flight-requests-per-endpoint, and --traffic-duration=LONG.
|
||||
|
||||
RATE
|
||||
Available if the backend service's load balancing scheme is
|
||||
INTERNAL_MANAGED, INTERNAL_SELF_MANAGED, or EXTERNAL. Available if
|
||||
|
|
@ -225,6 +239,20 @@ OPTIONAL FLAGS
|
|||
Backends with this preference setting are used up to their capacity
|
||||
limits first, while optimizing overall network latency.
|
||||
|
||||
--traffic-duration=TRAFFIC_DURATION
|
||||
The expected traffic duration for this service. TRAFFIC_DURATION must
|
||||
be one of:
|
||||
|
||||
LONG
|
||||
Most of the requests are expected to take more than multiple
|
||||
seconds to finish.
|
||||
|
||||
SHORT
|
||||
Most requests are expected to finish with a sub-second latency.
|
||||
|
||||
TRAFFIC_DURATION_UNSPECIFIED
|
||||
Default value. Defaults to SHORT.
|
||||
|
||||
At most one of these can be specified:
|
||||
|
||||
--clear-custom-metrics
|
||||
|
|
@ -336,6 +364,17 @@ OPTIONAL FLAGS
|
|||
number of instances in the instance group, and then dividing by the
|
||||
number of healthy instances.
|
||||
|
||||
--max-in-flight-requests=MAX_IN_FLIGHT_REQUESTS
|
||||
Maximum number of in-flight requests that the backend can handle.
|
||||
|
||||
--max-in-flight-requests-per-endpoint=MAX_IN_FLIGHT_REQUESTS_PER_ENDPOINT
|
||||
Only valid for network endpoint group backends. Defines the maximum
|
||||
number of in-flight requests per endpoint.
|
||||
|
||||
--max-in-flight-requests-per-instance=MAX_IN_FLIGHT_REQUESTS_PER_INSTANCE
|
||||
Only valid for instance group backends. Defines the maximum number of
|
||||
in-flight requests per instance.
|
||||
|
||||
--max-rate=MAX_RATE
|
||||
Maximum number of HTTP requests per second (RPS) that the backend can
|
||||
handle. Valid for network endpoint group and instance group backends
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue