flink程序本地调试启动报错:No ExecutorFactory found to execute the application
报错场景:flink程序原先布置在服务器上,在本地调试时,执行到 env.excute() 时在本地启动程序报错:No ExecutorFactory found to execute the application。
解决办法:在pom文件中,添加flink客户端的依赖
<dependency>
<groupId>org.apache.flink</groupId>
<artifactId>flink-clients_2.11</artifactId> --2.11是flink依赖的scala的版本,依据自己项目的scala版本进行修改
<version>${flink.version}</version>
</dependency>
办法溯源:因为在本地调试时,本地程序相当于一个flink的客户端,所以需要添加flink客户端依赖,才能在本地正常启动程序。