79595095

Date: 2025-04-27 13:51:37
Score: 1
Natty:
Report link

I encountered a similar issue as yours. The root cause was that I was writing a batch job, but my StreamTableEnvironment was not configured for batch mode. After I changed it to StreamTableEnvironment tableEnv = StreamTableEnvironment.create(env, EnvironmentSettings.newInstance().inBatchMode().build());, the problem was resolved.

Reasons:
  • Has code block (-0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: crab