Additional named step automatically added to the end of the pipeline
See original GitHub issueWhen withName("BigQuerySink").saveAsTypedBigQuery(...)
transform is used as the last step of the pipeline, an additional step is automatically added at the end of the it. Inspecting the job through Dataflow UI gives named steps that look something like this:
... --> BigQuerySink --> saveAsTypedBigQuery@{FileName.scala:82}1
I asked on gitter whether there is a way to name the last step as well and was asked to open an issue. I’m interested in doing so because every time the withName("BigQuerySink").saveAsTypedBigQuery(...)
line is moved, the name of the last step changes and I end up having trouble updating the job on the fly.
Issue Analytics
- State:
- Created 6 years ago
- Reactions:1
- Comments:8 (8 by maintainers)
Top Results From Across the Web
Stages in Azure Pipelines - Microsoft Learn
Add stages, dependencies, & conditions ... Every pipeline has at least one stage even if you do not explicitly define it.
Read more >Create and configure pipelines - ADM Help Centers
Add a pipeline in ALM Octane; Best practice: Link a pipeline to release and milestone ... Click the step's name to open the...
Read more >Pipeline Steps - Amazon SageMaker - AWS Documentation
Describes the step types in Amazon SageMaker Model Building Pipelines. ... Tuning steps were introduced in Amazon SageMaker Python SDK v2.48.0 and Amazon ......
Read more >How to Create a Multi-Stage Pipeline in Azure DevOps
While not critical to building a basic multi-stage pipeline in Azure DevOps, adding a build name, triggers, and variables add some helpful ...
Read more >Customize pipeline configuration - GitLab Docs
To add test coverage results to a merge request using the project's .gitlab-ci.yml file, provide a regular expression using the coverage keyword. Test...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I’m interested in looking into this.
@andrewsmartin I’ve opened a PR (also tested the fix by submitting a dataflow-runner job and it looks alright). Could you explain why another name is not automatically set here? Thanks.