Is it possible interact with a table using Flink SQL client CLI where which table was created within a Scala/Java program running in the cluster?
Asked
Active
Viewed 67 times
1 Answers
2
No this is not possible.
You could sink the DataStream of the Scala/Java program into a topic in a message queue or event log like Apache Kafka or Apache Pulsar and register the topic as a table in the CLI client.
Once the table is register, it can be queried with SQL in the client.

Fabian Hueske
- 18,707
- 2
- 44
- 49