Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does "% of Queue" refer to in the hadoop yarn UI

I regularly schedule spark applications via yarn and use the yarn web UI in order to track the applications. However, I haven't been able to figure out what this column in the applications table refers to:

% of Queue column in yarn ui

I can't find any information about it online. Does anyone know what "% of Queue" means in this context?

like image 662
croncroncron Avatar asked Sep 03 '25 08:09

croncroncron


1 Answers

Thats "the percentage of resources of the queue that the app is using" [source].

%-age over a hundred can occur, for example, if you're using FairScheduler, due to the difference in queue's Instantaneous vs Steady fair share.

like image 119
mazaneicha Avatar answered Sep 04 '25 23:09

mazaneicha