tvalentyn commented on issue #35013:
URL: https://github.com/apache/beam/issues/35013#issuecomment-2931417366
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()
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]