1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 23:08:48 +00:00

gcloud: Wed Mar 8 10:34:05 UTC 2023

This commit is contained in:
Automated 2023-03-08 10:34:05 +00:00
parent bdaa0b3cfc
commit 29661f002c
111 changed files with 1800 additions and 704 deletions

View file

@ -9,13 +9,15 @@ SYNOPSIS
[--endpoint-protocol=ENDPOINT_PROTOCOL; default="thrift"]
[--hive-metastore-version=HIVE_METASTORE_VERSION]
[--labels=[KEY=VALUE,...]] [--port=PORT; default=9083]
[--release-channel=RELEASE_CHANNEL; default="stable"] [--tier=TIER]
[--release-channel=RELEASE_CHANNEL; default="stable"]
[--auxiliary-versions=[AUXILIARY_VERSIONS,...]
| --auxiliary-versions-from-file=AUXILIARY_VERSIONS_FROM_FILE]
[--consumer-subnetworks=[CONSUMER_SUBNETWORKS,...] | --network=NETWORK
| --network-config-from-file=NETWORK_CONFIG_FROM_FILE]
[--hive-metastore-configs=KEY=VALUE
| --hive-metastore-configs-from-file=HIVE_METASTORE_CONFIGS_FROM_FILE]
[--instance-size=INSTANCE_SIZE | --scaling-factor=SCALING_FACTOR
| --tier=TIER]
[--kerberos-principal=KERBEROS_PRINCIPAL
--keytab=KEYTAB --krb5-config=KRB5_CONFIG]
[--maintenance-window-day=MAINTENANCE_WINDOW_DAY
@ -148,18 +150,6 @@ FLAGS
The STABLE release channel contains features that are considered
stable and have been validated for production use.
--tier=TIER
The tier of the service. TIER must be one of:
developer
The developer tier provides limited scalability and no fault
tolerance. Good for low-cost proof-of-concept.
enterprise
The enterprise tier provides multi-zone high availability, and
sufficient scalability for enterprise-level Dataproc Metastore
workloads.
Auxiliary versions configuration for the Dataproc Metastore service. When
specified, a secondary Hive metastore service is created along with the
primary service.
@ -252,6 +242,46 @@ FLAGS
</property>
</configuration>
The instance size of the Dataproc Metastore instance.
At most one of these can be specified:
--instance-size=INSTANCE_SIZE
The instance size of the service. INSTANCE_SIZE must be one of:
extra_large
Extra large instance size, maps to a scaling factor of 6.0.
extra_small
Extra small instance size, maps to a scaling factor of 0.1.
large
Large instance size, maps to a scaling factor of 3.0.
medium
Medium instance size, maps to a scaling factor of 1.0.
small
Small instance size, maps to a scaling factor of 0.5.
--scaling-factor=SCALING_FACTOR
The scaling factor of the service. This should be a float in the
range [0.1,6.0]. If the value is less than 1.0, then it should be a
multiple of 0.1. If the value is greater than 1.0, then it should be
a whole number. Float values should be formatted as x.y.
--tier=TIER
The tier of the service. TIER must be one of:
developer
The developer tier provides limited scalability and no fault
tolerance. Good for low-cost proof-of-concept.
enterprise
The enterprise tier provides multi-zone high availability, and
sufficient scalability for enterprise-level Dataproc Metastore
workloads.
Information used to configure the Hive metastore service as a service
principal in a Kerberos realm.

View file

@ -4,8 +4,10 @@ NAME
SYNOPSIS
gcloud beta metastore services update (SERVICE : --location=LOCATION)
[--async] [--data-catalog-sync] [--endpoint-protocol=ENDPOINT_PROTOCOL]
[--port=PORT] [--tier=TIER] [--update-labels=[KEY=VALUE,...]]
[--port=PORT] [--update-labels=[KEY=VALUE,...]]
[--clear-labels | --remove-labels=[KEY,...]]
[--instance-size=INSTANCE_SIZE | --scaling-factor=SCALING_FACTOR
| --tier=TIER]
[--kerberos-principal=KERBEROS_PRINCIPAL
--keytab=KEYTAB --krb5-config=KRB5_CONFIG]
[--maintenance-window-day=MAINTENANCE_WINDOW_DAY
@ -88,18 +90,6 @@ FLAGS
--port=PORT
The TCP port on which the Metastore service will listen.
--tier=TIER
The tier of the service. TIER must be one of:
developer
The developer tier provides limited scalability and no fault
tolerance. Good for low-cost proof-of-concept.
enterprise
The enterprise tier provides multi-zone high availability, and
sufficient scalability for enterprise-level Dataproc Metastore
workloads.
--update-labels=[KEY=VALUE,...]
List of label KEY=VALUE pairs to update. If a label exists, its value
is modified. Otherwise, a new label is created.
@ -129,6 +119,46 @@ FLAGS
silently ignored. If --update-labels is also specified then
--update-labels is applied first.
The instance size of the Dataproc Metastore instance.
At most one of these can be specified:
--instance-size=INSTANCE_SIZE
The instance size of the service. INSTANCE_SIZE must be one of:
extra_large
Extra large instance size, maps to a scaling factor of 6.0.
extra_small
Extra small instance size, maps to a scaling factor of 0.1.
large
Large instance size, maps to a scaling factor of 3.0.
medium
Medium instance size, maps to a scaling factor of 1.0.
small
Small instance size, maps to a scaling factor of 0.5.
--scaling-factor=SCALING_FACTOR
The scaling factor of the service. This should be a float in the
range [0.1,6.0]. If the value is less than 1.0, then it should be a
multiple of 0.1. If the value is greater than 1.0, then it should be
a whole number.
--tier=TIER
The tier of the service. TIER must be one of:
developer
The developer tier provides limited scalability and no fault
tolerance. Good for low-cost proof-of-concept.
enterprise
The enterprise tier provides multi-zone high availability, and
sufficient scalability for enterprise-level Dataproc Metastore
workloads.
Information used to configure the Hive metastore service as a service
principal in a Kerberos realm.