mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 06:47:12 +00:00
gcloud: Thu Nov 9 11:45:52 UTC 2023
This commit is contained in:
parent
f2c5d1d45f
commit
03f0979970
300 changed files with 8569 additions and 1319 deletions
|
|
@ -24,6 +24,7 @@ SYNOPSIS
|
|||
[--master-local-ssd-interface=MASTER_LOCAL_SSD_INTERFACE]
|
||||
[--master-machine-type=MASTER_MACHINE_TYPE]
|
||||
[--master-min-cpu-platform=PLATFORM] [--max-idle=MAX_IDLE]
|
||||
[--min-secondary-worker-fraction=MIN_SECONDARY_WORKER_FRACTION]
|
||||
[--node-group=NODE_GROUP]
|
||||
[--num-driver-pool-local-ssds=NUM_DRIVER_POOL_LOCAL_SSDS]
|
||||
[--num-master-local-ssds=NUM_MASTER_LOCAL_SSDS]
|
||||
|
|
@ -281,6 +282,13 @@ FLAGS
|
|||
such as "2h" or "1d". See $ gcloud topic datetimes for information on
|
||||
duration formats.
|
||||
|
||||
--min-secondary-worker-fraction=MIN_SECONDARY_WORKER_FRACTION
|
||||
Minimum fraction of secondary worker nodes required to create the
|
||||
cluster. If it is not met, cluster creation will fail. Must be a
|
||||
decimal value between 0 and 1. The number of required secondary workers
|
||||
is calculated by ceil(min-secondary-worker-fraction *
|
||||
num_secondary_workers). Defaults to 0.0001.
|
||||
|
||||
--node-group=NODE_GROUP
|
||||
The name of the sole-tenant node group to create the cluster on. Can be
|
||||
a short name ("node-group-name") or in the format
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud dataproc clusters update (CLUSTER : --region=REGION) [--async]
|
||||
[--graceful-decommission-timeout=GRACEFUL_DECOMMISSION_TIMEOUT]
|
||||
[--min-secondary-worker-fraction=MIN_SECONDARY_WORKER_FRACTION]
|
||||
[--num-secondary-workers=NUM_SECONDARY_WORKERS]
|
||||
[--num-workers=NUM_WORKERS] [--update-labels=[KEY=VALUE,...]]
|
||||
[--autoscaling-policy=AUTOSCALING_POLICY | --disable-autoscaling]
|
||||
|
|
@ -91,6 +92,12 @@ FLAGS
|
|||
maximum allowed timeout is 1 day. See $ gcloud topic datetimes for
|
||||
information on duration formats.
|
||||
|
||||
--min-secondary-worker-fraction=MIN_SECONDARY_WORKER_FRACTION
|
||||
Minimum fraction of new secondary worker nodes added in a scale up
|
||||
update operation, required to update the cluster. If it is not met,
|
||||
cluster updation will rollback the addition of secondary workers. Must
|
||||
be a decimal value between 0 and 1. Defaults to 0.0001.
|
||||
|
||||
--num-secondary-workers=NUM_SECONDARY_WORKERS
|
||||
The new number of secondary worker nodes in the cluster.
|
||||
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@ NAME
|
|||
|
||||
SYNOPSIS
|
||||
gcloud dataproc workflow-templates create (TEMPLATE : --region=REGION)
|
||||
[--dag-timeout=DAG_TIMEOUT] [--labels=[KEY=VALUE,...]]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
[--dag-timeout=DAG_TIMEOUT] [--kms-key=KMS_KEY]
|
||||
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
Create a workflow template.
|
||||
|
|
@ -57,6 +57,9 @@ FLAGS
|
|||
auto-cancelled, such as "10m" or "16h". See $ gcloud topic datetimes
|
||||
for information on duration formats.
|
||||
|
||||
--kms-key=KMS_KEY
|
||||
The KMS key used to encrypt sensitive data in the workflow template.
|
||||
|
||||
--labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to add.
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,9 @@ SYNOPSIS
|
|||
[--master-boot-disk-type=MASTER_BOOT_DISK_TYPE]
|
||||
[--master-local-ssd-interface=MASTER_LOCAL_SSD_INTERFACE]
|
||||
[--master-machine-type=MASTER_MACHINE_TYPE]
|
||||
[--master-min-cpu-platform=PLATFORM] [--node-group=NODE_GROUP]
|
||||
[--master-min-cpu-platform=PLATFORM]
|
||||
[--min-secondary-worker-fraction=MIN_SECONDARY_WORKER_FRACTION]
|
||||
[--node-group=NODE_GROUP]
|
||||
[--num-master-local-ssds=NUM_MASTER_LOCAL_SSDS]
|
||||
[--num-masters=NUM_MASTERS]
|
||||
[--num-secondary-worker-local-ssds=NUM_SECONDARY_WORKER_LOCAL_SSDS]
|
||||
|
|
@ -204,6 +206,13 @@ FLAGS
|
|||
which contains the list of available CPU platforms in the zone (see
|
||||
Availability of CPU platforms for more information).
|
||||
|
||||
--min-secondary-worker-fraction=MIN_SECONDARY_WORKER_FRACTION
|
||||
Minimum fraction of secondary worker nodes required to create the
|
||||
cluster. If it is not met, cluster creation will fail. Must be a
|
||||
decimal value between 0 and 1. The number of required secondary workers
|
||||
is calculated by ceil(min-secondary-worker-fraction *
|
||||
num_secondary_workers). Defaults to 0.0001.
|
||||
|
||||
--node-group=NODE_GROUP
|
||||
The name of the sole-tenant node group to create the cluster on. Can be
|
||||
a short name ("node-group-name") or in the format
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue