0

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?

salc2
  • 577
  • 5
  • 14

1 Answers1

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