What's the best practices when http calls from a DoFn, in a pipeline that will be running in Google Cloud Dataflow? (Java)
I mean, if in a pure Java w/o using Beam, I need to think about things like async calls, or at least multithreading. think about manage the thread pool, connection pool... With Dataflow, what would happen if I just have one thread make sync call in each ProcessElement? What's the best practices to do http calls in the DoFn?