Yiorgos Panayiotakis
09/02/2024, 1:09 PM"Caused by: org.apache.flink.util.FlinkRuntimeException: Cannot have more than one execute() or executeAsync() call in a single environment"
How can I avoid this issue and deploy the application without having to create different apps for insert and update ?D. Draco O'Brien
09/02/2024, 2:17 PMD. Draco O'Brien
09/02/2024, 2:17 PMD. Draco O'Brien
09/02/2024, 2:18 PMD. Draco O'Brien
09/02/2024, 2:19 PMString sql = "INSERT INTO target_table SELECT ... FROM source_table WHERE ...;"; // combining insert and update logic
tableEnv.executeSql(sql);
D. Draco O'Brien
09/02/2024, 2:20 PMD. Draco O'Brien
09/02/2024, 2:20 PMYiorgos Panayiotakis
09/04/2024, 8:12 AMD. Draco O'Brien
09/04/2024, 8:14 AM