123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /**
- * 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.
- */
- var App = require('app');
- var cmp = Ember.computed;
- App.CapschedSchedulerController = Ember.Controller.extend({
- needs: ['capsched'],
- scheduler: cmp.alias('controllers.capsched.content'),
- schedulerProps: ['maximum_am_resource_percent', 'maximum_applications', 'node_locality_delay', 'resource_calculator'],
- isRefreshOrRestartNeeded: false,
- actions: {
- rollbackSchedulerProps: function() {
- var tempRefreshNeeded = this.get('isRefreshOrRestartNeeded');
- var sched = this.get('scheduler'),
- attributes = sched.changedAttributes(),
- props = this.schedulerProps;
- props.forEach(function(prop) {
- if (attributes.hasOwnProperty(prop)) {
- sched.set(prop, attributes[prop][0]);
- }
- });
- this.set('isRefreshOrRestartNeeded', tempRefreshNeeded);
- },
- rollbackProp: function(prop, item) {
- var tempRefreshNeeded = this.get('isRefreshOrRestartNeeded');
- var attributes = item.changedAttributes();
- if (attributes.hasOwnProperty(prop)) {
- item.set(prop, attributes[prop][0]);
- }
- this.set('isRefreshOrRestartNeeded', tempRefreshNeeded);
- this.afterRollbackProp();
- },
- showConfirmDialog: function() {
- this.set('isConfirmDialogOpen', true);
- },
- showSaveConfigDialog: function(mode) {
- if (mode) {
- this.set('saveMode', mode);
- } else {
- this.set('saveMode', '');
- }
- this.set('isSaveConfigDialogOpen', true);
- }
- },
- isOperator: cmp.alias('controllers.capsched.isOperator'),
- saveMode: '',
- isConfirmDialogOpen: false,
- isSaveConfigDialogOpen: false,
- configNote: cmp.alias('store.configNote'),
- isSchedulerDirty: false,
- isSchedulerPropsNeedSaveOrRestart: cmp.or('isRefreshOrRestartNeeded', 'isSchedulerDirty'),
- forceRestartRequired: function() {
- return !this.get('isSchedulerDirty') && this.get('isRefreshOrRestartNeeded');
- }.property('isSchedulerDirty', 'isRefreshOrRestartNeeded'),
- schedulerBecomeDirty: function() {
- var sched = this.get('scheduler'),
- attributes = sched.changedAttributes(),
- props = this.schedulerProps;
- var isDirty = props.any(function(prop){
- return attributes.hasOwnProperty(prop);
- });
- this.set('isSchedulerDirty', isDirty);
- this.set('isRefreshOrRestartNeeded', isDirty);
- }.observes('scheduler.maximum_am_resource_percent', 'scheduler.maximum_applications', 'scheduler.node_locality_delay', 'scheduler.resource_calculator'),
- /**
- * Collection of modified fields in Scheduler.
- * @type {Object} - { [fileldName] : {Boolean} }
- */
- schedulerDirtyFields: {},
- dirtyObserver:function () {
- this.get('scheduler.constructor.transformedAttributes.keys.list').forEach(function(item) {
- this.addObserver('scheduler.' + item, this, 'propertyBecomeDirty');
- }.bind(this));
- }.observes('scheduler').on('init'),
- propertyBecomeDirty:function (controller, property) {
- var schedProp = property.split('.').objectAt(1);
- this.set('schedulerDirtyFields.' + schedProp, this.get('scheduler').changedAttributes().hasOwnProperty(schedProp));
- },
- resourceCalculatorValues: [{
- label: 'Default Resource Calculator',
- value: 'org.apache.hadoop.yarn.util.resource.DefaultResourceCalculator'
- }, {
- label: 'Dominant Resource Calculator',
- value: 'org.apache.hadoop.yarn.util.resource.DominantResourceCalculator'
- }],
- afterRollbackProp: function() {
- if (this.get('isSchedulerDirty')) {
- this.set('isRefreshOrRestartNeeded', true);
- } else {
- this.set('isRefreshOrRestartNeeded', false);
- }
- }
- });
|