tags:

views:

278

answers:

1

How can I set the Priority\Pool of an Hadoop Streaming job? It's probably a command-line jobconf parameter (e.g -jobconf something=pool.name) but I haven't been able to find any documentation on this online...

+1  A: 

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

Jeremy Bensley