当前位置:网站首页>[solve the exception] Flink uploads the jar package to the cluster environment, and the operation report does not serialize the exception
[solve the exception] Flink uploads the jar package to the cluster environment, and the operation report does not serialize the exception
2022-07-23 15:04:00 【No bug is the biggest bug】
This hole stuck me all day , Tried various methods and finally solved !!!
The reason is that there is a problem with the packaging method , Out-of-service maven The default packaging method ,pom The following code needs to be introduced in
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>com.MysqlToHiveSqlProp</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>边栏推荐
- 多项式承诺Polynomial commitment方案汇总
- 基于simulink的双闭环矢量控制的电压型PWM整流器仿真
- 智头条:智装论坛将于8月4日举行,2022全屋智能销售将破100亿
- 易基因|靶基因DNA甲基化测序(Target-BS)
- 基于nextcloud构建个人网盘
- [software test] redis abnormal test encountered in disk-to-disk work
- Argocd user management, RBAC control, script login, APP synchronization
- Supervisor installation and use
- 【机器学习基础】无监督学习(5)——生成模型
- Linux scheduled database backup script
猜你喜欢
随机推荐
day18
【机器学习基础】无监督学习(5)——生成模型
Building personal network disk based on nextcloud
Activity的启动流程
Live classroom system 02 build project environment
初识C语言函数
dataframe.groupby学习资料
MySQL 常用命令
Prometheus入门使用(三)
【解决异常】Flink上传jar包至集群环境运行报未序列化异常
Fastapi application joins Nacos
基于simulink的双闭环矢量控制的电压型PWM整流器仿真
338. Bit count
[untitled]
他山之石 | 阿里多模态知识图谱探索与实践
Opencv calculation outsourcing rectangle
Towhee weekly model
numpy和pytorch的版本对应关系
NVIDIA vid2vid paper reproduction
颜值爆表 Redis官方可视化工具来啦,针不戳



![[test platform development] 20. Complete the function of sending interface request on the edit page](/img/ab/fed56b5bec990a25303c327733a8e6.png)





