After reading several pages of the Apache Flink documentation ( official documentation , dataartisans ), as well as examples presented in the official repository, I continue to see examples in which they are used as a data source for streaming a file is already loaded, it always connects to the local host.
I am trying to use Apache Flink to load JSON files containing dynamic data. My intention is to try to set a URL where I can access the JSON file as an input source for Apache Flink, instead of downloading it to another system and processing the downloaded file using Apache Flink.
Is it possible to establish this network connection with Apache Flink?
java json apache-flink flink-streaming
Alvaro gomez
source share