How to set priority \ pool in Hadoop Streaming task?

How to set priority \ pool of Hadoop Streaming job? This is probably a command line option on the command line (e.g. -jobconf something = pool.name), but I could not find the documentation in this online mode ...

+3
source share
2 answers

-jobconf mapred.job.queue.name = <queue_name> mapred.job.priority = <VERY_LOW | LOW | NORMAL | HIGH | VERY_HIGH>

+12
source

set mapred.job.priority = VERY_HIGH;

: VERY_LOW | LOW | NORMAL | HIGH | VERY_HIGH

inside Hive CLI

+3
source

Source: https://habr.com/ru/post/1710491/


All Articles