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
The following fields are returned by SELECT
queries:
- projects_locations_jobs_get_execution_details
Successful response
Name | Datatype | Description |
---|---|---|
endTime | string (google-datetime) | 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 | Progress for this stage. Only applicable to Batch jobs. (id: ProgressTimeseries) |
stageId | string | ID of this stage |
startTime | string (google-datetime) | Start time of this stage. |
state | string | State of this stage. |
stragglerSummary | object | Straggler summary for this stage. (id: StragglerSummary) |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
projects_locations_jobs_get_execution_details | select | projectId , location , jobId | pageSize , pageToken | Request detailed information about the execution status of the job. EXPERIMENTAL. This API is subject to change or removal without notice. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
jobId | string | |
location | string | |
projectId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- projects_locations_jobs_get_execution_details
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 projectId = '{{ projectId }}' -- required
AND location = '{{ location }}' -- required
AND jobId = '{{ jobId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';