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

The following fields are returned by SELECT queries:

Successful response

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_jobs_stages_get_execution_detailsselectprojectId, location, jobId, stageIdpageSize, pageToken, startTime, endTimeRequest detailed information about the execution status of a stage 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.

NameDatatypeDescription
jobIdstring
locationstring
projectIdstring
stageIdstring
endTimestring (google-datetime)
pageSizeinteger (int32)
pageTokenstring
startTimestring (google-datetime)

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 projectId = '{{ projectId }}' -- required
AND location = '{{ location }}' -- required
AND jobId = '{{ jobId }}' -- required
AND stageId = '{{ stageId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND startTime = '{{ startTime }}'
AND endTime = '{{ endTime }}';