I need to map YARN queues to analytic phoenix queries. That is, when
user1 runs
"select col1, col2 from table1"
user1 runs it in yarn-queue1 and that way we can make sure adequate resources is given to the queue to avoid contention with lower priority jobs.
However, I have tested with the
yarn.scheduler.capacity.queue-mappings-override.enable=true
yarn.scheduler.capacity.queue-mappings=u:user1:queue1,g:group1:queue2
parameters but i am not able to see the queries that are executed in YARN.
How do i make sure these queries are catered for?
N.B: We use squirrel to connect to Phoenix.