Get desktop application:
View/edit binary Protocol Buffers messages
The API interface for managing autoscaling policies in the Google Cloud Dataproc API.
Creates new autoscaling policy.
A request to create an autoscaling policy.
Required. The "resource name" of the region or location, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.autoscalingPolicies.create`, the resource name of the region has the following format: `projects/{project_id}/regions/{region}` * For `projects.locations.autoscalingPolicies.create`, the resource name of the location has the following format: `projects/{project_id}/locations/{location}`
The autoscaling policy to create.
Updates (replaces) autoscaling policy. Disabled check for update_mask, because all updates will be full replacements.
A request to update an autoscaling policy.
Required. The updated autoscaling policy.
Retrieves autoscaling policy.
A request to fetch an autoscaling policy.
Required. The "resource name" of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.autoscalingPolicies.get`, the resource name of the policy has the following format: `projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id}` * For `projects.locations.autoscalingPolicies.get`, the resource name of the policy has the following format: `projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}`
Lists autoscaling policies in the project.
A request to list autoscaling policies in a project.
Required. The "resource name" of the region or location, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.autoscalingPolicies.list`, the resource name of the region has the following format: `projects/{project_id}/regions/{region}` * For `projects.locations.autoscalingPolicies.list`, the resource name of the location has the following format: `projects/{project_id}/locations/{location}`
Optional. The maximum number of results to return in each response. Must be less than or equal to 1000. Defaults to 100.
Optional. The page token, returned by a previous call, to request the next page of results.
A response to a request to list autoscaling policies in a project.
Output only. Autoscaling policies list.
Output only. This token is included in the response if there are more results to fetch.
Deletes an autoscaling policy. It is an error to delete an autoscaling policy that is in use by one or more clusters.
A request to delete an autoscaling policy. Autoscaling policies in use by one or more clusters will not be deleted.
Required. The "resource name" of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.autoscalingPolicies.delete`, the resource name of the policy has the following format: `projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id}` * For `projects.locations.autoscalingPolicies.delete`, the resource name of the policy has the following format: `projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}`
The ClusterControllerService provides methods to manage clusters of Compute Engine instances.
Creates a cluster in a project. The returned [Operation.metadata][google.longrunning.Operation.metadata] will be [ClusterOperationMetadata](/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata).
A request to create a cluster.
Required. The ID of the Google Cloud Platform project that the cluster belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The cluster to create.
Optional. A unique id used to identify the request. If the server receives two [CreateClusterRequest][google.cloud.dataproc.v1.CreateClusterRequest] requests with the same id, then the second request will be ignored and the first [google.longrunning.Operation][google.longrunning.Operation] created and stored in the backend is returned. It is recommended to always set this value to a [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier). The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Updates a cluster in a project. The returned [Operation.metadata][google.longrunning.Operation.metadata] will be [ClusterOperationMetadata](/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata).
A request to update a cluster.
Required. The ID of the Google Cloud Platform project the cluster belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The cluster name.
Required. The changes to the cluster.
Optional. Timeout for graceful YARN decomissioning. Graceful decommissioning allows removing nodes from the cluster without interrupting jobs in progress. Timeout specifies how long to wait for jobs in progress to finish before forcefully removing nodes (and potentially interrupting jobs). Default timeout is 0 (for forceful decommission), and the maximum allowed timeout is 1 day. Only supported on Dataproc image versions 1.2 and higher.
Required. Specifies the path, relative to `Cluster`, of the field to update. For example, to change the number of workers in a cluster to 5, the `update_mask` parameter would be specified as `config.worker_config.num_instances`, and the `PATCH` request body would specify the new value, as follows: { "config":{ "workerConfig":{ "numInstances":"5" } } } Similarly, to change the number of preemptible workers in a cluster to 5, the `update_mask` parameter would be `config.secondary_worker_config.num_instances`, and the `PATCH` request body would be set as follows: { "config":{ "secondaryWorkerConfig":{ "numInstances":"5" } } } <strong>Note:</strong> Currently, only the following fields can be updated: <table> <tbody> <tr> <td><strong>Mask</strong></td> <td><strong>Purpose</strong></td> </tr> <tr> <td><strong><em>labels</em></strong></td> <td>Update labels</td> </tr> <tr> <td><strong><em>config.worker_config.num_instances</em></strong></td> <td>Resize primary worker group</td> </tr> <tr> <td><strong><em>config.secondary_worker_config.num_instances</em></strong></td> <td>Resize secondary worker group</td> </tr> <tr> <td>config.autoscaling_config.policy_uri</td><td>Use, stop using, or change autoscaling policies</td> </tr> </tbody> </table>
Optional. A unique id used to identify the request. If the server receives two [UpdateClusterRequest][google.cloud.dataproc.v1.UpdateClusterRequest] requests with the same id, then the second request will be ignored and the first [google.longrunning.Operation][google.longrunning.Operation] created and stored in the backend is returned. It is recommended to always set this value to a [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier). The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Deletes a cluster in a project. The returned [Operation.metadata][google.longrunning.Operation.metadata] will be [ClusterOperationMetadata](/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata).
A request to delete a cluster.
Required. The ID of the Google Cloud Platform project that the cluster belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The cluster name.
Optional. Specifying the `cluster_uuid` means the RPC should fail (with error NOT_FOUND) if cluster with specified UUID does not exist.
Optional. A unique id used to identify the request. If the server receives two [DeleteClusterRequest][google.cloud.dataproc.v1.DeleteClusterRequest] requests with the same id, then the second request will be ignored and the first [google.longrunning.Operation][google.longrunning.Operation] created and stored in the backend is returned. It is recommended to always set this value to a [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier). The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Gets the resource representation for a cluster in a project.
Request to get the resource representation for a cluster in a project.
Required. The ID of the Google Cloud Platform project that the cluster belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The cluster name.
Lists all regions/{region}/clusters in a project.
A request to list the clusters in a project.
Required. The ID of the Google Cloud Platform project that the cluster belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Optional. A filter constraining the clusters to list. Filters are case-sensitive and have the following syntax: field = value [AND [field = value]] ... where **field** is one of `status.state`, `clusterName`, or `labels.[KEY]`, and `[KEY]` is a label key. **value** can be `*` to match all values. `status.state` can be one of the following: `ACTIVE`, `INACTIVE`, `CREATING`, `RUNNING`, `ERROR`, `DELETING`, or `UPDATING`. `ACTIVE` contains the `CREATING`, `UPDATING`, and `RUNNING` states. `INACTIVE` contains the `DELETING` and `ERROR` states. `clusterName` is the name of the cluster provided at creation time. Only the logical `AND` operator is supported; space-separated items are treated as having an implicit `AND` operator. Example filter: status.state = ACTIVE AND clusterName = mycluster AND labels.env = staging AND labels.starred = *
Optional. The standard List page size.
Optional. The standard List page token.
The list of all clusters in a project.
Output only. The clusters in the project.
Output only. This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent `ListClustersRequest`.
Gets cluster diagnostic information. The returned [Operation.metadata][google.longrunning.Operation.metadata] will be [ClusterOperationMetadata](/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#clusteroperationmetadata). After the operation completes, [Operation.response][google.longrunning.Operation.response] contains [DiagnoseClusterResults](/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#diagnoseclusterresults).
A request to collect cluster diagnostic information.
Required. The ID of the Google Cloud Platform project that the cluster belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The cluster name.
The JobController provides methods to manage jobs.
Submits a job to a cluster.
A request to submit a job.
Required. The ID of the Google Cloud Platform project that the job belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The job resource.
Optional. A unique id used to identify the request. If the server receives two [SubmitJobRequest][google.cloud.dataproc.v1.SubmitJobRequest] requests with the same id, then the second request will be ignored and the first [Job][google.cloud.dataproc.v1.Job] created and stored in the backend is returned. It is recommended to always set this value to a [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier). The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Gets the resource representation for a job in a project.
A request to get the resource representation for a job in a project.
Required. The ID of the Google Cloud Platform project that the job belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The job ID.
Lists regions/{region}/jobs in a project.
A request to list jobs in a project.
Required. The ID of the Google Cloud Platform project that the job belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Optional. The number of results to return in each response.
Optional. The page token, returned by a previous call, to request the next page of results.
Optional. If set, the returned jobs list includes only jobs that were submitted to the named cluster.
Optional. Specifies enumerated categories of jobs to list. (default = match ALL jobs). If `filter` is provided, `jobStateMatcher` will be ignored.
Optional. A filter constraining the jobs to list. Filters are case-sensitive and have the following syntax: [field = value] AND [field [= value]] ... where **field** is `status.state` or `labels.[KEY]`, and `[KEY]` is a label key. **value** can be `*` to match all values. `status.state` can be either `ACTIVE` or `NON_ACTIVE`. Only the logical `AND` operator is supported; space-separated items are treated as having an implicit `AND` operator. Example filter: status.state = ACTIVE AND labels.env = staging AND labels.starred = *
A list of jobs in a project.
Output only. Jobs list.
Optional. This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the `page_token` in a subsequent <code>ListJobsRequest</code>.
Updates a job in a project.
A request to update a job.
Required. The ID of the Google Cloud Platform project that the job belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The job ID.
Required. The changes to the job.
Required. Specifies the path, relative to <code>Job</code>, of the field to update. For example, to update the labels of a Job the <code>update_mask</code> parameter would be specified as <code>labels</code>, and the `PATCH` request body would specify the new value. <strong>Note:</strong> Currently, <code>labels</code> is the only field that can be updated.
Starts a job cancellation request. To access the job resource after cancellation, call [regions/{region}/jobs.list](/dataproc/docs/reference/rest/v1/projects.regions.jobs/list) or [regions/{region}/jobs.get](/dataproc/docs/reference/rest/v1/projects.regions.jobs/get).
A request to cancel a job.
Required. The ID of the Google Cloud Platform project that the job belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The job ID.
Deletes the job from the project. If the job is active, the delete fails, and the response returns `FAILED_PRECONDITION`.
A request to delete a job.
Required. The ID of the Google Cloud Platform project that the job belongs to.
Required. The Cloud Dataproc region in which to handle the request.
Required. The job ID.
The API interface for managing Workflow Templates in the Cloud Dataproc API.
Creates new workflow template.
A request to create a workflow template.
Required. The resource name of the region or location, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates,create`, the resource name of the region has the following format: `projects/{project_id}/regions/{region}` * For `projects.locations.workflowTemplates.create`, the resource name of the location has the following format: `projects/{project_id}/locations/{location}`
Required. The Dataproc workflow template to create.
Retrieves the latest workflow template. Can retrieve previously instantiated template by specifying optional version parameter.
A request to fetch a workflow template.
Required. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates.get`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates.get`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
Optional. The version of workflow template to retrieve. Only previously instantiated versions can be retrieved. If unspecified, retrieves the current version.
Instantiates a template and begins execution. The returned Operation can be used to track execution of workflow by polling [operations.get][google.longrunning.Operations.GetOperation]. The Operation will complete when entire workflow is finished. The running workflow can be aborted via [operations.cancel][google.longrunning.Operations.CancelOperation]. This will cause any inflight jobs to be cancelled and workflow-owned clusters to be deleted. The [Operation.metadata][google.longrunning.Operation.metadata] will be [WorkflowMetadata](/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#workflowmetadata). Also see [Using WorkflowMetadata](/dataproc/docs/concepts/workflows/debugging#using_workflowmetadata). On successful completion, [Operation.response][google.longrunning.Operation.response] will be [Empty][google.protobuf.Empty].
A request to instantiate a workflow template.
Required. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates.instantiate`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates.instantiate`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
Optional. The version of workflow template to instantiate. If specified, the workflow will be instantiated only if the current version of the workflow template has the supplied version. This option cannot be used to instantiate a previous version of workflow template.
Optional. A tag that prevents multiple concurrent workflow instances with the same tag from running. This mitigates risk of concurrent instances started due to retries. It is recommended to always set this value to a [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier). The tag must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Optional. Map from parameter names to values that should be used for those parameters. Values may not exceed 100 characters.
Instantiates a template and begins execution. This method is equivalent to executing the sequence [CreateWorkflowTemplate][google.cloud.dataproc.v1.WorkflowTemplateService.CreateWorkflowTemplate], [InstantiateWorkflowTemplate][google.cloud.dataproc.v1.WorkflowTemplateService.InstantiateWorkflowTemplate], [DeleteWorkflowTemplate][google.cloud.dataproc.v1.WorkflowTemplateService.DeleteWorkflowTemplate]. The returned Operation can be used to track execution of workflow by polling [operations.get][google.longrunning.Operations.GetOperation]. The Operation will complete when entire workflow is finished. The running workflow can be aborted via [operations.cancel][google.longrunning.Operations.CancelOperation]. This will cause any inflight jobs to be cancelled and workflow-owned clusters to be deleted. The [Operation.metadata][google.longrunning.Operation.metadata] will be [WorkflowMetadata](/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#workflowmetadata). Also see [Using WorkflowMetadata](/dataproc/docs/concepts/workflows/debugging#using_workflowmetadata). On successful completion, [Operation.response][google.longrunning.Operation.response] will be [Empty][google.protobuf.Empty].
A request to instantiate an inline workflow template.
Required. The resource name of the region or location, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates,instantiateinline`, the resource name of the region has the following format: `projects/{project_id}/regions/{region}` * For `projects.locations.workflowTemplates.instantiateinline`, the resource name of the location has the following format: `projects/{project_id}/locations/{location}`
Required. The workflow template to instantiate.
Optional. A tag that prevents multiple concurrent workflow instances with the same tag from running. This mitigates risk of concurrent instances started due to retries. It is recommended to always set this value to a [UUID](https://en.wikipedia.org/wiki/Universally_unique_identifier). The tag must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 40 characters.
Updates (replaces) workflow template. The updated template must contain version that matches the current server version.
A request to update a workflow template.
Required. The updated workflow template. The `template.version` field must match the current version.
Lists workflows that match the specified filter in the request.
A request to list workflow templates in a project.
Required. The resource name of the region or location, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates,list`, the resource name of the region has the following format: `projects/{project_id}/regions/{region}` * For `projects.locations.workflowTemplates.list`, the resource name of the location has the following format: `projects/{project_id}/locations/{location}`
Optional. The maximum number of results to return in each response.
Optional. The page token, returned by a previous call, to request the next page of results.
A response to a request to list workflow templates in a project.
Output only. WorkflowTemplates list.
Output only. This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the page_token in a subsequent <code>ListWorkflowTemplatesRequest</code>.
Deletes a workflow template. It does not cancel in-progress workflows.
A request to delete a workflow template. Currently started workflows will remain running.
Required. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates.delete`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates.instantiate`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
Optional. The version of workflow template to delete. If specified, will only delete the template if the current server version matches specified version.
Specifies the type and number of accelerator cards attached to the instances of an instance. See [GPUs on Compute Engine](/compute/docs/gpus/).
Used in:
Full URL, partial URI, or short name of the accelerator type resource to expose to this instance. See [Compute Engine AcceleratorTypes](/compute/docs/reference/beta/acceleratorTypes). Examples: * `https://www.googleapis.com/compute/beta/projects/[project_id]/zones/us-east1-a/acceleratorTypes/nvidia-tesla-k80` * `projects/[project_id]/zones/us-east1-a/acceleratorTypes/nvidia-tesla-k80` * `nvidia-tesla-k80` **Auto Zone Exception**: If you are using the Cloud Dataproc [Auto Zone Placement](/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the accelerator type resource, for example, `nvidia-tesla-k80`.
The number of the accelerator cards of this type exposed to this instance.
Autoscaling Policy config associated with the cluster.
Used in:
Optional. The autoscaling policy used by the cluster. Only resource names including projectid and location (region) are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/autoscalingPolicies/[policy_id]` * `projects/[project_id]/locations/[dataproc_region]/autoscalingPolicies/[policy_id]` Note that the policy must be in the same project and Cloud Dataproc region.
Describes an autoscaling policy for Dataproc cluster autoscaler.
Used as response type in: AutoscalingPolicyService.CreateAutoscalingPolicy, AutoscalingPolicyService.GetAutoscalingPolicy, AutoscalingPolicyService.UpdateAutoscalingPolicy
Used as field type in:
, ,Required. The policy id. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3 and 50 characters.
Output only. The "resource name" of the autoscaling policy, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.autoscalingPolicies`, the resource name of the policy has the following format: `projects/{project_id}/regions/{region}/autoscalingPolicies/{policy_id}` * For `projects.locations.autoscalingPolicies`, the resource name of the policy has the following format: `projects/{project_id}/locations/{location}/autoscalingPolicies/{policy_id}`
Autoscaling algorithm for policy.
Required. Describes how the autoscaler will operate for primary workers.
Optional. Describes how the autoscaler will operate for secondary workers.
Basic algorithm for autoscaling.
Used in:
Required. YARN autoscaling configuration.
Optional. Duration between scaling events. A scaling period starts after the update operation from the previous event has completed. Bounds: [2m, 1d]. Default: 2m.
Basic autoscaling configurations for YARN.
Used in:
Required. Timeout for YARN graceful decommissioning of Node Managers. Specifies the duration to wait for jobs to complete before forcefully removing workers (and potentially interrupting jobs). Only applicable to downscaling operations. Bounds: [0s, 1d].
Required. Fraction of average pending memory in the last cooldown period for which to add workers. A scale-up factor of 1.0 will result in scaling up so that there is no pending memory remaining after the update (more aggressive scaling). A scale-up factor closer to 0 will result in a smaller magnitude of scaling up (less aggressive scaling). Bounds: [0.0, 1.0].
Required. Fraction of average pending memory in the last cooldown period for which to remove workers. A scale-down factor of 1 will result in scaling down so that there is no available memory remaining after the update (more aggressive scaling). A scale-down factor of 0 disables removing workers, which can be beneficial for autoscaling a single job. Bounds: [0.0, 1.0].
Optional. Minimum scale-up threshold as a fraction of total cluster size before scaling occurs. For example, in a 20-worker cluster, a threshold of 0.1 means the autoscaler must recommend at least a 2-worker scale-up for the cluster to scale. A threshold of 0 means the autoscaler will scale up on any recommended change. Bounds: [0.0, 1.0]. Default: 0.0.
Optional. Minimum scale-down threshold as a fraction of total cluster size before scaling occurs. For example, in a 20-worker cluster, a threshold of 0.1 means the autoscaler must recommend at least a 2 worker scale-down for the cluster to scale. A threshold of 0 means the autoscaler will scale down on any recommended change. Bounds: [0.0, 1.0]. Default: 0.0.
Describes the identifying information, config, and status of a cluster of Compute Engine instances.
Used as response type in: ClusterController.GetCluster
Used as field type in:
, ,Required. The Google Cloud Platform project ID that the cluster belongs to.
Required. The cluster name. Cluster names within a project must be unique. Names of deleted clusters can be reused.
Required. The cluster config. Note that Cloud Dataproc may set default values, and values may change when clusters are updated.
Optional. The labels to associate with this cluster. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a cluster.
Output only. Cluster status.
Output only. The previous cluster status.
Output only. A cluster UUID (Unique Universal Identifier). Cloud Dataproc generates this value when it creates the cluster.
Contains cluster daemon metrics such as HDFS and YARN stats. **Beta Feature**: This report is available for testing purposes only. It may be changed before final release.
The cluster config.
Used in:
,Optional. A Google Cloud Storage bucket used to stage job dependencies, config files, and job driver console output. If you do not specify a staging bucket, Cloud Dataproc will determine a Cloud Storage location (US, ASIA, or EU) for your cluster's staging bucket according to the Google Compute Engine zone where your cluster is deployed, and then create and manage this project-level, per-location bucket (see [Cloud Dataproc staging bucket](/dataproc/docs/concepts/configuring-clusters/staging-bucket)).
Optional. The shared Compute Engine config settings for all instances in a cluster.
Optional. The Compute Engine config settings for the master instance in a cluster.
Optional. The Compute Engine config settings for worker instances in a cluster.
Optional. The Compute Engine config settings for additional worker instances in a cluster.
Optional. The config settings for software inside the cluster.
Optional. Commands to execute on each node after config is completed. By default, executables are run on master and all worker nodes. You can test a node's `role` metadata to run an executable on a master or worker node, as shown below using `curl` (you can also use `wget`): ROLE=$(curl -H Metadata-Flavor:Google http://metadata/computeMetadata/v1/instance/attributes/dataproc-role) if [[ "${ROLE}" == 'Master' ]]; then ... master specific actions ... else ... worker specific actions ... fi
Optional. Encryption settings for the cluster.
Optional. Autoscaling config for the policy associated with the cluster. Cluster does not autoscale if this field is unset.
Optional. Security settings for the cluster.
Contains cluster daemon metrics, such as HDFS and YARN stats. **Beta Feature**: This report is available for testing purposes only. It may be changed before final release.
Used in:
The HDFS metrics.
The YARN metrics.
The cluster operation triggered by a workflow.
Used in:
Output only. The id of the cluster operation.
Output only. Error, if operation failed.
Output only. Indicates the operation is done.
Metadata describing the operation.
Output only. Name of the cluster for the operation.
Output only. Cluster UUID for the operation.
Output only. Current operation status.
Output only. The previous operation status.
Output only. The operation type.
Output only. Short description of operation.
Output only. Labels associated with the operation
Output only. Errors encountered during operation execution.
The status of the operation.
Used in:
Output only. A message containing the operation state.
Output only. A message containing the detailed operation state.
Output only. A message containing any operation metadata details.
Output only. The time this state was entered.
The operation state.
Used in:
Unused.
The operation has been created.
The operation is running.
The operation is done; either cancelled or completed.
A selector that chooses target cluster for jobs based on metadata.
Used in:
Optional. The zone where workflow process executes. This parameter does not affect the selection of the cluster. If unspecified, the zone of the first cluster matching the selector is used.
Required. The cluster labels. Cluster must have all labels to match.
The status of a cluster and its instances.
Used in:
Output only. The cluster's state.
Optional. Output only. Details of cluster's state.
Output only. Time when this state was entered.
Output only. Additional state information that includes status reported by the agent.
The cluster state.
Used in:
The cluster state is unknown.
The cluster is being created and set up. It is not ready for use.
The cluster is currently running and healthy. It is ready for use.
The cluster encountered an error. It is not ready for use.
The cluster is being deleted. It cannot be used.
The cluster is being updated. It continues to accept and process jobs.
The cluster substate.
Used in:
The cluster substate is unknown.
The cluster is known to be in an unhealthy state (for example, critical daemons are not running or HDFS capacity is exhausted). Applies to RUNNING state.
The agent-reported status is out of date (may occur if Cloud Dataproc loses communication with Agent). Applies to RUNNING state.
Cluster components that can be activated.
Used in:
Unspecified component.
The Anaconda python distribution.
The Hive Web HCatalog (the REST service for accessing HCatalog).
The Jupyter Notebook.
The Zeppelin notebook.
The location of diagnostic output.
Output only. The Cloud Storage URI of the diagnostic output. The output report is a plain text file with a summary of collected diagnostics.
Specifies the config of disk options for a group of VM instances.
Used in:
Optional. Type of the boot disk (default is "pd-standard"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard Disk Drive).
Optional. Size in GB of the boot disk (default is 500GB).
Optional. Number of attached SSDs, from 0 to 4 (default is 0). If SSDs are not attached, the boot disk is used to store runtime logs and [HDFS](https://hadoop.apache.org/docs/r1.2.1/hdfs_user_guide.html) data. If one or more SSDs are attached, this runtime bulk data is spread across them, and the boot disk contains only basic config and installed binaries.
Encryption settings for the cluster.
Used in:
Optional. The Cloud KMS key name to use for PD disk encryption for all instances in the cluster.
Common config settings for resources of Compute Engine cluster instances, applicable to all instances in the cluster.
Used in:
Optional. The zone where the Compute Engine cluster will be located. On a create request, it is required in the "global" region. If omitted in a non-global Cloud Dataproc region, the service will pick a zone in the corresponding Compute Engine region. On a get request, zone will always be present. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone]` * `projects/[project_id]/zones/[zone]` * `us-central1-f`
Optional. The Compute Engine network to be used for machine communications. Cannot be specified with subnetwork_uri. If neither `network_uri` nor `subnetwork_uri` is specified, the "default" network of the project is used, if it exists. Cannot be a "Custom Subnet Network" (see [Using Subnetworks](/compute/docs/subnetworks) for more information). A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/[project_id]/regions/global/default` * `projects/[project_id]/regions/global/default` * `default`
Optional. The Compute Engine subnetwork to be used for machine communications. Cannot be specified with network_uri. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/[project_id]/regions/us-east1/subnetworks/sub0` * `projects/[project_id]/regions/us-east1/subnetworks/sub0` * `sub0`
Optional. If true, all instances in the cluster will only have internal IP addresses. By default, clusters are not restricted to internal IP addresses, and will have ephemeral external IP addresses assigned to each instance. This `internal_ip_only` restriction can only be enabled for subnetwork enabled networks, and all off-cluster dependencies must be configured to be accessible without external IP addresses.
Optional. The service account of the instances. Defaults to the default Compute Engine service account. Custom service accounts need permissions equivalent to the following IAM roles: * roles/logging.logWriter * roles/storage.objectAdmin (see https://cloud.google.com/compute/docs/access/service-accounts#custom_service_accounts for more information). Example: `[account_id]@[project_id].iam.gserviceaccount.com`
Optional. The URIs of service account scopes to be included in Compute Engine instances. The following base set of scopes is always included: * https://www.googleapis.com/auth/cloud.useraccounts.readonly * https://www.googleapis.com/auth/devstorage.read_write * https://www.googleapis.com/auth/logging.write If no scopes are specified, the following defaults are also provided: * https://www.googleapis.com/auth/bigquery * https://www.googleapis.com/auth/bigtable.admin.table * https://www.googleapis.com/auth/bigtable.data * https://www.googleapis.com/auth/devstorage.full_control
The Compute Engine tags to add to all instances (see [Tagging instances](/compute/docs/label-or-tag-resources#tags)).
The Compute Engine metadata entries to add to all instances (see [Project and instance metadata](https://cloud.google.com/compute/docs/storing-retrieving-metadata#project_and_instance_metadata)).
A Cloud Dataproc job for running [Apache Hadoop MapReduce](https://hadoop.apache.org/docs/current/hadoop-mapreduce-client/hadoop-mapreduce-client-core/MapReduceTutorial.html) jobs on [Apache Hadoop YARN](https://hadoop.apache.org/docs/r2.7.1/hadoop-yarn/hadoop-yarn-site/YARN.html).
Used in:
,Required. Indicates the location of the driver's main class. Specify either the jar file that contains the main class or the main class name. To specify both, add the jar file to `jar_file_uris`, and then specify the main class name in this property.
The HCFS URI of the jar file containing the main class. Examples: 'gs://foo-bucket/analytics-binaries/extract-useful-metrics-mr.jar' 'hdfs:/tmp/test-samples/custom-wordcount.jar' 'file:///home/usr/lib/hadoop-mapreduce/hadoop-mapreduce-examples.jar'
The name of the driver's main class. The jar file containing the class must be in the default CLASSPATH or specified in `jar_file_uris`.
Optional. The arguments to pass to the driver. Do not include arguments, such as `-libjars` or `-Dfoo=bar`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
Optional. Jar file URIs to add to the CLASSPATHs of the Hadoop driver and tasks.
Optional. HCFS (Hadoop Compatible Filesystem) URIs of files to be copied to the working directory of Hadoop drivers and distributed tasks. Useful for naively parallel tasks.
Optional. HCFS URIs of archives to be extracted in the working directory of Hadoop drivers and tasks. Supported file types: .jar, .tar, .tar.gz, .tgz, or .zip.
Optional. A mapping of property names to values, used to configure Hadoop. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site and classes in user code.
Optional. The runtime log config for job execution.
A Cloud Dataproc job for running [Apache Hive](https://hive.apache.org/) queries on YARN.
Used in:
,Required. The sequence of Hive queries to execute, specified as either an HCFS file URI or a list of queries.
The HCFS URI of the script that contains Hive queries.
A list of queries.
Optional. Whether to continue executing queries if a query fails. The default value is `false`. Setting to `true` can be useful when executing independent parallel queries.
Optional. Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).
Optional. A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/hive/conf/hive-site.xml, and classes in user code.
Optional. HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
Configuration for the size bounds of an instance group, including its proportional size to other groups.
Used in:
Optional. Minimum number of instances for this group. Primary workers - Bounds: [2, max_instances]. Default: 2. Secondary workers - Bounds: [0, max_instances]. Default: 0.
Required. Maximum number of instances for this group. Required for primary workers. Note that by default, clusters will not use secondary workers. Required for secondary workers if the minimum secondary instances is set. Primary workers - Bounds: [min_instances, ). Secondary workers - Bounds: [min_instances, ). Default: 0.
Optional. Weight for the instance group, which is used to determine the fraction of total workers in the cluster from this instance group. For example, if primary workers have weight 2, and secondary workers have weight 1, the cluster will have approximately 2 primary workers for each secondary worker. The cluster may not reach the specified balance if constrained by min/max bounds or other autoscaling settings. For example, if `max_instances` for secondary workers is 0, then only primary workers will be added. The cluster can also be out of balance when created. If weight is not set on any instance group, the cluster will default to equal weight for all groups: the cluster will attempt to maintain an equal number of workers in each group within the configured size bounds for each group. If weight is set for one group only, the cluster will default to zero weight on the unset group. For example if weight is set only on primary workers, the cluster will use primary workers only and no secondary workers.
Optional. The config settings for Compute Engine resources in an instance group, such as a master or worker group.
Used in:
Optional. The number of VM instances in the instance group. For master instance groups, must be set to 1.
Output only. The list of instance names. Cloud Dataproc derives the names from `cluster_name`, `num_instances`, and the instance group.
Optional. The Compute Engine image resource used for cluster instances. It can be specified or may be inferred from `SoftwareConfig.image_version`.
Optional. The Compute Engine machine type used for cluster instances. A full URL, partial URI, or short name are valid. Examples: * `https://www.googleapis.com/compute/v1/projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2` * `projects/[project_id]/zones/us-east1-a/machineTypes/n1-standard-2` * `n1-standard-2` **Auto Zone Exception**: If you are using the Cloud Dataproc [Auto Zone Placement](/dataproc/docs/concepts/configuring-clusters/auto-zone#using_auto_zone_placement) feature, you must use the short name of the machine type resource, for example, `n1-standard-2`.
Optional. Disk option config settings.
Optional. Specifies that this instance group contains preemptible instances.
Output only. The config for Compute Engine Instance Group Manager that manages this group. This is only used for preemptible instance groups.
Optional. The Compute Engine accelerator configuration for these instances.
Optional. Specifies the minimum cpu platform for the Instance Group. See [Cloud Dataproc→Minimum CPU Platform] (/dataproc/docs/concepts/compute/dataproc-min-cpu).
A Cloud Dataproc job resource.
Used as response type in: JobController.CancelJob, JobController.GetJob, JobController.SubmitJob, JobController.UpdateJob
Used as field type in:
, ,Optional. The fully qualified reference to the job, which can be used to obtain the equivalent REST path of the job resource. If this property is not specified when a job is created, the server generates a <code>job_id</code>.
Required. Job information, including how, when, and where to run the job.
Required. The application/framework-specific portion of the job.
Job is a Hadoop job.
Job is a Spark job.
Job is a Pyspark job.
Job is a Hive job.
Job is a Pig job.
Job is a SparkSql job.
Output only. The job status. Additional application-specific status information may be contained in the <code>type_job</code> and <code>yarn_applications</code> fields.
Output only. The previous job status.
Output only. The collection of YARN applications spun up by this job. **Beta** Feature: This report is available for testing purposes only. It may be changed before final release.
Output only. A URI pointing to the location of the stdout of the job's driver program.
Output only. If present, the location of miscellaneous control files which may be used as part of job setup and handling. If not present, control files may be placed in the same location as `driver_output_uri`.
Optional. The labels to associate with this job. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a job.
Optional. Job scheduling configuration.
Output only. A UUID that uniquely identifies a job within the project over time. This is in contrast to a user-settable reference.job_id that may be reused over time.
Cloud Dataproc job config.
Used in:
Required. The name of the cluster where the job will be submitted.
Output only. A cluster UUID generated by the Cloud Dataproc service when the job is submitted.
Encapsulates the full scoping used to reference a job.
Used in:
Required. The ID of the Google Cloud Platform project that the job belongs to.
Optional. The job ID, which must be unique within the project. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), or hyphens (-). The maximum length is 100 characters. If not specified by the caller, the job ID will be provided by the server.
Job scheduling options.
Used in:
,Optional. Maximum number of times per hour a driver may be restarted as a result of driver terminating with non-zero code before job is reported failed. A job may be reported as thrashing if driver exits with non-zero code 4 times within 10 minute window. Maximum value is 10.
Cloud Dataproc job status.
Used in:
Output only. A state message specifying the overall job state.
Optional. Output only. Job state details, such as an error description if the state is <code>ERROR</code>.
Output only. The time when this state was entered.
Output only. Additional state information, which includes status reported by the agent.
The job state.
Used in:
The job state is unknown.
The job is pending; it has been submitted, but is not yet running.
Job has been received by the service and completed initial setup; it will soon be submitted to the cluster.
The job is running on the cluster.
A CancelJob request has been received, but is pending.
Transient in-flight resources have been canceled, and the request to cancel the running job has been issued to the cluster.
The job cancellation was successful.
The job has completed successfully.
The job has completed, but encountered an error.
Job attempt has failed. The detail field contains failure details for this attempt. Applies to restartable jobs only.
The job substate.
Used in:
The job substate is unknown.
The Job is submitted to the agent. Applies to RUNNING state.
The Job has been received and is awaiting execution (it may be waiting for a condition to be met). See the "details" field for the reason for the delay. Applies to RUNNING state.
The agent-reported status is out of date, which may be caused by a loss of communication between the agent and Cloud Dataproc. If the agent does not send a timely update, the job will fail. Applies to RUNNING state.
Specifies Kerberos related configuration.
Used in:
Optional. Flag to indicate whether to Kerberize the cluster.
Required. The Cloud Storage URI of a KMS encrypted file containing the root principal password.
Required. The uri of the KMS key used to encrypt various sensitive files.
Optional. The Cloud Storage URI of the keystore file used for SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
Optional. The Cloud Storage URI of the truststore file used for SSL encryption. If not provided, Dataproc will provide a self-signed certificate.
Optional. The Cloud Storage URI of a KMS encrypted file containing the password to the user provided keystore. For the self-signed certificate, this password is generated by Dataproc.
Optional. The Cloud Storage URI of a KMS encrypted file containing the password to the user provided key. For the self-signed certificate, this password is generated by Dataproc.
Optional. The Cloud Storage URI of a KMS encrypted file containing the password to the user provided truststore. For the self-signed certificate, this password is generated by Dataproc.
Optional. The remote realm the Dataproc on-cluster KDC will trust, should the user enable cross realm trust.
Optional. The KDC (IP or hostname) for the remote trusted realm in a cross realm trust relationship.
Optional. The admin server (IP or hostname) for the remote trusted realm in a cross realm trust relationship.
Optional. The Cloud Storage URI of a KMS encrypted file containing the shared password between the on-cluster Kerberos realm and the remote trusted realm, in a cross realm trust relationship.
Optional. The Cloud Storage URI of a KMS encrypted file containing the master key of the KDC database.
Optional. The lifetime of the ticket granting ticket, in hours. If not specified, or user specifies 0, then default value 10 will be used.
Optional. The name of the on-cluster Kerberos realm. If not specified, the uppercased domain of hostnames will be the realm.
A matcher that specifies categories of job states.
Used in:
Match all jobs, regardless of state.
Only match jobs in non-terminal states: PENDING, RUNNING, or CANCEL_PENDING.
Only match jobs in terminal states: CANCELLED, DONE, or ERROR.
The runtime logging config of the job.
Used in:
, , , ,The per-package log levels for the driver. This may include "root" package name to configure rootLogger. Examples: 'com.google = FATAL', 'root = INFO', 'org.apache = DEBUG'
The Log4j level for job execution. When running an [Apache Hive](http://hive.apache.org/) job, Cloud Dataproc configures the Hive client to an equivalent verbosity level.
Used in:
Level is unspecified. Use default level for log4j.
Use ALL level for log4j.
Use TRACE level for log4j.
Use DEBUG level for log4j.
Use INFO level for log4j.
Use WARN level for log4j.
Use ERROR level for log4j.
Use FATAL level for log4j.
Turn off log4j.
Cluster that is managed by the workflow.
Used in:
Required. The cluster name prefix. A unique cluster name will be formed by appending a random suffix. The name must contain only lower-case letters (a-z), numbers (0-9), and hyphens (-). Must begin with a letter. Cannot begin or end with hyphen. Must consist of between 2 and 35 characters.
Required. The cluster configuration.
Optional. The labels to associate with this cluster. Label keys must be between 1 and 63 characters long, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}_-]{0,62} Label values must be between 1 and 63 characters long, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63} No more than 32 labels can be associated with a given cluster.
Specifies the resources used to actively manage an instance group.
Used in:
Output only. The name of the Instance Template used for the Managed Instance Group.
Output only. The name of the Instance Group Manager for this group.
Specifies an executable to run on a fully configured node and a timeout period for executable completion.
Used in:
Required. Cloud Storage URI of executable file.
Optional. Amount of time executable has to complete. Default is 10 minutes. Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
A job executed by the workflow.
Used in:
Required. The step id. The id must be unique among all jobs within the template. The step id is used as prefix for job id, as job `goog-dataproc-workflow-step-id` label, and in [prerequisiteStepIds][google.cloud.dataproc.v1.OrderedJob.prerequisite_step_ids] field from other steps. The id must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). Cannot begin or end with underscore or hyphen. Must consist of between 3 and 50 characters.
Required. The job definition.
Job is a Hadoop job.
Job is a Spark job.
Job is a Pyspark job.
Job is a Hive job.
Job is a Pig job.
Job is a SparkSql job.
Optional. The labels to associate with this job. Label keys must be between 1 and 63 characters long, and must conform to the following regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}_-]{0,62} Label values must be between 1 and 63 characters long, and must conform to the following regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63} No more than 32 labels can be associated with a given job.
Optional. Job scheduling configuration.
Optional. The optional list of prerequisite job step_ids. If not specified, the job will start at the beginning of workflow.
Configuration for parameter validation.
Used in:
Required. The type of validation to be performed.
Validation based on regular expressions.
Validation based on a list of allowed values.
A Cloud Dataproc job for running [Apache Pig](https://pig.apache.org/) queries on YARN.
Used in:
,Required. The sequence of Pig queries to execute, specified as an HCFS file URI or a list of queries.
The HCFS URI of the script that contains the Pig queries.
A list of queries.
Optional. Whether to continue executing queries if a query fails. The default value is `false`. Setting to `true` can be useful when executing independent parallel queries.
Optional. Mapping of query variable names to values (equivalent to the Pig command: `name=[value]`).
Optional. A mapping of property names to values, used to configure Pig. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/hadoop/conf/*-site.xml, /etc/pig/conf/pig.properties, and classes in user code.
Optional. HCFS URIs of jar files to add to the CLASSPATH of the Pig Client and Hadoop MapReduce (MR) tasks. Can contain Pig UDFs.
Optional. The runtime log config for job execution.
A Cloud Dataproc job for running [Apache PySpark](https://spark.apache.org/docs/0.9.0/python-programming-guide.html) applications on YARN.
Used in:
,Required. The HCFS URI of the main Python file to use as the driver. Must be a .py file.
Optional. The arguments to pass to the driver. Do not include arguments, such as `--conf`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
Optional. HCFS file URIs of Python files to pass to the PySpark framework. Supported file types: .py, .egg, and .zip.
Optional. HCFS URIs of jar files to add to the CLASSPATHs of the Python driver and tasks.
Optional. HCFS URIs of files to be copied to the working directory of Python drivers and distributed tasks. Useful for naively parallel tasks.
Optional. HCFS URIs of archives to be extracted in the working directory of .jar, .tar, .tar.gz, .tgz, and .zip.
Optional. A mapping of property names to values, used to configure PySpark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.
Optional. The runtime log config for job execution.
A list of queries to run on a cluster.
Used in:
, ,Required. The queries to execute. You do not need to terminate a query with a semicolon. Multiple queries can be specified in one string by separating each with a semicolon. Here is an example of an Cloud Dataproc API snippet that uses a QueryList to specify a HiveJob: "hiveJob": { "queryList": { "queries": [ "query1", "query2", "query3;query4", ] } }
Validation based on regular expressions.
Used in:
Required. RE2 regular expressions used to validate the parameter's value. The value must match the regex in its entirety (substring matches are not sufficient).
Security related configuration, including Kerberos.
Used in:
Kerberos related configuration.
Specifies the selection and config of software inside the cluster.
Used in:
Optional. The version of software inside the cluster. It must be one of the supported [Cloud Dataproc Versions](/dataproc/docs/concepts/versioning/dataproc-versions#supported_cloud_dataproc_versions), such as "1.2" (including a subminor version, such as "1.2.29"), or the ["preview" version](/dataproc/docs/concepts/versioning/dataproc-versions#other_versions). If unspecified, it defaults to the latest Debian version.
Optional. The properties to set on daemon config files. Property keys are specified in `prefix:property` format, for example `core:hadoop.tmp.dir`. The following are supported prefixes and their mappings: * capacity-scheduler: `capacity-scheduler.xml` * core: `core-site.xml` * distcp: `distcp-default.xml` * hdfs: `hdfs-site.xml` * hive: `hive-site.xml` * mapred: `mapred-site.xml` * pig: `pig.properties` * spark: `spark-defaults.conf` * yarn: `yarn-site.xml` For more information, see [Cluster properties](/dataproc/docs/concepts/cluster-properties).
Optional. The set of components to activate on the cluster.
A Cloud Dataproc job for running [Apache Spark](http://spark.apache.org/) applications on YARN.
Used in:
,Required. The specification of the main method to call to drive the job. Specify either the jar file that contains the main class or the main class name. To pass both a main jar and a main class in that jar, add the jar to `CommonJob.jar_file_uris`, and then specify the main class name in `main_class`.
The HCFS URI of the jar file that contains the main class.
The name of the driver's main class. The jar file that contains the class must be in the default CLASSPATH or specified in `jar_file_uris`.
Optional. The arguments to pass to the driver. Do not include arguments, such as `--conf`, that can be set as job properties, since a collision may occur that causes an incorrect job submission.
Optional. HCFS URIs of jar files to add to the CLASSPATHs of the Spark driver and tasks.
Optional. HCFS URIs of files to be copied to the working directory of Spark drivers and distributed tasks. Useful for naively parallel tasks.
Optional. HCFS URIs of archives to be extracted in the working directory of Spark drivers and tasks. Supported file types: .jar, .tar, .tar.gz, .tgz, and .zip.
Optional. A mapping of property names to values, used to configure Spark. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in /etc/spark/conf/spark-defaults.conf and classes in user code.
Optional. The runtime log config for job execution.
A Cloud Dataproc job for running [Apache Spark SQL](http://spark.apache.org/sql/) queries.
Used in:
,Required. The sequence of Spark SQL queries to execute, specified as either an HCFS file URI or as a list of queries.
The HCFS URI of the script that contains SQL queries.
A list of queries.
Optional. Mapping of query variable names to values (equivalent to the Spark SQL command: SET `name="value";`).
Optional. A mapping of property names to values, used to configure Spark SQL's SparkConf. Properties that conflict with values set by the Cloud Dataproc API may be overwritten.
Optional. HCFS URIs of jar files to be added to the Spark CLASSPATH.
Optional. The runtime log config for job execution.
A configurable parameter that replaces one or more fields in the template. Parameterizable fields: - Labels - File uris - Job properties - Job arguments - Script variables - Main class (in HadoopJob and SparkJob) - Zone (in ClusterSelector)
Used in:
Required. Parameter name. The parameter name is used as the key, and paired with the parameter value, which are passed to the template when the template is instantiated. The name must contain only capital letters (A-Z), numbers (0-9), and underscores (_), and must not start with a number. The maximum length is 40 characters.
Required. Paths to all fields that the parameter replaces. A field is allowed to appear in at most one parameter's list of field paths. A field path is similar in syntax to a [google.protobuf.FieldMask][google.protobuf.FieldMask]. For example, a field path that references the zone field of a workflow template's cluster selector would be specified as `placement.clusterSelector.zone`. Also, field paths can reference fields using the following syntax: * Values in maps can be referenced by key: * labels['key'] * placement.clusterSelector.clusterLabels['key'] * placement.managedCluster.labels['key'] * placement.clusterSelector.clusterLabels['key'] * jobs['step-id'].labels['key'] * Jobs in the jobs list can be referenced by step-id: * jobs['step-id'].hadoopJob.mainJarFileUri * jobs['step-id'].hiveJob.queryFileUri * jobs['step-id'].pySparkJob.mainPythonFileUri * jobs['step-id'].hadoopJob.jarFileUris[0] * jobs['step-id'].hadoopJob.archiveUris[0] * jobs['step-id'].hadoopJob.fileUris[0] * jobs['step-id'].pySparkJob.pythonFileUris[0] * Items in repeated fields can be referenced by a zero-based index: * jobs['step-id'].sparkJob.args[0] * Other examples: * jobs['step-id'].hadoopJob.properties['key'] * jobs['step-id'].hadoopJob.args[0] * jobs['step-id'].hiveJob.scriptVariables['key'] * jobs['step-id'].hadoopJob.mainJarFileUri * placement.clusterSelector.zone It may not be possible to parameterize maps and repeated fields in their entirety since only individual map values and individual items in repeated fields can be referenced. For example, the following field paths are invalid: - placement.clusterSelector.clusterLabels - jobs['step-id'].sparkJob.args
Optional. Brief description of the parameter. Must not exceed 1024 characters.
Optional. Validation rules to be applied to this parameter's value.
Validation based on a list of allowed values.
Used in:
Required. List of allowed values for the parameter.
The workflow graph.
Used in:
Output only. The workflow nodes.
A Cloud Dataproc workflow template resource.
Output only. The resource name of the workflow template as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
Output only. The version of template at the time of workflow instantiation.
Output only. The create cluster operation metadata.
Output only. The workflow graph.
Output only. The delete cluster operation metadata.
Output only. The workflow state.
Output only. The name of the target cluster.
Map from parameter names to values that were used for those parameters.
Output only. Workflow start time.
Output only. Workflow end time.
Output only. The UUID of target cluster.
The operation state.
Used in:
Unused.
The operation has been created.
The operation is running.
The operation is done; either cancelled or completed.
The workflow node.
Used in:
Output only. The name of the node.
Output only. Node's prerequisite nodes.
Output only. The job id; populated after the node enters RUNNING state.
Output only. The node state.
Output only. The error detail.
The workflow node state.
Used in:
State is unspecified.
The node is awaiting prerequisite node to finish.
The node is runnable but not running.
The node is running.
The node completed successfully.
The node failed. A node can be marked FAILED because its ancestor or peer failed.
A Cloud Dataproc workflow template resource.
Used as response type in: WorkflowTemplateService.CreateWorkflowTemplate, WorkflowTemplateService.GetWorkflowTemplate, WorkflowTemplateService.UpdateWorkflowTemplate
Used as field type in:
, , ,Output only. The resource name of the workflow template, as described in https://cloud.google.com/apis/design/resource_names. * For `projects.regions.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/regions/{region}/workflowTemplates/{template_id}` * For `projects.locations.workflowTemplates`, the resource name of the template has the following format: `projects/{project_id}/locations/{location}/workflowTemplates/{template_id}`
Optional. Used to perform a consistent read-modify-write. This field should be left blank for a `CreateWorkflowTemplate` request. It is required for an `UpdateWorkflowTemplate` request, and must match the current server version. A typical update template flow would fetch the current template with a `GetWorkflowTemplate` request, which will return the current template with the `version` field filled in with the current server version. The user updates other fields in the template, then returns it as part of the `UpdateWorkflowTemplate` request.
Output only. The time template was created.
Output only. The time template was last updated.
Optional. The labels to associate with this template. These labels will be propagated to all jobs and clusters created by the workflow instance. Label **keys** must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). Label **values** may be empty, but, if present, must contain 1 to 63 characters, and must conform to [RFC 1035](https://www.ietf.org/rfc/rfc1035.txt). No more than 32 labels can be associated with a template.
Required. WorkflowTemplate scheduling information.
Required. The Directed Acyclic Graph of Jobs to submit.
Optional. emplate parameters whose values are substituted into the template. Values for parameters must be provided when the template is instantiated.
Specifies workflow execution target. Either `managed_cluster` or `cluster_selector` is required.
Used in:
Required. Specifies where workflow executes; either on a managed cluster or an existing cluster chosen by labels.
A cluster that is managed by the workflow.
Optional. A selector that chooses target cluster for jobs based on metadata. The selector is evaluated at the time each job is submitted.
A YARN application created by a job. Application information is a subset of <code>org.apache.hadoop.yarn.proto.YarnProtos.ApplicationReportProto</code>. **Beta Feature**: This report is available for testing purposes only. It may be changed before final release.
Used in:
Required. The application name.
Required. The application state.
Required. The numerical progress of the application, from 1 to 100.
Optional. The HTTP URL of the ApplicationMaster, HistoryServer, or TimelineServer that provides application-specific information. The URL uses the internal hostname, and requires a proxy server for resolution and, possibly, access.
The application state, corresponding to <code>YarnProtos.YarnApplicationStateProto</code>.
Used in:
Status is unspecified.
Status is NEW.
Status is NEW_SAVING.
Status is SUBMITTED.
Status is ACCEPTED.
Status is RUNNING.
Status is FINISHED.
Status is FAILED.
Status is KILLED.