stages_execution_details
Creates, updates, deletes, gets or lists a stages_execution_details
resource.
Overview
Name | stages_execution_details |
Type | Resource |
Id | google.dataflow.stages_execution_details |
Fields
Name | Datatype | Description |
---|---|---|
workItems | array | Work items processed by this worker, sorted by time. |
workerName | string | Name of this worker |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_jobs_stages_get_execution_details | SELECT | jobId, location, projectId, stageId | Request detailed information about the execution status of a stage of the job. EXPERIMENTAL. This API is subject to change or removal without notice. |
SELECT
examples
Request detailed information about the execution status of a stage of the job. EXPERIMENTAL. This API is subject to change or removal without notice.
SELECT
workItems,
workerName
FROM google.dataflow.stages_execution_details
WHERE jobId = '{{ jobId }}'
AND location = '{{ location }}'
AND projectId = '{{ projectId }}'
AND stageId = '{{ stageId }}';