控制台 Job execution failed 报错

Exception in thread “main” org.apache.flink.runtime.client.JobExecutionException: Job execution failed.

原因

原因:代码中使用了socket作为DataSource,如果socket监听的端口没有nc -lk 9999,就会报错

9999端口是代码中指定的

解决

在节点中开启端口即可

nc -lk 9999
...

你可能感兴趣的:(Problem,of,Exception,Flink)