If I have a Flink job that is implemented in SQL o...
# random
t
If I have a Flink job that is implemented in SQL only, what is the recommended way to submit this job? SQL Gateway? Or something else?
Also, the job consists of multiple INSERT statements inside a EXECUTE STATEMENT SET block.
g
You can use the SQL Client CLI, the SQL Gateway, or the Java SQL API classes. We use the gateway for this sort of thing and and it works well. For the Java APi, see TableEnvironment execute_sql() and sql_query().
πŸ™Œ 1