当前位置:   article > 正文

Flink-No ExecutorFactory found to execute the application.

no executorfactory found to execute the application

在运行Flink基本的词频统计代码时遇到如下错误

解决方法:

缺少 flink-client jar
在pom.xml文件里引入即可

在<properties>标签下加入自己flink的版本(已配置完请忽略)

<properties>

        <!--Flink 版本-->

        <flink.version>1.13.0</flink.version>

</properties>

在<dependencies>标签下加入子标签<dependency>,并加入flink-clients

<dependencies>    
    <dependency>
        <groupId>org.apache.flink</groupId>
        <artifactId>flink-clients_2.11</artifactId>
        <version>${flink.version}</version>
    </dependency>
</dependencies>

之后刷新maven工程

重新运行词频统计代码就能出结果了

本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号