blob: 2c872d0bb75313b1977b9fd8c2db7bca98af008d [file] [log] [blame]
/**
* 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');
/**
* Default success callback for ajax-requests in this module
* @type {Function}
*/
var defaultSuccessCallback = function(data, ajaxOptions, params) {
App.router.get('applicationController').dataLoading().done(function(initValue) {
params.query && params.query.set('status', 'SUCCESS');
if (initValue) {
App.router.get('backgroundOperationsController').showPopup();
}
});
};
/**
* Default error callback for ajax-requests in this module
* @param {Object} xhr
* @param {String} textStatus
* @param {String} error
* @param {Object} opt
* @type {Function}
*/
var defaultErrorCallback = function(xhr, textStatus, error, opt, params) {
params.query && params.query.set('status', 'FAIL');
App.ajax.defaultErrorHandler(xhr, opt.url, 'POST', xhr.status);
};
/**
* Contains helpful utilities for handling batch and scheduled requests.
*/
module.exports = {
/**
* Some services have components which have a need for rolling restarts. This
* method returns the name of the host-component which supports rolling
* restarts for a service.
* @param {String} serviceName
*/
getRollingRestartComponentName: function(serviceName) {
var rollingRestartComponents = {
HDFS: 'DATANODE',
YARN: 'NODEMANAGER',
MAPREDUCE: 'TASKTRACKER',
HBASE: 'HBASE_REGIONSERVER',
STORM: 'SUPERVISOR'
};
return rollingRestartComponents[serviceName] ? rollingRestartComponents[serviceName] : null;
},
/**
* Facade-function for restarting host components of specific service
* @param {String} serviceName for which service hostComponents should be restarted
* @param {bool} staleConfigsOnly restart only hostComponents with <code>staleConfig</code> true
*/
restartAllServiceHostComponents: function(serviceName, staleConfigsOnly, query) {
var service = App.Service.find(serviceName);
var context = staleConfigsOnly ? Em.I18n.t('rollingrestart.context.allWithStaleConfigsForSelectedService').format(serviceName) : Em.I18n.t('rollingrestart.context.allForSelectedService').format(serviceName);
if (service) {
var hostComponents = service.get('hostComponents').filterProperty('host.passiveState','OFF');
// HCatalog components are technically owned by Hive.
if (serviceName == 'HIVE') {
var hcatService = App.Service.find('HCATALOG');
if (hcatService != null && hcatService.get('isLoaded')) {
var hcatHcs = hcatService.get('hostComponents').filterProperty('host.passiveState', 'OFF');
if (hcatHcs != null) {
hostComponents.pushObjects(hcatHcs);
}
}
}
if (staleConfigsOnly) {
hostComponents = hostComponents.filterProperty('staleConfigs', true);
}
this.restartHostComponents(hostComponents, context, query);
}
},
/**
* Restart list of host components
* @param {Ember.Enumerable} hostComponentsList list of host components should be restarted
* @param {String} context message to show in BG popup
*/
restartHostComponents: function(hostComponentsList, context, query) {
context = context || Em.I18n.t('rollingrestart.context.default');
/**
* Format: {
* 'DATANODE': ['host1', 'host2'],
* 'NAMENODE': ['host1', 'host3']
* ...
* }
*/
var componentToHostsMap = {};
var componentServiceMap = App.QuickDataMapper.componentServiceMap();
hostComponentsList.forEach(function(hc) {
var componentName = hc.get('componentName');
if (!componentToHostsMap[componentName]) {
componentToHostsMap[componentName] = [];
}
componentToHostsMap[componentName].push(hc.get('host.hostName'));
});
var resource_filters = [];
for (var componentName in componentToHostsMap) {
if (componentToHostsMap.hasOwnProperty(componentName)) {
resource_filters.push({
service_name: componentServiceMap[componentName],
component_name: componentName,
hosts: componentToHostsMap[componentName].join(",")
});
}
}
if (resource_filters.length) {
App.ajax.send({
name: 'restart.hostComponents',
sender: {
successCallback: defaultSuccessCallback,
errorCallback: defaultErrorCallback
},
data: {
context: context,
resource_filters: resource_filters,
query: query
},
success: 'successCallback',
error: 'errorCallback'
});
}
},
/**
* Makes a REST call to the server requesting the rolling restart of the
* provided host components.
* @param {Array} restartHostComponents list of host components should be restarted
* @param {Number} batchSize size of each batch
* @param {Number} intervalTimeSeconds delay between two batches
* @param {Number} tolerateSize task failure tolerance
* @param {callback} successCallback
* @param {callback} errorCallback
*/
_doPostBatchRollingRestartRequest: function(restartHostComponents, batchSize, intervalTimeSeconds, tolerateSize, successCallback, errorCallback) {
successCallback = successCallback || defaultSuccessCallback;
errorCallback = errorCallback || defaultErrorCallback;
if (!restartHostComponents.length) {
console.log('No batch rolling restart if no restartHostComponents provided!');
return;
}
App.ajax.send({
name: 'rolling_restart.post',
sender: {
successCallback: successCallback,
errorCallback: errorCallback
},
data: {
intervalTimeSeconds: intervalTimeSeconds,
tolerateSize: tolerateSize,
batches: this.getBatchesForRollingRestartRequest(restartHostComponents, batchSize)
},
success: 'successCallback',
error: 'errorCallback'
});
},
/**
* Create list of batches for rolling restart request
* @param {Array} restartHostComponents list host components should be restarted
* @param {Number} batchSize size of each batch
* @returns {Array} list of batches
*/
getBatchesForRollingRestartRequest: function(restartHostComponents, batchSize) {
var hostIndex = 0,
batches = [],
batchCount = Math.ceil(restartHostComponents.length / batchSize),
sampleHostComponent = restartHostComponents.objectAt(0),
componentName = sampleHostComponent.get('componentName'),
serviceName = sampleHostComponent.get('service.serviceName');
for ( var count = 0; count < batchCount; count++) {
var hostNames = [];
for ( var hc = 0; hc < batchSize && hostIndex < restartHostComponents.length; hc++) {
hostNames.push(restartHostComponents.objectAt(hostIndex++).get('host.hostName'));
}
if (hostNames.length > 0) {
batches.push({
"order_id" : count + 1,
"type" : "POST",
"uri" : App.apiPrefix + "/clusters/" + App.get('clusterName') + "/requests",
"RequestBodyInfo" : {
"RequestInfo" : {
"context" : "_PARSE_.ROLLING-RESTART." + componentName + "." + (count + 1) + "." + batchCount,
"command" : "RESTART"
},
"Requests/resource_filters": [{
"service_name" : serviceName,
"component_name" : componentName,
"hosts" : hostNames.join(",")
}]
}
});
}
}
return batches;
},
/**
* Launches dialog to handle rolling restarts of host components.
*
* Rolling restart is supported only for components listed in <code>getRollingRestartComponentName</code>
* @see getRollingRestartComponentName
* @param {String} hostComponentName
* Type of host-component to restart across cluster
* (ex: DATANODE)
* @param {bool} staleConfigsOnly
* Pre-select host-components which have stale
* configurations
*/
launchHostComponentRollingRestart: function(hostComponentName, serviceName, isMaintenanceModeOn, staleConfigsOnly, skipMaintenance) {
if (App.get('components.rollinRestartAllowed').contains(hostComponentName)) {
this.showRollingRestartPopup(hostComponentName, serviceName, isMaintenanceModeOn, staleConfigsOnly, null, skipMaintenance);
}
else {
this.showWarningRollingRestartPopup(hostComponentName);
}
},
/**
* Show popup with rolling restart dialog
* @param {String} hostComponentName name of the host components that should be restarted
* @param {bool} staleConfigsOnly restart only components with <code>staleConfigs</code> = true
* @param {App.hostComponent[]} hostComponents list of hostComponents that should be restarted (optional).
* Using this parameter will reset hostComponentName
*/
showRollingRestartPopup: function(hostComponentName, serviceName, isMaintenanceModeOn, staleConfigsOnly, hostComponents, skipMaintenance) {
hostComponents = hostComponents || [];
var componentDisplayName = App.format.role(hostComponentName);
if (!componentDisplayName) {
componentDisplayName = hostComponentName;
}
var title = Em.I18n.t('rollingrestart.dialog.title').format(componentDisplayName);
var viewExtend = {
staleConfigsOnly : staleConfigsOnly,
hostComponentName : hostComponentName,
skipMaintenance: skipMaintenance,
serviceName: serviceName,
isServiceInMM: isMaintenanceModeOn,
didInsertElement : function() {
this.set('parentView.innerView', this);
this.initialize();
}
};
if (hostComponents.length) {
viewExtend.allHostComponents = hostComponents;
}
var self = this;
App.ModalPopup.show({
header : title,
hostComponentName : hostComponentName,
serviceName: serviceName,
isServiceInMM: isMaintenanceModeOn,
staleConfigsOnly : staleConfigsOnly,
skipMaintenance: skipMaintenance,
innerView : null,
bodyClass : App.RollingRestartView.extend(viewExtend),
classNames : [ 'rolling-restart-popup' ],
primary : Em.I18n.t('rollingrestart.dialog.primary'),
onPrimary : function() {
var dialog = this;
var restartComponents = this.get('innerView.restartHostComponents');
var batchSize = this.get('innerView.batchSize');
var waitTime = this.get('innerView.interBatchWaitTimeSeconds');
var tolerateSize = this.get('innerView.tolerateSize');
self._doPostBatchRollingRestartRequest(restartComponents, batchSize, waitTime, tolerateSize, function(data, ajaxOptions, params) {
dialog.hide();
defaultSuccessCallback(data, ajaxOptions, params);
});
},
updateButtons : function() {
var errors = this.get('innerView.errors');
this.set('disablePrimary', (errors != null && errors.length > 0))
}.observes('innerView.errors')
});
},
/**
* Show warning popup about not supported host components
* @param {String} hostComponentName
*/
showWarningRollingRestartPopup: function(hostComponentName) {
var componentDisplayName = App.format.role(hostComponentName);
if (!componentDisplayName) {
componentDisplayName = hostComponentName;
}
var title = Em.I18n.t('rollingrestart.dialog.title').format(componentDisplayName);
var msg = Em.I18n.t('rollingrestart.notsupported.hostComponent').format(componentDisplayName);
console.log(msg);
App.ModalPopup.show({
header : title,
secondary : false,
msg : msg,
bodyClass : Em.View.extend({
template : Em.Handlebars.compile('<div class="alert alert-warning">{{msg}}</div>')
})
});
},
/**
* Warn user that alerts will be updated in few minutes
* @param {String} hostComponentName
*/
infoPassiveState: function(passiveState) {
var enabled = passiveState == 'OFF' ? 'enabled' : 'suppressed';
App.ModalPopup.show({
header: Em.I18n.t('common.information'),
secondary: null,
bodyClass: Ember.View.extend({
template: Ember.Handlebars.compile('<p>{{view.message}}</p>'),
message: function() {
return Em.I18n.t('hostPopup.warning.alertsTimeOut').format(passiveState.toLowerCase(), enabled);
}.property()
})
});
},
/**
* Retrieves the latest information about a specific request schedule
* identified by 'requestScheduleId'
*
* @param {Number} requestScheduleId ID of the request schedule to get
* @param {Function} successCallback Called with request_schedule data from server. An
* empty object returned for invalid ID.
* @param {Function} errorCallback Optional error callback. Default behavior is to
* popup default error dialog.
*/
getRequestSchedule: function(requestScheduleId, successCallback, errorCallback) {
if (requestScheduleId != null && !isNaN(requestScheduleId) && requestScheduleId > -1) {
errorCallback = errorCallback ? errorCallback : defaultErrorCallback;
App.ajax.send({
name : 'request_schedule.get',
sender : {
successCallbackFunction : function(data) {
successCallback(data);
},
errorCallbackFunction : function(xhr, textStatus, error, opt) {
errorCallback(xhr, textStatus, error, opt);
}
},
data : {
request_schedule_id : requestScheduleId
},
success : 'successCallbackFunction',
error : 'errorCallbackFunction'
});
} else {
successCallback({});
}
},
/**
* Attempts to abort a specific request schedule identified by 'requestScheduleId'
*
* @param {Number} requestScheduleId ID of the request schedule to get
* @param {Function} successCallback Called when request schedule successfully aborted
* @param {Function} errorCallback Optional error callback. Default behavior is to
* popup default error dialog.
*/
doAbortRequestSchedule: function(requestScheduleId, successCallback, errorCallback) {
if (requestScheduleId != null && !isNaN(requestScheduleId) && requestScheduleId > -1) {
errorCallback = errorCallback || defaultErrorCallback;
App.ajax.send({
name : 'request_schedule.delete',
sender : {
successCallbackFunction : function(data) {
successCallback(data);
},
errorCallbackFunction : function(xhr, textStatus, error, opt) {
errorCallback(xhr, textStatus, error, opt);
}
},
data : {
request_schedule_id : requestScheduleId
},
success : 'successCallbackFunction',
error : 'errorCallbackFunction'
});
} else {
successCallback({});
}
}
};