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?
Tony Piazza
04/10/2023, 1:06 AM
Also, the job consists of multiple INSERT statements inside a EXECUTE STATEMENT SET block.
g
Gil Kirkpatrick
05/10/2023, 5:31 PM
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().