YARN-7464. Introduce filters in Nodes page of new YARN UI. Contributed by Vasudevan Skm.

This commit is contained in:
Sunil G 2017-11-15 14:02:53 +05:30
parent c4c57b80e1
commit 2f379d412b
9 changed files with 123 additions and 63 deletions

View File

@ -0,0 +1,36 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import Ember from 'ember';
export default Ember.Controller.extend({
needReload: true,
selectedQueue: undefined,
breadcrumbs: [{
text: "Home",
routeName: 'application'
}, {
text: "Nodes",
routeName: 'yarn-nodes.table',
}, {
text: "Node status",
routeName: 'yarn-nodes-status',
}]
});

View File

@ -29,6 +29,10 @@ export default Ember.Controller.extend({
sortOrder: Ember.computed.alias('tableDefinition.sortOrder'), sortOrder: Ember.computed.alias('tableDefinition.sortOrder'),
pageNum: Ember.computed.alias('tableDefinition.pageNum'), pageNum: Ember.computed.alias('tableDefinition.pageNum'),
rowCount: Ember.computed.alias('tableDefinition.rowCount'), rowCount: Ember.computed.alias('tableDefinition.rowCount'),
tableDefinition: TableDefinition.create({
enableFaceting: true,
rowCount: 25
}),
columns: function() { columns: function() {
var colums = []; var colums = [];
colums.push({ colums.push({
@ -40,6 +44,7 @@ export default Ember.Controller.extend({
id: 'rack', id: 'rack',
headerTitle: 'Rack', headerTitle: 'Rack',
contentPath: 'rack', contentPath: 'rack',
facetType: null,
minWidth: "100px" minWidth: "100px"
}, { }, {
id: 'state', id: 'state',
@ -51,12 +56,14 @@ export default Ember.Controller.extend({
id: 'address', id: 'address',
headerTitle: 'Node Address', headerTitle: 'Node Address',
contentPath: 'id', contentPath: 'id',
minWidth: "300px" minWidth: "300px",
facetType: null,
}, { }, {
id: 'nodeId', id: 'nodeId',
headerTitle: 'Node HTTP Address', headerTitle: 'Node HTTP Address',
contentPath: 'nodeHTTPAddress', contentPath: 'nodeHTTPAddress',
cellComponentName: 'em-table-linked-cell', cellComponentName: 'em-table-linked-cell',
facetType: null,
getCellContent: function(row) { getCellContent: function(row) {
var node_id = row.get("id"), var node_id = row.get("id"),
node_addr = row.get("nodeHTTPAddress"), node_addr = row.get("nodeHTTPAddress"),
@ -76,10 +83,12 @@ export default Ember.Controller.extend({
id: 'containers', id: 'containers',
headerTitle: 'Containers', headerTitle: 'Containers',
contentPath: 'numContainers', contentPath: 'numContainers',
facetType: null,
}, { }, {
id: 'memUsed', id: 'memUsed',
headerTitle: 'Mem Used', headerTitle: 'Mem Used',
contentPath: 'usedMemoryBytes', contentPath: 'usedMemoryBytes',
facetType: null,
cellDefinition: { cellDefinition: {
type: "memory" type: "memory"
} }
@ -87,6 +96,7 @@ export default Ember.Controller.extend({
id: 'memAvail', id: 'memAvail',
headerTitle: 'Mem Available', headerTitle: 'Mem Available',
contentPath: 'availMemoryBytes', contentPath: 'availMemoryBytes',
facetType: null,
cellDefinition: { cellDefinition: {
type: "memory" type: "memory"
} }
@ -94,22 +104,27 @@ export default Ember.Controller.extend({
id: 'coresUsed', id: 'coresUsed',
headerTitle: 'VCores Used', headerTitle: 'VCores Used',
contentPath: 'usedVirtualCores', contentPath: 'usedVirtualCores',
facetType: null,
}, { }, {
id: 'coresAvail', id: 'coresAvail',
headerTitle: 'VCores Available', headerTitle: 'VCores Available',
contentPath: 'availableVirtualCores', contentPath: 'availableVirtualCores',
facetType: null,
}, { }, {
id: 'healthUpdate', id: 'healthUpdate',
headerTitle: 'Last Health Update', headerTitle: 'Last Health Update',
contentPath: 'lastHealthUpdate', contentPath: 'lastHealthUpdate',
facetType: null,
}, { }, {
id: 'healthReport', id: 'healthReport',
headerTitle: 'Health-Report', headerTitle: 'Health-Report',
contentPath: 'healthReport', contentPath: 'healthReport',
facetType: null,
}, { }, {
id: 'version', id: 'version',
headerTitle: 'Version', headerTitle: 'Version',
contentPath: 'version', contentPath: 'version',
facetType: null,
observePath: true observePath: true
}); });
return ColumnDef.make(colums); return ColumnDef.make(colums);

View File

@ -35,7 +35,7 @@ export default DS.Model.extend({
nodeLabelsAsString: function() { nodeLabelsAsString: function() {
var labels = this.get("nodeLabels"); var labels = this.get("nodeLabels");
var labelToReturn = ""; var labelToReturn = "default";
// Only one label per node supported. // Only one label per node supported.
if (labels && labels.length > 0) { if (labels && labels.length > 0) {
labelToReturn = labels[0]; labelToReturn = labels[0];

View File

@ -31,6 +31,7 @@ Router.map(function() {
this.route('yarn-nodes', function(){ this.route('yarn-nodes', function(){
this.route('table'); this.route('table');
this.route('heatmap'); this.route('heatmap');
this.route('status');
}); });
this.route('yarn-queue', {path: '/yarn-queue/:queue_name'}, function() { this.route('yarn-queue', {path: '/yarn-queue/:queue_name'}, function() {
this.route('info'); this.route('info');

View File

@ -16,15 +16,13 @@
* limitations under the License. * limitations under the License.
}} }}
<div class="container-fluid"> <div class="row clearfix">
<div class="row"> <div class="col-md-6">
<div class="col-md-6 container-fluid">
<input type="text" class="form-control" aria-label="..." placeholder="Enter part of host/rack to filter nodes" <input type="text" class="form-control" aria-label="..." placeholder="Enter part of host/rack to filter nodes"
onchange={{action "applyFilter"}}> onchange={{action "applyFilter"}}>
</div> </div>
<div class="col-md-6 container-fluid"> <div class="col-md-6">
<select id="heatmap-select" class="form-control"></select> <select id="heatmap-select" class="form-control"></select>
</div> </div>
</div> </div>
</div>
<p/> <p/>

View File

@ -15,56 +15,35 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--}} --}}
{{breadcrumb-bar breadcrumbs=breadcrumbs}} {{breadcrumb-bar breadcrumbs=breadcrumbs}}
<div class="row"> <div class="row">
<div class="col-md-2 container-fluid"> <div class="container-fluid">
<div class="panel panel-default"> <div class="panel panel-default">
<div class="panel-heading"> <div class="panel-heading">
<h4>Nodes</h4> <div class="clearfix">
</div> <ul class="nav nav-pills">
<div class="panel-body"> <ul class="nav nav-pills collapse in">
<ul class="nav nav-pills nav-stacked" id="stacked-menu">
<ul class="nav nav-pills nav-stacked collapse in">
{{#link-to "yarn-nodes.table" tagName="li"}} {{#link-to "yarn-nodes.table" tagName="li"}}
{{#link-to 'yarn-nodes.table'}}Information {{#link-to 'yarn-nodes.table'}}Information
{{/link-to}} {{/link-to}}
{{/link-to}} {{/link-to}}
{{#link-to 'yarn-nodes.status' tagName="li"}}
{{#link-to 'yarn-nodes.status'}}Node Status
{{/link-to}}
{{/link-to}}
{{#link-to 'yarn-nodes.heatmap' tagName="li"}} {{#link-to 'yarn-nodes.heatmap' tagName="li"}}
{{#link-to 'yarn-nodes.heatmap'}}Nodes Heatmap Chart {{#link-to 'yarn-nodes.heatmap'}}Nodes Heatmap Chart
{{/link-to}} {{/link-to}}
{{/link-to}} {{/link-to}}
</ul> </ul>
</ul> </ul>
</div> </div>
</div> </div>
</div> <div class="panel-body">
<div class="col-md-10 container-fluid">
{{#if model.clusterMetrics}}
<div class="row">
<div class="col-lg-6 container-fluid">
<div class="panel panel-default">
<div class="panel-heading">
Node Managers
</div>
<div class="container-fluid" id="nodes-donut-chart">
{{donut-chart data=model.clusterMetrics.firstObject.getNodesDataForDonutChart
showLabels=true
parentId="nodes-donut-chart"
ratio=0.6
maxHeight=350
colorTargets="good error warn"}}
</div>
</div>
</div>
</div>
{{/if}}
{{outlet}} {{outlet}}
</div> </div>
</div> </div>
</div>
</div>

View File

@ -15,15 +15,11 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--}} --}}
{{#if model.nodes}} {{#if model.nodes}}
<div id="nodes-heatmap-chart">
<div class="row">
<div class="col-lg-12 container-fluid" id="nodes-heatmap-chart">
{{nodes-heatmap model=model.nodes parentId="nodes-heatmap-chart" {{nodes-heatmap model=model.nodes parentId="nodes-heatmap-chart"
title="Node Heatmap Chart (Usage of "}} title="Node Heatmap Chart (Usage of "}}
</div> </div>
</div>
{{/if}} {{/if}}

View File

@ -0,0 +1,35 @@
{{!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
--}}
{{#if model.clusterMetrics}}
<div class="row clearfix">
<div class="col-lg-6">
<div class="panel panel-default">
<div class="panel-heading">
Node Managers
</div>
<div class="container-fluid" id="nodes-donut-chart">
{{donut-chart data=model.clusterMetrics.firstObject.getNodesDataForDonutChart showLabels=true parentId="nodes-donut-chart"
ratio=0.6 maxHeight=350 colorTargets="good error warn"}}
</div>
</div>
</div>
</div>
{{/if}}
{{outlet}}

View File

@ -15,8 +15,8 @@
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--}} --}}
<div class="row"> <div class="row clearfix">
<div class="col-md-12"> <div class="col-md-12 yarn-applications-container">
{{#if model.nodes}} {{#if model.nodes}}
{{em-table columns=columns rows=model.nodes definition=tableDefinition}} {{em-table columns=columns rows=model.nodes definition=tableDefinition}}
{{else}} {{else}}