1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Wed Sep 28 10:27:48 UTC 2022

This commit is contained in:
Automated 2022-09-28 10:27:48 +00:00
parent 29683b8af4
commit ffb9e43995
Failed to extract signature
198 changed files with 4783 additions and 367 deletions

View file

@ -19,12 +19,12 @@ DESCRIPTION
EXAMPLES
To submit a Spark SQL job with a local script, run:
$ gcloud alpha dataproc jobs submit spark-sql --cluster=my_cluster \
$ gcloud alpha dataproc jobs submit spark-sql --cluster=my-cluster \
--file=my_queries.ql
To submit a Spark SQL job with inline queries, run:
$ gcloud alpha dataproc jobs submit spark-sql --cluster=my_cluster \
$ gcloud alpha dataproc jobs submit spark-sql --cluster=my-cluster \
-e="CREATE EXTERNAL TABLE foo(bar int) LOCATION \
'gs://my_bucket/'" -e="SELECT * FROM foo WHERE bar > 2"