jobs_execution_details
Creates, updates, deletes, gets or lists a jobs_execution_details
resource.
Overview
Name | jobs_execution_details |
Type | Resource |
Id | google.dataflow.jobs_execution_details |
Fields
Name | Datatype | Description |
---|---|---|
endTime | string | End time of this stage. If the work item is completed, this is the actual end time of the stage. Otherwise, it is the predicted end time. |
metrics | array | Metrics for this stage. |
progress | object | Information about the progress of some component of job execution. |
stageId | string | ID of this stage |
startTime | string | Start time of this stage. |
state | string | State of this stage. |
stragglerSummary | object | Summarized straggler identification details. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
projects_locations_jobs_get_execution_details | SELECT | jobId, location, projectId | Request detailed information about the execution status of the job. EXPERIMENTAL. This API is subject to change or removal without notice. |
SELECT
examples
Request detailed information about the execution status of the job. EXPERIMENTAL. This API is subject to change or removal without notice.
SELECT
endTime,
metrics,
progress,
stageId,
startTime,
state,
stragglerSummary
FROM google.dataflow.jobs_execution_details
WHERE jobId = '{{ jobId }}'
AND location = '{{ location }}'
AND projectId = '{{ projectId }}';