tvalentyn commented on issue #24665:
URL: https://github.com/apache/beam/issues/24665#issuecomment-1359547905
> I want to run both of these steps in parallel.
Have you tried smth like:
```
...
_ = request | 'Fetch' >> beam.ParDo(FetchData())
_ = request | 'Download' >> beam.ParDo(DownloadData())
...
```
--
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]