当前位置:网站首页>[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>边栏推荐
- mysql唯一索引无重复值报错重复
- LeetCode-227-基本计算器||
- Is online handling of fund account opening safe? Who can answer it
- Regular verification of ID number
- 基于matlab的BOC调制信号捕获仿真
- 初识C语言函数
- Kettle implémente une connexion de base de données partagée et insère une instance de composant de mise à jour
- supervisord安装使用
- Activity的启动流程
- MariaDB 数据库升级版本
猜你喜欢
随机推荐
Argocd user management, RBAC control, script login, APP synchronization
上小学之前要学会的本领指引
【7.16】代码源 -【数组划分】【拆拆】【选数2】【最大公约数】
Use of KOA framework
581. Shortest unordered continuous subarray
百度工程师眼中的云原生可观测性追踪技术
Transferred from Yuxi information disclosure: products such as mRNA covid-19 vaccine and Jiuzhou horse tetanus immunoglobulin are expected to be on the market within this year.
如何实现多个传感器与西门子PLC之间485无线通讯?
如何实现多个传感器与西门子PLC之间485无线通讯?
Feignclient utilise un tutoriel détaillé (illustration)
Regular expression common syntax parsing
Activity的启动流程
【无标题】
Kettle實現共享數據庫連接及插入更新組件實例
Building personal network disk based on nextcloud
用FFT加速特殊矩阵的矩阵向量乘运算
多项式承诺Polynomial commitment方案汇总
[untitled]
The self-developed data products have been iterated for more than a year. Why not buy third-party commercial data platform products?
解决kotlin写Android项目编译报Execution failed for task ‘:app:kaptDebugKotlin‘.异常









