liferoad commented on issue #35013:
URL: https://github.com/apache/beam/issues/35013#issuecomment-2931477309

   > have you considered the following to extract Dataflow Job ID:
   > 
   > ```
   >   from apache_beam.runners.dataflow.dataflow_runner import 
DataflowPipelineResult
   >   p = beam.Pipeline(argv=pipeline_args)
   >   p | <...>
   >   result = p.run()
   >   if isinstance(result, DataflowPipelineResult):
   >     print(result.job_id())
   >   result.wait_until_finish()
   > ```
   
   They cannot do that since this code is completely controlled by the end 
users.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@beam.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to