Skip to main content

jobs_execution_details

Creates, updates, deletes, gets or lists a jobs_execution_details resource.

Overview

Namejobs_execution_details
TypeResource
Idgoogle.dataflow.jobs_execution_details

Fields

NameDatatypeDescription
endTimestringEnd 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.
metricsarrayMetrics for this stage.
progressobjectInformation about the progress of some component of job execution.
stageIdstringID of this stage
startTimestringStart time of this stage.
statestringState of this stage.
stragglerSummaryobjectSummarized straggler identification details.

Methods

NameAccessible byRequired ParamsDescription
projects_locations_jobs_get_execution_detailsSELECTjobId, location, projectIdRequest 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 }}';