Skip to main content

stages_execution_details

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

Overview

Namestages_execution_details
TypeResource
Idgoogle.dataflow.stages_execution_details

Fields

NameDatatypeDescription
workItemsarrayWork items processed by this worker, sorted by time.
workerNamestringName of this worker

Methods

NameAccessible byRequired ParamsDescription
projects_locations_jobs_stages_get_execution_detailsSELECTjobId, location, projectId, stageIdRequest 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 }}';