设置“应用程序优先级”是否有任何参数?

时间:2019-04-15 10:38:55

标签: hive yarn

我正在寻找一种为蜂巢中的任务设置应用程序优先级的方法。提交任务后,我想为其设置一个高优先级(例如100)。可以在以下页面看到此参数:enter image description here 我正在寻找一个类似'set mapreduce.map.memory.mb = 4096;'的参数,因此我可以为此任务设置优先级。

1 个答案:

答案 0 :(得分:1)

在配置单元会话中,也可以在map-reduce program configuration中设置相同的属性:

SET mapreduce.job.priority=VERY_HIGH;  

对于job_id:

 hadoop job -set-priority <job-id> <priority> 

有五个可能的优先级:

VERY_HIGH
HIGH
NORMAL
LOW
VERY_LOW

队列优先级配置:https://hadoop.apache.org/docs/stable/hadoop-yarn/hadoop-yarn-site/CapacityScheduler.html#Setup_for_application_priority