tvalentyn commented on PR #34952:
URL: https://github.com/apache/beam/pull/34952#issuecomment-2931410822

   This could add additional logging that some users may find annoying, I'm 
fine to print one line, but maybe not all of the logs from apitools.
   
   > When using on GCP, Google_cloud_pipeline_components match job URL use re 
required !!
   
   Why not extract job id as  follows:
   
   ```
     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]

Reply via email to