Apache Beam Pipelines on Cloud Dataflow
Pipeline authoring
Use this section when implementing Dataflow pipeline logic using Apache Beam.
Check if existing Google Dataflow Template exists
Google provides a variety of pre-built, open source Dataflow templates that can
be used for common scenarios. Before implementing a pipeline from scratch, you
MUST follow the steps below to check whether a Dataflow template for the
pipeline logic you need to implement already exists.
Create a new pipeline from scratch
Use this section when creating a new project for a Dataflow pipeline from
scratch.
- If the user doesn't say explicitly which language (Java, Python, Go) shall
be used to write the pipeline, you MUST confirm the language.
- Determine which version of Beam SDK should be used by searching for the most
recently released version of Apache Beam, unless the user already uses a
particular version.
- Action: Run a web search for the latest Apache Beam SDK release.
- YOU MUST use same version of Apache Beam consistently throughout the project
in Dockerfiles,
requirements.txt, and other similar files where versions
are specified.
Java projects using Gradle
Use this section when configuring a Dataflow Java pipeline project using gradle.
- Shadow Jars (Fat Jars): Do NOT propose to use the Shadow plugin
(
com.github.johnrengelman.shadow) unless the user explicitly requests a
Fat Jar.
- Passing command-line parameters: Use the
application plugin for
passing command-line parameters.
- SLF4J Logging Dependency Alignment:
- Verify the
slf4j-api version pulled transitively by Apache Beam.
- You MUST configure the application logging backend (
slf4j-simple,
logback-classic, etc.) to exactly match the major/minor version of the
resolved slf4j-api.
Packaging a pipeline as a Flex Template
Use this section to package pipeline code as a Flex template.
Flex Templates offer a hermetic and reproducible launch environment for a
pipeline. They are easy to launch with gcloud or with orchestrators like Cloud
Composer. You MUST package the pipeline as a Flex Template when creating new
Dataflow pipeline projects.
Follow the steps below:
- Provide Instructions: Provide instructions on rebuilding and running
Flex Templates to the user in walkthrough.
- Use Single Docker Image for Python pipelines: For Python Flex Templates,
it is better to use a single image for the template launcher image and for
the worker runtime environment (
--sdk_container_image). Does the Python
pipeline require extra dependencies (e.g., using --requirements_file,
--setup_file, or --extra_package)? If so, YOU MUST recommend the
Single Docker Image Configuration for the Flex Template. See
python_flex_template_reference.md for details.
- Prefer Cloud Build over Local Docker:
- Do NOT assume local Docker availability on the workspace machine.
- Action: Suggest and provide
cloudbuild.yaml out-of-the-box for
building and pushing images unless local setup is explicitly requested.
- When building images with Cloud Build in the background you MUST provide
the link where the user can monitor the long-running operation.
- Providing SSL certificates and Secrets to Workers:
- If certificates or keys are stored in Secret Manager, NEVER bake
them into the Docker image layers. Instead, retrieve them dynamically at
runtime inside the Apache Beam
DoFn.setup() lifecycle using the Secret
Manager client library (writing them to ephemeral worker disk like
/tmp only if physical file paths are strictly required). Ensure the
Dataflow Worker Service Account has the
roles/secretmanager.secretAccessor role.
Configuring Google-provided templates
Use this section when the user has selected a Google-provided template (Classic
or Flex) and you need to configure it.
Step 1: Get template metadata
- Identify template type:
- Classic: Metadata files are in
gs://dataflow-templates and end
with _metadata (e.g.,
gs://dataflow-templates/latest/Word_Count_metadata).
- Flex: Metadata are embedded in the template spec file under
gs://dataflow-templates/latest/flex (e.g.
gs://dataflow-templates/latest/flex/Cloud_Datastream_to_BigQuery).
- Read the corresponding template metadata file to identify required
parameters.
- Note:
- Make sure to run a recursive search over the bucket if needed to
locate the metadata.
- If the template parameters include UDF-related fields (e.g.,
javascriptTextTransformGcsPath,
javascriptTextTransformFunctionName), refer to the
UDF guide to write and configure the UDF.
- Parameter-Based SSL / Secret Staging: If the Google-provided
template requires local SSL certificates or Secret Manager secrets,
pass comma-separated GCS paths via the
extraFilesToStage
parameter. The runner will drop them into /extra_files on worker
VMs. Refer to the SSL certificates guide for local
referencing syntax (/extra_files/...).
Step 2: Get network configuration
- Action: Run
gcloud commands to list networks and subnetworks.
- Confirm the network and subnetwork to use with the user.
Step 3: Identify required parameters and prepare resources
- Extract required parameters from the template metadata.
[!IMPORTANT]
Strict parameter validation: Any parameter in the metadata JSON
that does NOT explicitly have "isOptional": true is **strictly
required** by the Dataflow API.
This applies even if the description suggests it has a default value
(e.g., csvFormat or badRecordsOutputTable in some templates).
You must identify and supply all of them.
- Identify which parameters are provided by the user and which need to be
resolved or created by you.
- Action: Present these parameters to the user using Markdown
Key-Value (bullet points) for clarity and confirmation.
- Schema Handling: If a schema JSON parameter (like
schemaJSONPath
or JSONPath) is required:
- Action: Ask the user to provide the GCS path to an existing
schema file or the JSON content.
- If the user does not have a schema file, ask them to provide the
field names and their types. Construct the schema JSON locally and
present it to the user for validation.
- Once confirmed by the user, write the schema JSON file locally and
upload it to a GCS staging location, then supply this path to the
parameter.
- Pre-create Target Sink (Best Practice): To ensure stability and
avoid runtime creation schema mismatches:
- Action: Clarify with the user whether the target sink (e.g.,
BigQuery table, Spanner database/table) already exists. If the user
confirms it exists, proceed to the remaining steps as-is.
- If it does not exist, ask for permission to create it. If permitted,
create it yourself. Otherwise, provide the exact creation commands
to the user.
- If the sink is BigQuery, refer to
Destination-specific prerequisites for crucial table
and error table setup.
- Include additional parameters such as service accounts, network details,
and other pipeline options.
Destination-specific prerequisites
Different templates might require specific resources to be prepared in the
target sink before execution. Follow the instructions for your target sink
below.
BigQuery
When running templates that write to BigQuery, you MUST ensure the following
resources are prepared to prevent job failures:
- Pre-create Target Table: Create the target BigQuery table (e.g., using
bq mk) before launching the job. Ensure the schema matches the template's
expectations.
- Pre-create Error/Bad Records Table: Many templates that write to
BigQuery have a parameter for redirecting failed records (e.g.,
badRecordsOutputTable or outputDeadletterTable). Some templates attempt
to auto-create this table. However, pre-creating it is a best practice. This
ensures correct schema and permissions.
- How to Determine the Error Schema: Trace the schema definition in
the public DataflowTemplates GitHub repository:
- Locate the source code or README for the template you are using
(e.g., in
v1/ or v2/ directories).
- Identify the parameter name used for the error table (e.g.,
badRecordsOutputTable or outputDeadletterTable).
- Search the source code to see how the schema is defined or loaded
for that parameter:
- Example (Code Reference): In
PubSubToBigQuery.java, the
schema is set using
ResourceUtils.getDeadletterTableSchemaJson(). Tracing
ResourceUtils.java shows it loads the schema from
streaming_source_deadletter_table_schema.json on GitHub.
- Example (Documentation Reference): For simpler templates,
the schema might be listed in the official documentation, such
as the
RawContent/ErrorMsg schema shown in the
CSV to BigQuery DevSite Doc.
Configuring Custom Pipelines (Dataflow Runner)
Use this section when preparing to run a custom Apache Beam pipeline on
Dataflow.
When launching Python Pipelines without a Flex Template with
DataflowRunner, you MUST scan the pipeline project directory for the
following files:
requirements.txt:
- If found, you MUST include
--requirements_file pipeline option.
setup.py:
- If found, you MUST include
--setup_file pipeline option. This is
critical if the pipeline uses local modules or packages.
When launching Python Pipelines with a Flex Template, if the Flex Template
image is also the SDK Container image (Single Docker Image Configuration),
then you MUST supply the image in the sdk_container_image parameter.
Lookup environment resources instead of using placeholder values
- Avoid using generic placeholders (e.g.,
your-gcp-project-id) for GCP
resources when drafting run scripts or configs. Action: If values are
unknown, proactively run commands like gcloud config get-value project to
find active resources to pre-fill scripts for the user. Confirm the values
with the user before proceeding.
Job Execution
Use this section when configuration is complete and you are ready to launch any
Dataflow job (Google-provided template, Custom Flex template, or standalone
pipeline).
Universal Execution Workflow
- Construct Launch Command: Draft the full launch command based on the
pipeline type (e.g.,
gcloud dataflow flex-template run or python main.py --runner=DataflowRunner). Ensure workers default to private IP
configuration unless specified otherwise, and verify target project
permissions.
- Mandatory Pre-Launch Confirmation: Present the entire drafted command
to the user at once. Explain the purpose of all parameters (including
experimental flags) and allow the user to review and correct the command as
a batch instead of confirming piecemeal. Do NOT proceed with execution
until explicitly approved.
- Trigger Job: Once approved, execute the command and note the resulting
Job ID (displaying it to the user).
- Display Console URL: Construct and present the direct Cloud Console
monitoring URL:
https://console.cloud.google.com/dataflow/jobs//?project=
Job Monitoring
Use this section to monitor the progress of a running Dataflow job.
- Check the status of the triggered Dataflow job using the job ID.
- Run the check every 30 seconds for the first 2 minutes, then check every 3
minutes, unless specified otherwise by the user.
- Note: Do NOT perform data check queries on the sink until the job has
reached a stable
RUNNING or DONE state.
Diagnostics & Troubleshooting
[!IMPORTANT] YOU MUST use this section when the user asks about performance of
their Dataflow pipelines. This can be used to debug issues like pipeline
slowness, pipeline failures, etc.
Task Execution Workflow
Understand User Request: Extract Job ID, Project ID, Transform Name
(optional), and Time Window.
Transform Name Mapping: If the user requires transform-based debugging,
map user-provided Transform Names to actual Dataflow stage or ptransform
and apply to filters while querying:
This mapping can be extracted from gcloud dataflow jobs describe JOB_ID --full --format="json(pipelineDescription.executionPipelineStage)".
- Extract the targets:
- Get stage_id:
name property at the parent stage level. This
matches "F[digit]" (e.g. "F6").
- Get ptransform: inside the
componentTransform array, read
precisely from userName or originalTransform (e.g.
"RateLimitAndLog/ParMultiDo(RateLimitAndLog)"). and use it as
ptransform.
- Apply the filters strictly following mapping mechanics:
- For Cloud Logging queries: Apply extracted ptransform name to
filter
resource.labels.step_id="[Extracted ptransform name]".
- For Monitoring queries: Use the stage_id/ptransform filters
based on filters supported by metric:
metric.labels.ptransform="[Extracted ptransform name]" or
metric.labels.stage="[Extracted stage_id]".
Query Telemetry:
- Use Dataflow REST API to get High level Job Messages/Events that
happened in the job.
- Refer to dataflow_diagnostics_reference.md for
key metrics and logging query patterns based on Job Type.
- Use Monitoring REST API to fetch metrics.
- Use GCloud Logging command to fetch logs.
- Use Dataflow REST API to fetch current snapshot metrics when historical
time-series are not needed.
Analysis:
- For Streaming Jobs
- Overall Job Health: YOU MUST refer to
streaming_job_health to analyze
overall streaming job health.
- Analyze Bottlenecks and Parallelism. YOU MUST refer to
bottlenecks_and_parallelism_context and
interpret the bottlenecks and parallelism metrics in that context.
- Analyze Autoscaling Behavior. YOU MUST refer to
streaming_horizontal_autoscaling_analysis.md
- For Batch Jobs
- Correlate metrics spikes/drops with log errors.
- Identify Issues.
Output: Provide a synthesized diagnosis containing symptoms, root
causes, and target code links (using file:///... format). Strictly follow
the response structure appropriate for the job type:
For Streaming Jobs:
- Overall Job State: State categorization (Healthy, Mostly Healthy,
Not Healthy) per
streaming_job_health.
- High-level Job Events: Notable control plane events, errors, or
stage failures parsed from job messages.
- Data Freshness: Current data delay utilizing
job/data_watermark_age / job/per_stage_data_watermark_age and system
lag.
- Throughput: Processing rate trends utilizing
job/elements_produced_count / job/estimated_bytes_produced_count.
- Backlog: Input backlog (if source stage) or inter-stage backlog
using
job/estimated_backlog_processing_time / job/backlog_bytes.
- Bottlenecks & Parallelism: Queue delay diagnostics using
job/is_bottleneck (interpreting likely_cause / bottleneck_kind)
and key metrics job/backlogged_keys /
job/processing_parallelism_keys interpreted in the context of
bottlenecks_and_parallelism_context.
- Autoscaling Analysis: Scaling trends using
job/horizontal_worker_scaling (and label rationale), clamp limits
(job/max_worker_instances_limit / job/min_worker_instances_limit),
and utilization hints in the context of
streaming_horizontal_autoscaling_analysis.
- Recommendations: Direct remediation plans (in-flight updates,
client-side configurations, or code corrections linked via absolute
file:/// URIs).
For Batch Jobs:
- High-level Job Events: Notable control plane events, errors, or
stage failures parsed from job messages.
- Throughput: Processing rate trends utilizing
job/elements_produced_count (primary performance indicator).
- Recommendations: Direct remediation plans to future runs
(client-side configurations, or code corrections linked via absolute
file:/// URIs).
1---2name: gcp-dataflow3description: Guides writing, packaging, executing, and troubleshooting Apache Beam pipelines on Dataflow. Use when creating new pipelines, configuring Flex Templates, or analyzing performance of Dataflow jobs. Capabilities include Java/Python/Go setup, Cloud Build integration, and deep diagnostic analysis of job health and autoscaling. Use when: - Creating an Apache Beam Dataflow pipeline. - Creating a Google Dataflow Flex Template. - Using an existing Google Dataflow Template. - Debugging Dataflow pipeline - Troubleshooting Dataflow pipeline - Analyzing Performance of Dataflow pipeline. Key capabilities: Java/Python/Go project setup, Flex Templates (with Cloud Build), and diagnostics for streaming job health, bottlenecks, and autoscaling. Do NOT use for: - General GCP resource management unrelated to Dataflow. - Issues with other GCP services (e.g., GCE, GCS, BigQuery) unless directly impacting Dataflow pipeline execution. - Pipeline technologies other than Apache Beam on Dataflow.4license: Apache-2.05---67# Apache Beam Pipelines on Cloud Dataflow89## Pipeline authoring1011Use this section when implementing Dataflow pipeline logic using Apache Beam.1213### Check if existing Google Dataflow Template exists1415Google provides a variety of pre-built, open source Dataflow templates that can16be used for common scenarios. Before implementing a pipeline from scratch, you17MUST follow the steps below to check whether a Dataflow template for the18pipeline logic you need to implement already exists.1920- **Step 1: Check for a matching Google Dataflow Template**2122 - Identify the **source** and **sink** (e.g., GCS to BigQuery) from the23 user's request. *Note*: You *MUST NOT* proceed until the source and sink24 are clearly identified.25 - **Action**: List templates in the public `dataflow-templates` bucket:26 * For Classic templates, check `gs://dataflow-templates/latest`.27 * For Flex templates, check `gs://dataflow-templates/latest/flex`. Use28 `gcloud storage ls` to list the contents.29 - Match templates by name or description to the source and sink.30 - If no matching template is found, go to **Create a new pipeline from31 scratch**.3233- **Step 2: Confirm template selection**3435 - Present the matched template(s) to the user with a brief explanation of36 why they match, and make a note of whether it is a Classic or Flex37 template.38 - **Action**: Ask the user for explicit confirmation to proceed with this39 template.40 - If the user rejects or prefers a custom solution, proceed to **Create a41 new pipeline from scratch**.4243### Create a new pipeline from scratch4445Use this section when creating a new project for a Dataflow pipeline from46scratch.4748- If the user doesn't say explicitly which language (Java, Python, Go) shall49 be used to write the pipeline, you MUST confirm the language.50- Determine which version of Beam SDK should be used by searching for the most51 recently released version of Apache Beam, unless the user already uses a52 particular version.53 - **Action**: Run a web search for the latest Apache Beam SDK release.54- YOU MUST use same version of Apache Beam consistently throughout the project55 in Dockerfiles, `requirements.txt`, and other similar files where versions56 are specified.5758### Java projects using Gradle5960Use this section when configuring a Dataflow Java pipeline project using gradle.6162- **Shadow Jars (Fat Jars)**: Do NOT propose to use the Shadow plugin63 (`com.github.johnrengelman.shadow`) unless the user explicitly requests a64 Fat Jar.65- **Passing command-line parameters**: Use the `application` plugin for66 passing command-line parameters.67- **SLF4J Logging Dependency Alignment**:68 - Verify the `slf4j-api` version pulled transitively by Apache Beam.69 - You MUST configure the application logging backend (`slf4j-simple`,70 `logback-classic`, etc.) to exactly match the major/minor version of the71 resolved `slf4j-api`.7273### Packaging a pipeline as a Flex Template7475Use this section to package pipeline code as a Flex template.7677Flex Templates offer a hermetic and reproducible launch environment for a78pipeline. They are easy to launch with `gcloud` or with orchestrators like Cloud79Composer. You **MUST** package the pipeline as a Flex Template when creating new80Dataflow pipeline projects.8182Follow the steps below:8384- **Provide Instructions**: Provide instructions on rebuilding and running85 Flex Templates to the user in walkthrough.86- **Use Single Docker Image for Python pipelines**: For Python Flex Templates,87 it is better to use a single image for the template launcher image and for88 the worker runtime environment (`--sdk_container_image`). Does the Python89 pipeline require extra dependencies (e.g., using `--requirements_file`,90 `--setup_file`, or `--extra_package`)? If so, **YOU MUST recommend the**91 **Single Docker Image Configuration** for the Flex Template. See92 [python_flex_template_reference.md][py-flex-ref] for details.93- **Prefer Cloud Build over Local Docker**:94 - Do NOT assume local Docker availability on the workspace machine.95 - **Action**: Suggest and provide `cloudbuild.yaml` out-of-the-box for96 building and pushing images unless local setup is explicitly requested.97 - When building images with Cloud Build in the background you MUST provide98 the link where the user can monitor the long-running operation.99- **Providing SSL certificates and Secrets to Workers**:100 - If certificates or keys are stored in Secret Manager, **NEVER** bake101 them into the Docker image layers. Instead, retrieve them dynamically at102 runtime inside the Apache Beam `DoFn.setup()` lifecycle using the Secret103 Manager client library (writing them to ephemeral worker disk like104 `/tmp` only if physical file paths are strictly required). Ensure the105 Dataflow Worker Service Account has the106 `roles/secretmanager.secretAccessor` role.107108## Configuring Google-provided templates109110Use this section when the user has selected a Google-provided template (Classic111or Flex) and you need to configure it.112113- **Step 1: Get template metadata**114115 - Identify template type:116 * **Classic**: Metadata files are in `gs://dataflow-templates` and end117 with `_metadata` (e.g.,118 `gs://dataflow-templates/latest/Word_Count_metadata`).119 * **Flex**: Metadata are embedded in the template spec file under120 `gs://dataflow-templates/latest/flex` (e.g.121 `gs://dataflow-templates/latest/flex/Cloud_Datastream_to_BigQuery`).122 - Read the corresponding template metadata file to identify required123 parameters.124 - **Note**:125 * Make sure to run a recursive search over the bucket if needed to126 locate the metadata.127 * If the template parameters include UDF-related fields (e.g.,128 `javascriptTextTransformGcsPath`,129 `javascriptTextTransformFunctionName`), refer to the130 [UDF guide][udf-guide] to write and configure the UDF.131 * **Parameter-Based SSL / Secret Staging**: If the Google-provided132 template requires local SSL certificates or Secret Manager secrets,133 pass comma-separated GCS paths via the `extraFilesToStage`134 parameter. The runner will drop them into `/extra_files` on worker135 VMs. Refer to the [SSL certificates guide][ssl-cert-guide] for local136 referencing syntax (`/extra_files/...`).137138- **Step 2: Get network configuration**139140 - **Action**: Run `gcloud` commands to list networks and subnetworks.141 - Confirm the network and subnetwork to use with the user.142143- **Step 3: Identify required parameters and prepare resources**144145 - Extract required parameters from the template metadata.146 - > [!IMPORTANT]147 - > **Strict parameter validation**: Any parameter in the metadata JSON148 - > that does **NOT** explicitly have `"isOptional": true` is **strictly149 - > required** by the Dataflow API.150 - > This applies even if the description suggests it has a default value151 - > (e.g., `csvFormat` or `badRecordsOutputTable` in some templates).152 - > You must identify and supply all of them.153 - Identify which parameters are provided by the user and which need to be154 resolved or created by you.155 * **Action**: Present these parameters to the user using Markdown156 Key-Value (bullet points) for clarity and confirmation.157 - **Schema Handling**: If a schema JSON parameter (like `schemaJSONPath`158 or `JSONPath`) is required:159 * **Action**: Ask the user to provide the GCS path to an existing160 schema file or the JSON content.161 * If the user does not have a schema file, ask them to provide the162 field names and their types. Construct the schema JSON locally and163 present it to the user for validation.164 * Once confirmed by the user, write the schema JSON file locally and165 upload it to a GCS staging location, then supply this path to the166 parameter.167 - **Pre-create Target Sink (Best Practice)**: To ensure stability and168 avoid runtime creation schema mismatches:169 * **Action**: Clarify with the user whether the target sink (e.g.,170 BigQuery table, Spanner database/table) already exists. If the user171 confirms it exists, proceed to the remaining steps as-is.172 * If it does not exist, ask for permission to create it. If permitted,173 create it yourself. Otherwise, provide the exact creation commands174 to the user.175 * If the sink is BigQuery, refer to176 [Destination-specific prerequisites][dest-prereqs] for crucial table177 and error table setup.178 - Include additional parameters such as service accounts, network details,179 and other pipeline options.180 * **Specifying Options**: For Google-provided Flex Templates, refer to181 the [Specifying options for Flex Templates][flex-template-options]182 guide for how to pass parameters and additional experiments.183184### Destination-specific prerequisites185186Different templates might require specific resources to be prepared in the187target sink before execution. Follow the instructions for your target sink188below.189190#### BigQuery191192When running templates that write to BigQuery, you MUST ensure the following193resources are prepared to prevent job failures:194195- **Pre-create Target Table**: Create the target BigQuery table (e.g., using196 `bq mk`) before launching the job. Ensure the schema matches the template's197 expectations.198- **Pre-create Error/Bad Records Table**: Many templates that write to199 BigQuery have a parameter for redirecting failed records (e.g.,200 `badRecordsOutputTable` or `outputDeadletterTable`). Some templates attempt201 to auto-create this table. However, pre-creating it is a best practice. This202 ensures correct schema and permissions.203 * **How to Determine the Error Schema**: Trace the schema definition in204 the public [DataflowTemplates GitHub repository][df-templates-repo]:205 1. Locate the source code or README for the template you are using206 (e.g., in `v1/` or `v2/` directories).207 2. Identify the parameter name used for the error table (e.g.,208 `badRecordsOutputTable` or `outputDeadletterTable`).209 3. Search the source code to see how the schema is defined or loaded210 for that parameter:211 * **Example (Code Reference)**: In `PubSubToBigQuery.java`, the212 schema is set using213 `ResourceUtils.getDeadletterTableSchemaJson()`. Tracing214 `ResourceUtils.java` shows it loads the schema from215 [streaming_source_deadletter_table_schema.json on GitHub][deadletter-schema].216 * **Example (Documentation Reference)**: For simpler templates,217 the schema might be listed in the official documentation, such218 as the `RawContent`/`ErrorMsg` schema shown in the219 [CSV to BigQuery DevSite Doc][csv-bq-doc].220221## Configuring Custom Pipelines (Dataflow Runner)222223Use this section when preparing to run a custom Apache Beam pipeline on224Dataflow.225226- When launching Python Pipelines without a Flex Template with227 `DataflowRunner`, you MUST scan the pipeline project directory for the228 following files:229 - **`requirements.txt`**:230 - If found, you MUST include `--requirements_file` pipeline option.231 - **`setup.py`**:232 - If found, you MUST include `--setup_file` pipeline option. This is233 critical if the pipeline uses local modules or packages.234235- When launching Python Pipelines with a Flex Template, if the Flex Template236 image is also the SDK Container image (Single Docker Image Configuration),237 then you MUST supply the image in the `sdk_container_image` parameter.238239### Lookup environment resources instead of using placeholder values240241- Avoid using generic placeholders (e.g., `your-gcp-project-id`) for GCP242 resources when drafting run scripts or configs. **Action**: If values are243 unknown, proactively run commands like `gcloud config get-value project` to244 find active resources to pre-fill scripts for the user. Confirm the values245 with the user before proceeding.246247## Job Execution248249Use this section when configuration is complete and you are ready to launch any250Dataflow job (Google-provided template, Custom Flex template, or standalone251pipeline).252253### Universal Execution Workflow2542551. **Construct Launch Command**: Draft the full launch command based on the256 pipeline type (e.g., `gcloud dataflow flex-template run` or `python main.py257 --runner=DataflowRunner`). Ensure workers default to private IP258 configuration unless specified otherwise, and verify target project259 permissions.2602. **Mandatory Pre-Launch Confirmation**: Present the *entire* drafted command261 to the user at once. Explain the purpose of all parameters (including262 experimental flags) and allow the user to review and correct the command as263 a batch instead of confirming piecemeal. **Do NOT proceed** with execution264 until explicitly approved.2653. **Trigger Job**: Once approved, execute the command and note the resulting266 Job ID (displaying it to the user).2674. **Display Console URL**: Construct and present the direct Cloud Console268 monitoring URL:269 https://console.cloud.google.com/dataflow/jobs/<region>/<job_id>?project=<project_id>270271## Job Monitoring272273Use this section to monitor the progress of a running Dataflow job.274275- Check the status of the triggered Dataflow job using the job ID.276- Run the check every 30 seconds for the first 2 minutes, then check every 3277 minutes, unless specified otherwise by the user.278- **Note**: Do NOT perform data check queries on the sink until the job has279 reached a stable `RUNNING` or `DONE` state.280281## Diagnostics & Troubleshooting282283> [!IMPORTANT] YOU MUST use this section when the user asks about performance of284> their Dataflow pipelines. This can be used to debug issues like pipeline285> slowness, pipeline failures, etc.286287### Task Execution Workflow2882891. **Understand User Request**: Extract Job ID, Project ID, Transform Name290 (optional), and Time Window.2912. **Transform Name Mapping**: If the user requires transform-based debugging,292 map user-provided Transform Names to actual Dataflow `stage` or `ptransform`293 and apply to filters while querying:294295 This mapping can be extracted from `gcloud dataflow jobs describe JOB_ID296 --full --format="json(pipelineDescription.executionPipelineStage)"`.297298 1. **Extract the targets**:299 * Get stage_id: **`name`** property at the parent stage level. This300 matches `"F[digit]"` (e.g. `"F6"`).301 * Get ptransform: inside the `componentTransform` array, read302 precisely from **`userName`** or **`originalTransform`** (e.g.303 `"RateLimitAndLog/ParMultiDo(RateLimitAndLog)"`). and use it as304 **`ptransform`**.305 2. **Apply the filters strictly following mapping mechanics**:306 * **For Cloud Logging queries**: Apply extracted ptransform name to307 filter `resource.labels.step_id="[Extracted ptransform name]"`.308 * **For Monitoring queries**: Use the stage_id/ptransform filters309 based on filters supported by metric:310 `metric.labels.ptransform="[Extracted ptransform name]"` or311 `metric.labels.stage="[Extracted stage_id]"`.3123133. **Query Telemetry**:314315 * Use Dataflow REST API to get High level Job Messages/Events that316 happened in the job.317 * Refer to [dataflow_diagnostics_reference.md][diag-ref] for318 key metrics and logging query patterns based on Job Type.319 * Use Monitoring REST API to fetch metrics.320 * Use GCloud Logging command to fetch logs.321 * Use Dataflow REST API to fetch current snapshot metrics when historical322 time-series are not needed.3233244. **Analysis**:325326 * For Streaming Jobs327 * Overall Job Health: YOU MUST refer to328 [streaming_job_health](references/streaming_job_health.md) to analyze329 overall streaming job health.330 * Analyze Bottlenecks and Parallelism. YOU MUST refer to331 [bottlenecks_and_parallelism_context][bottlenecks-context] and332 interpret the bottlenecks and parallelism metrics in that context.333 * Analyze Autoscaling Behavior. YOU MUST refer to334 [streaming_horizontal_autoscaling_analysis.md][autoscaling-analysis-link]335 * For Batch Jobs336 * Correlate metrics spikes/drops with log errors.337 * Identify Issues.3383395. **Output**: Provide a synthesized diagnosis containing symptoms, root340 causes, and target code links (using `file:///...` format). Strictly follow341 the response structure appropriate for the job type:342343 **For Streaming Jobs:**344345 1. **Overall Job State**: State categorization (Healthy, Mostly Healthy,346 Not Healthy) per347 [streaming_job_health](references/streaming_job_health.md).348 2. **High-level Job Events**: Notable control plane events, errors, or349 stage failures parsed from job messages.350 3. **Data Freshness**: Current data delay utilizing351 `job/data_watermark_age` / `job/per_stage_data_watermark_age` and system352 lag.353 4. **Throughput**: Processing rate trends utilizing354 `job/elements_produced_count` / `job/estimated_bytes_produced_count`.355 5. **Backlog**: Input backlog (if source stage) or inter-stage backlog356 using `job/estimated_backlog_processing_time` / `job/backlog_bytes`.357 6. **Bottlenecks & Parallelism**: Queue delay diagnostics using358 `job/is_bottleneck` (interpreting `likely_cause` / `bottleneck_kind`)359 and key metrics `job/backlogged_keys` /360 `job/processing_parallelism_keys` interpreted in the context of361 [bottlenecks_and_parallelism_context][bottlenecks-context].362 7. **Autoscaling Analysis**: Scaling trends using363 `job/horizontal_worker_scaling` (and label `rationale`), clamp limits364 (`job/max_worker_instances_limit` / `job/min_worker_instances_limit`),365 and utilization hints in the context of366 [streaming_horizontal_autoscaling_analysis][autoscaling-analysis-link].367 8. **Recommendations**: Direct remediation plans (in-flight updates,368 client-side configurations, or code corrections linked via absolute369 `file:///` URIs).370371 **For Batch Jobs:**372373 1. **High-level Job Events**: Notable control plane events, errors, or374 stage failures parsed from job messages.375 2. **Throughput**: Processing rate trends utilizing376 `job/elements_produced_count` (primary performance indicator).377 3. **Recommendations**: Direct remediation plans to future runs378 (client-side configurations, or code corrections linked via absolute379 `file:///` URIs).380381[py-flex-ref]: references/python_flex_template_reference.md382[udf-guide]: https://docs.cloud.google.com/dataflow/docs/guides/templates/create-template-udf383[ssl-cert-guide]: https://docs.cloud.google.com/dataflow/docs/guides/templates/ssl-certificates384[dest-prereqs]: #destination-specific-prerequisites385[flex-template-options]: https://docs.cloud.google.com/dataflow/docs/guides/templates/run-flex-templates#specify-options386[df-templates-repo]: https://github.com/GoogleCloudPlatform/DataflowTemplates387[deadletter-schema]: https://github.com/GoogleCloudPlatform/DataflowTemplates/blob/main/v2/common/src/main/resources/schema/streaming_source_deadletter_table_schema.json388[csv-bq-doc]: https://cloud.google.com/dataflow/docs/guides/templates/provided/cloud-storage-csv-to-bigquery#GcsCSVToBigQueryBadRecordsSchema389[diag-ref]: references/dataflow_diagnostics_reference.md390[bottlenecks-context]: references/bottlenecks_and_parallelism_context.md391[autoscaling-analysis-link]: references/streaming_horizontal_autoscaling_analysis.md