记录和分析spark开发中遇到的问题
日志来源 | 获取方式 | 特点 |
---|---|---|
调度系统 | 直接查看调度产生日志 | 快速定位简单问题,日志最简洁,不能深度分析 |
Spark UI | 在Spark UI上通过应用ID查看 | 图形化的展示,便于分析问题和执行过程,日志较全 |
yarn log | yarn logs -applicationId app_ld > res.log | 日志文本,但日志最为详细,深度分析问题 |
日志丢
1. 日志丢失
1)driver所在节点丢失,缩容或spot回收。
driver、excutor都有可能内存不足;
聚合函数导致内存溢出
1. 错误描述
Container exited with a non-zero exit code 134. Error file: prelaunch.err.
Last 4096 bytes of prelaunch.err
2. 函数
collect_set 、 collect_list
3. 原因
某个key值(null, unknown, 空串)过多, 被聚合的value值过多, 导致范围(数组超范围)超限;
4. 解决方法
1) 调大内存
2) 找出超限的key值过滤掉;
广播join导致内存溢出
diagnostics: Application application_id failed 2 times due to AM Container for appattempt_id exited with exitCode: -104
Container is running beyond physical memory limits. Current usage: 2.4 GB of 2.4 GB physical memory used; 4.4 GB of 11.9 GB virtual memory used. Killing container.
容器内存不足
1. 错误描述
Job aborted due to stage failure: Task 2 in stage 26.0 failed 4 times, most recent failure: Lost task 2.3 in stage 26.0 (TID 3253, ip-10-20-68-111.eu-west-1.compute.internal, executor 43): ExecutorLostFailure (executor 43 exited caused by one of the running tasks) Reason: Container from a bad node: container_e03_1634810603944_186010_01_000121 on host: ip-10-20-68-111.eu-west-1.compute.internal. Exit status: 137. Diagnostics: [2022-05-27 01:49:51.535]Container killed on request. Exit code is 137
2. 解决方法
解决 Amazon EMR 上 Spark 中的“Container killed on request.Exit code is 137”
AWS EMR 上 Spark 任务 Container killed Exit code 137 错误
1 driver内存溢出
1)错误提示
java.lang.OutOfMemoryError: GC overhead limit exceeded
-XX:OnOutOfMemoryError="kill -9 %p"
Executing /bin/sh -c "kill -9 29082"...
java.lang.OutOfMemoryError: Java heap space
-XX:OnOutOfMemoryError="kill -9 %p
Executing /bin/sh -c "kill -9 23463
2)可能原因
问题原因 | 解决方案 |
---|---|
广播了较大的表 | a. 增加内存; b. 取消要广播的表 |
数据源分区过多 | a. 增加内存 b. 缩减上游分区 |
collect到driver端的数据过多 | a. 增加内存 b. 减小结果集 |
-
1 spark-submit 参数单引号转义
1) 调用 spark-submit "dt=\\\`date\\\`"
2) client模式被传输driver端需一次: dt=\`date\`
3) cluster模式被传输diver端需两次: dt=`date`
可能原因:
1)关联时出现了热键(null值、异常值);
2)coalesce缩减分区,导致数据倾斜;
1 源表主键分布
直接分析源表,数据不会暴增,查询迅速
2 关联统计主键分布
已经发生倾斜,查询速度慢
1 过滤掉无效和异常主键
1)id = '异常主键'
2) id is null
3) id = ''
1)增加并行度
2)增加内存
3)溢写到磁盘
中文描述 | 错误代码 | 解决方法 |
---|---|---|
不能读表 | Error in query: java.lang.IllegalArgumentException: Can not create a Path from an empty string; |
1 在hive上重新创建视图 |
不能直接读取文件 | catalyst.analysis.UnresolvedException: Invalid call to dataType on unresolved object, tree | 1 读取了不存在的列 |
删除其他分区数据 | 动态分区 OverWrite 问题 | Apache Spark 动态分区 OverWrite 问题 – 过往记忆 |
不能读写同一个表 | Error in query: Cannot overwrite a path that is also being read from. |
-- 不使用hive元数据 set spark.sql.hive.convertMetastoreParquet=false; set spark.sql.hive.convertMetastoreOrc=false; |
设定参数没有生效 | 1. spark的environment中确认 2. 是否又被覆盖了(中间组件导致的,像kyuubi有自己的默认参数) |
-
序号 | 问题描述 |
---|---|
1 | select * from table_name where dt = '20220423' 过滤数据后写出到表, 如何控制写出的并行度, 又可以增大处理的并行度 |
2 | spark-sql 中如何处理异常 |
3 | 多表关联时,如何串行加载各表 |