当前位置:网站首页>Yan required executor memory is above the max threshold (8192mb) of this cluster!
Yan required executor memory is above the max threshold (8192mb) of this cluster!
2022-07-25 15:14:00 【The south wind knows what I mean】
Problem description :
Sparn on Yarn In this scenario Spark When the task , Single executor Of memeory Set more than 8G The following errors will be reported , This is a yarn Unreasonable settings lead to ,yarn Default single nodemanager by 8G resources , This is not reasonable , So I make adjustments on the cluster .
Main log performance :
Solution :
modify yarn-site.xml
<property>
<description>The minimum allocation for every container request at the RM,
in MBs. Memory requests lower than this won't take effect,
and the specified value will get allocated at minimum.</description>
<name>yarn.scheduler.minimum-allocation-mb</name>
<value>2048</value>
</property>
<property>
<description>The maximum allocation for every container request at the RM,
in MBs. Memory requests higher than this won't take effect,
and will get capped to this value.</description>
<name>yarn.scheduler.maximum-allocation-mb</name>
<value>16384</value>
</property>
<property>
<description>yarn Assigned to nodemanager Maximum number of cores </description>
<name>yarn.scheduler.maximum-allocation-vcores</name>
<value>16</value>
</property>
Adjusted performance

边栏推荐
- 请问seata中mysql参数每个客户端连接最大的错误允许数量要怎么理解呢?
- 简易轮播图和打地鼠
- API health status self inspection
- 基于OpenCV和YOLOv3的目标检测实例应用
- How much memory can a program use at most?
- Recommend 10 learning websites that can be called artifact
- What is the Internet of things
- Cmake specify opencv version
- Maxcompute SQL 的查询结果条数受限1W
- Leetcode combination sum + pruning
猜你喜欢

Spark 内存管理机制 新版

Spark提交参数--files的使用

延迟加载源码剖析:

What is the Internet of things

Leo-sam: tightly coupled laser inertial odometer with smoothing and mapping

System.AccessViolationException: 尝试读取或写入受保护的内存。这通常指示其他内存已损坏

Leetcode combination sum + pruning

Award winning interaction | 7.19 database upgrade plan practical Summit: industry leaders gather, why do they come?

oracle_ 12505 error resolution

"How to use" agent mode
随机推荐
Splice a field of the list set into a single string
The implementation process of inheritance and the difference between Es5 and ES6 implementation
Gbdt source code analysis of boosting
解决DBeaver SQL Client 连接phoenix查询超时
剑指Offer | 二进制中1的个数
Unable to start web server when Nacos starts
SPI传输出现数据与时钟不匹配延后问题分析与解决
基于OpenCV和YOLOv3的目标检测实例应用
TypeScript学习1——数据类型
树莓派入门:树莓派的初始设置
"Ask every day" briefly talk about JMM / talk about your understanding of JMM
SSM Advanced Integration
Implementation of redis distributed lock
Spark SQL空值Null,NaN判断和处理
Rediscluster setup and capacity expansion
Es5 thinking of writing inheritance
CGO is realy Cool!
Spark AQE
node学习
Leetcode combination sum + pruning