YARN-10974. Queue filter in CS UI v1 does not work as expected. Contributed by Chengbing Liu.
This commit is contained in:
parent
fb4e8172a0
commit
838b63d836
@ -103,7 +103,7 @@ private void renderLeafQueueInfoWithPartition(Block html) {
|
|||||||
? NodeLabel.DEFAULT_NODE_LABEL_PARTITION : nodeLabel;
|
? NodeLabel.DEFAULT_NODE_LABEL_PARTITION : nodeLabel;
|
||||||
// first display the queue's label specific details :
|
// first display the queue's label specific details :
|
||||||
ResponseInfo ri =
|
ResponseInfo ri =
|
||||||
info("\'" + lqinfo.getQueuePath().substring(5)
|
info("\'" + lqinfo.getQueuePath()
|
||||||
+ "\' Queue Status for Partition \'" + nodeLabelDisplay + "\'");
|
+ "\' Queue Status for Partition \'" + nodeLabelDisplay + "\'");
|
||||||
renderQueueCapacityInfo(ri, nodeLabel);
|
renderQueueCapacityInfo(ri, nodeLabel);
|
||||||
html.__(InfoBlock.class);
|
html.__(InfoBlock.class);
|
||||||
@ -113,7 +113,7 @@ private void renderLeafQueueInfoWithPartition(Block html) {
|
|||||||
|
|
||||||
// second display the queue specific details :
|
// second display the queue specific details :
|
||||||
ri =
|
ri =
|
||||||
info("\'" + lqinfo.getQueuePath().substring(5) + "\' Queue Status")
|
info("\'" + lqinfo.getQueuePath() + "\' Queue Status")
|
||||||
.__("Queue State:", lqinfo.getQueueState());
|
.__("Queue State:", lqinfo.getQueueState());
|
||||||
renderCommonLeafQueueInfo(ri);
|
renderCommonLeafQueueInfo(ri);
|
||||||
|
|
||||||
@ -125,7 +125,7 @@ private void renderLeafQueueInfoWithPartition(Block html) {
|
|||||||
|
|
||||||
private void renderLeafQueueInfoWithoutParition(Block html) {
|
private void renderLeafQueueInfoWithoutParition(Block html) {
|
||||||
ResponseInfo ri =
|
ResponseInfo ri =
|
||||||
info("\'" + lqinfo.getQueuePath().substring(5) + "\' Queue Status")
|
info("\'" + lqinfo.getQueuePath() + "\' Queue Status")
|
||||||
.__("Queue State:", lqinfo.getQueueState());
|
.__("Queue State:", lqinfo.getQueueState());
|
||||||
renderQueueCapacityInfo(ri, "");
|
renderQueueCapacityInfo(ri, "");
|
||||||
renderCommonLeafQueueInfo(ri);
|
renderCommonLeafQueueInfo(ri);
|
||||||
@ -337,7 +337,7 @@ public void render(Block html) {
|
|||||||
span().$style(join(width(usedCapPercent),
|
span().$style(join(width(usedCapPercent),
|
||||||
";font-size:1px;left:0%;", absUsedCap > absCap ? Q_OVER : Q_UNDER)).
|
";font-size:1px;left:0%;", absUsedCap > absCap ? Q_OVER : Q_UNDER)).
|
||||||
__('.').__().
|
__('.').__().
|
||||||
span(".q", "Queue: "+info.getQueuePath().substring(5)).__().
|
span(".q", info.getQueuePath()).__().
|
||||||
span().$class("qstats").$style(left(Q_STATS_POS)).
|
span().$class("qstats").$style(left(Q_STATS_POS)).
|
||||||
__(join(percent(used), " used")).__();
|
__(join(percent(used), " used")).__();
|
||||||
|
|
||||||
@ -481,7 +481,7 @@ public void render(Block html) {
|
|||||||
a(_Q).$style(width(Q_MAX_WIDTH)).
|
a(_Q).$style(width(Q_MAX_WIDTH)).
|
||||||
span().$style(join(width(used), ";left:0%;",
|
span().$style(join(width(used), ";left:0%;",
|
||||||
used > 1 ? Q_OVER : Q_UNDER)).__(".").__().
|
used > 1 ? Q_OVER : Q_UNDER)).__(".").__().
|
||||||
span(".q", "Queue: root").__().
|
span(".q", "root").__().
|
||||||
span().$class("qstats").$style(left(Q_STATS_POS)).
|
span().$class("qstats").$style(left(Q_STATS_POS)).
|
||||||
__(join(percent(used), " used")).__().
|
__(join(percent(used), " used")).__().
|
||||||
__(QueueBlock.class).__();
|
__(QueueBlock.class).__();
|
||||||
@ -511,7 +511,7 @@ public void render(Block html) {
|
|||||||
a(_Q).$style(width(Q_MAX_WIDTH)).
|
a(_Q).$style(width(Q_MAX_WIDTH)).
|
||||||
span().$style(join(width(used), ";left:0%;",
|
span().$style(join(width(used), ";left:0%;",
|
||||||
used > 1 ? Q_OVER : Q_UNDER)).__(".").__().
|
used > 1 ? Q_OVER : Q_UNDER)).__(".").__().
|
||||||
span(".q", "Queue: root").__().
|
span(".q", "root").__().
|
||||||
span().$class("qstats").$style(left(Q_STATS_POS)).
|
span().$class("qstats").$style(left(Q_STATS_POS)).
|
||||||
__(join(percent(used), " used")).__().
|
__(join(percent(used), " used")).__().
|
||||||
__(QueueBlock.class).__().__();
|
__(QueueBlock.class).__().__();
|
||||||
@ -645,12 +645,9 @@ public void render(HtmlBlock.Block html) {
|
|||||||
" }",
|
" }",
|
||||||
" });",
|
" });",
|
||||||
" $('#cs').bind('select_node.jstree', function(e, data) {",
|
" $('#cs').bind('select_node.jstree', function(e, data) {",
|
||||||
" var q = $('.q', data.rslt.obj).first().text();",
|
" var queues = $('.q', data.rslt.obj);",
|
||||||
" if (q == 'Queue: root') q = '';",
|
" var q = '^' + queues.first().text();",
|
||||||
" else {",
|
" q += queues.length == 1 ? '$' : '\\\\.';",
|
||||||
" q = q.substr(q.lastIndexOf(':') + 2);",
|
|
||||||
" q = '^' + q.substr(q.lastIndexOf('.') + 1) + '$';",
|
|
||||||
" }",
|
|
||||||
" $('#apps').dataTable().fnFilter(q, 4, true);",
|
" $('#apps').dataTable().fnFilter(q, 4, true);",
|
||||||
" });",
|
" });",
|
||||||
" $('#cs').show();",
|
" $('#cs').show();",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user