I have a few libraries for doing IO, with large amounts of data, that use akka-http. Now. I have a Flink application, where I need to use those libraries.
How do I use a common actor-system across my flink app? I mean, AFAIU, flink apps will be distributed and the same pipeline could end up creating multiple actor systems on multiple JVMs. Also, the same JVM could be shared between multiple pipelines too, and in that case, having multiple actor systems would mean having a lot of threads.
Thanks,
Bhashit