- NAME
-
- gcloud dataproc jobs submit presto - submit a Presto job to a cluster
- SYNOPSIS
-
-
gcloud dataproc jobs submit presto
(--cluster
=CLUSTER
|--cluster-labels
=[KEY
=VALUE
,…]) (--execute
=QUERY
,-e
QUERY
|--file
=FILE
,-f
FILE
) [--async
] [--bucket
=BUCKET
] [--client-tags
=[CLIENT_TAG
,…]] [--continue-on-failure
] [--driver-log-levels
=[PACKAGE
=LEVEL
,…]] [--labels
=[KEY
=VALUE
,…]] [--max-failures-per-hour
=MAX_FAILURES_PER_HOUR
] [--max-failures-total
=MAX_FAILURES_TOTAL
] [--properties
=[PARAM
=VALUE
,…]] [--query-output-format
=QUERY_OUTPUT_FORMAT
] [--region
=REGION
] [GCLOUD_WIDE_FLAG …
]
-
- DESCRIPTION
- Submit a Presto job to a cluster
- REQUIRED FLAGS
-
-
Exactly one of these must be specified:
--cluster
=CLUSTER
- The Dataproc cluster to submit the job to.
--cluster-labels
=[KEY
=VALUE
,…]-
List of label KEY=VALUE pairs to add.
Keys must start with a lowercase character and contain only hyphens (
-
), underscores (_
), lowercase characters, and numbers. Values must contain only hyphens (-
), underscores (_
), lowercase characters, and numbers.Labels of Dataproc cluster on which to place the job.
-
Exactly one of these must be specified:
--execute
=QUERY
,-e
QUERY
- A Presto query to execute.
--file
=FILE
,-f
FILE
- HCFS URI of file containing the Presto script to execute.
-
Exactly one of these must be specified:
- OPTIONAL FLAGS
-
--async
- Return immediately, without waiting for the operation in progress to complete.
--bucket
=BUCKET
- The Cloud Storage bucket to stage files in. Defaults to the cluster's configured bucket.
- A list of Presto client tags to attach to this query.
--continue-on-failure
- Whether to continue if a query fails.
--driver-log-levels
=[PACKAGE
=LEVEL
,…]- A list of package-to-log4j log level pairs to configure driver logging. For example: root=FATAL,com.example=INFO
--labels
=[KEY
=VALUE
,…]-
List of label KEY=VALUE pairs to add.
Keys must start with a lowercase character and contain only hyphens (
-
), underscores (_
), lowercase characters, and numbers. Values must contain only hyphens (-
), underscores (_
), lowercase characters, and numbers. --max-failures-per-hour
=MAX_FAILURES_PER_HOUR
- Specifies the maximum number of times a job can be restarted per hour in event of failure. Default is 0 (no retries after job failure).
--max-failures-total
=MAX_FAILURES_TOTAL
- Specifies the maximum total number of times a job can be restarted after the job fails. Default is 0 (no retries after job failure).
--properties
=[PARAM
=VALUE
,…]- A list of key value pairs to set Presto session properties.
--query-output-format
=QUERY_OUTPUT_FORMAT
- The query output display format. See the Presto documentation for supported output formats.
--region
=REGION
-
Cloud Dataproc region to use. Each Cloud Dataproc region constitutes an
independent resource namespace constrained to deploying instances into Compute
Engine zones inside the region. Overrides the default
dataproc/region
property value for this command invocation.
- GCLOUD WIDE FLAGS
-
These flags are available to all commands:
--account
,--billing-project
,--configuration
,--flags-file
,--flatten
,--format
,--help
,--impersonate-service-account
,--log-http
,--project
,--quiet
,--trace-token
,--user-output-enabled
,--verbosity
.Run
$ gcloud help
for details. - EXAMPLES
-
To submit a Presto job with a local script, run:
gcloud dataproc jobs submit presto --cluster=my_cluster --file=my_script.R
To submit a Presto job with inline queries, run:
gcloud dataproc jobs submit presto --cluster=my_cluster -e="SELECT * FROM foo WHERE bar > 2"
- NOTES
-
These variants are also available:
gcloud alpha dataproc jobs submit presto
gcloud beta dataproc jobs submit presto
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2021-03-02 UTC.