123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857 |
- /**
- * 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 batchUtils = require('utils/batch_scheduled_requests');
- var componentsUtils = require('utils/components');
- var stringUtils = require('utils/string_utils');
- App.MainHostDetailsController = Em.Controller.extend({
- name: 'mainHostDetailsController',
- /**
- * Viewed host
- * @type {App.Host|null}
- */
- content: null,
- /**
- * Does user come from hosts page
- * @type {bool}
- */
- isFromHosts: false,
- /**
- * path to page visited before
- * @type {string}
- */
- referer: '',
- /**
- * Open dashboard page
- * @method routeHome
- */
- routeHome: function () {
- App.router.transitionTo('main.dashboard.index');
- },
- /**
- * List of active (not in passive state) host components
- * @type {Ember.Enumerable}
- */
- serviceActiveComponents: function () {
- return this.get('content.hostComponents').filterProperty('service.isInPassive', false);
- }.property('content.hostComponents'),
- /**
- * List of active host components which aren't clients
- * @type {Ember.Enumerable}
- */
- serviceNonClientActiveComponents: function () {
- return this.get('serviceActiveComponents').filterProperty('isClient', false);
- }.property('serviceActiveComponents'),
- /**
- * send command to server to start selected host component
- * @param {object} event
- * @method startComponent
- */
- startComponent: function (event) {
- var self = this;
- return App.showConfirmationPopup(function () {
- var component = event.context;
- var context = Em.I18n.t('requestInfo.startHostComponent') + " " + component.get('displayName');
- self.sendComponentCommand(component, context, App.HostComponentStatus.started);
- });
- },
- /**
- * send command to server to stop selected host component
- * @param {object} event
- * @method startComponent
- */
- stopComponent: function (event) {
- var self = this;
- return App.showConfirmationPopup(function () {
- var component = event.context;
- var context = Em.I18n.t('requestInfo.stopHostComponent') + " " + component.get('displayName');
- self.sendComponentCommand(component, context, App.HostComponentStatus.stopped);
- });
- },
- /**
- * PUTs a command to server to start/stop a component. If no
- * specific component is provided, all components are started.
- * @param {object} component When <code>null</code> all startable components are started.
- * @param {String} context Context under which this command is beign sent.
- * @param {String} state - desired state of component can be 'STARTED' or 'STOPPED'
- * @method sendComponentCommand
- */
- sendComponentCommand: function (component, context, state) {
- var data = {
- hostName: this.get('content.hostName'),
- context: context,
- component: component,
- HostRoles: {
- state: state
- }
- };
- if (Array.isArray(component)) {
- data.query = "HostRoles/component_name.in(" + component.mapProperty('componentName').join(',') + ")";
- } else {
- data.componentName = component.get('componentName');
- data.serviceName = component.get('service.serviceName');
- }
- App.ajax.send({
- name: (Array.isArray(component)) ? 'common.host.host_components.update' : 'common.host.host_component.update',
- sender: this,
- data: data,
- success: 'sendComponentCommandSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- },
- /**
- * Success callback for stop/start host component request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method stopComponentSuccessCallback
- */
- sendComponentCommandSuccessCallback: function (data, opt, params) {
- var running = (params.HostRoles.state === App.HostComponentStatus.stopped) ? App.HostComponentStatus.stopping : App.HostComponentStatus.starting;
- console.log('Send request for ' + running + ' successfully');
- params.component.set('workStatus', running);
- if (App.get('testMode')) {
- this.mimicWorkStatusChange(params.component, running, params.HostRoles.state);
- }
- this.showBackgroundOperationsPopup();
- },
- /**
- * Default error-callback for ajax-requests in current page
- * @param {object} request
- * @param {object} ajaxOptions
- * @param {string} error
- * @param {object} opt
- * @param {object} params
- * @method ajaxErrorCallback
- */
- ajaxErrorCallback: function (request, ajaxOptions, error, opt, params) {
- return componentsUtils.ajaxErrorCallback(request, ajaxOptions, error, opt, params);
- },
- /**
- * mimic status transition in test mode
- * @param entity
- * @param transitionalState
- * @param finalState
- */
- mimicWorkStatusChange: function (entity, transitionalState, finalState) {
- if (Em.isArray(entity)) {
- entity.forEach(function (item) {
- item.set('workStatus', transitionalState);
- setTimeout(function () {
- item.set('workStatus', finalState);
- }, App.testModeDelayForActions);
- });
- } else {
- entity.set('workStatus', transitionalState);
- setTimeout(function () {
- entity.set('workStatus', finalState);
- }, App.testModeDelayForActions);
- }
- },
- /**
- * load data (if we need to show this background operations popup) from persist
- * @param callback
- */
- showBackgroundOperationsPopup: function (callback) {
- App.router.get('applicationController').dataLoading().done(function (initValue) {
- if (initValue) {
- App.router.get('backgroundOperationsController').showPopup();
- }
- if (typeof callback === 'function') {
- callback();
- }
- });
- },
- /**
- * Send command to server to delete selected host component
- * @param {object} event
- * @method deleteComponent
- */
- deleteComponent: function (event) {
- var self = this;
- var component = event.context;
- var componentName = component.get('componentName');
- var displayName = component.get('displayName');
- var isLastComponent = (this.getTotalComponent(component) === 1);
- return App.ModalPopup.show({
- header: Em.I18n.t('popup.confirmation.commonHeader'),
- primary: Em.I18n.t('hosts.host.deleteComponent.popup.confirm'),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/deleteComponentPopup')
- }),
- isHiveMetastore: function () {
- return componentName == 'HIVE_METASTORE';
- }.property(),
- deleteHiveMetastoreMsg: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.deleteComponent.popup.deleteHiveMetastore'))
- }),
- isChecked: false,
- disablePrimary: function () {
- return !this.get('isChecked');
- }.property('isChecked'),
- lastComponent: function () {
- this.set('isChecked', !isLastComponent);
- return isLastComponent;
- }.property(),
- isZkServer: function () {
- return componentName == 'ZOOKEEPER_SERVER';
- }.property(),
- lastComponentError: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.deleteComponent.popup.warning').format(displayName))
- }),
- restartNagiosMsg: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.deleteComponent.popup.msg2').format(displayName))
- }),
- deleteComponentMsg: function () {
- return Em.I18n.t('hosts.host.deleteComponent.popup.msg1').format(displayName);
- }.property(),
- deleteZkServerMsg: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.deleteComponent.popup.deleteZooKeeperServer'))
- }),
- onPrimary: function () {
- var popup = this;
- self._doDeleteHostComponent(component, function () {
- self.set('redrawComponents', true);
- popup.hide();
- });
- }
- });
- },
- /**
- * get total count of host-components
- * @method getTotalComponent
- * @param component
- * @return {Number}
- */
- getTotalComponent: function (component) {
- var count;
- if (component.get('isSlave')) {
- count = App.SlaveComponent.find(component.get('componentName')).get('totalCount');
- } else if (component.get('isClient')) {
- count = App.ClientComponent.find(component.get('componentName')).get('totalCount');
- } else {
- count = App.HostComponent.find().filterProperty('componentName', component.get('componentName')).get('length');
- }
- return count || 0;
- },
- /**
- * Trigger to reset list of master/slaves components on the view
- * @type {bool}
- */
- redrawComponents: false,
- /**
- * Deletes the given host component, or all host components.
- *
- * @param {object|null} component When <code>null</code> all host components are deleted.
- * @return <code>null</code> when components get deleted.
- * <code>{xhr: XhrObj, url: "http://", method: "DELETE"}</code>
- * when components failed to get deleted.
- * @method _doDeleteHostComponent
- */
- _doDeleteHostComponent: function (component, callback) {
- callback = callback || Em.K;
- App.ajax.send({
- name: (Em.isNone(component)) ? 'common.delete.host' : 'common.delete.host_component',
- sender: this,
- data: {
- componentName: (component) ? component.get('componentName') : '',
- hostName: this.get('content.hostName')
- },
- success: '_doDeleteHostComponentSuccessCallback',
- error: '_doDeleteHostComponentErrorCallback'
- }).then(callback, callback);
- },
- /**
- * Result of delete component(s) request
- * @type {object}
- */
- _deletedHostComponentResult: null,
- /**
- * Success callback for delete host component request
- * @method _doDeleteHostComponentSuccessCallback
- */
- _doDeleteHostComponentSuccessCallback: function (response, request, data) {
- this.set('_deletedHostComponentResult', null);
- this.removeHostComponentModel(data.componentName, data.hostName);
- if (data.componentName == 'ZOOKEEPER_SERVER') {
- this.set('fromDeleteZkServer', true);
- this.loadConfigs();
- } else if (data.componentName == 'HIVE_METASTORE') {
- this.set('deleteHiveMetaStore', true);
- this.loadConfigs('loadHiveConfigs');
- }
- },
- /**
- * Error-callback for delete host component request
- * @param {object} xhr
- * @param {string} textStatus
- * @param {object} errorThrown
- * @method _doDeleteHostComponentErrorCallback
- */
- _doDeleteHostComponentErrorCallback: function (xhr, textStatus, errorThrown, data) {
- console.log('Error deleting host component');
- console.log(textStatus);
- console.log(errorThrown);
- this.set('_deletedHostComponentResult', {xhr: xhr, url: data.url, method: 'DELETE'});
- },
- /**
- * Remove host component data from App.HostComponent model.
- *
- * @param {String} componentName
- * @param {String} hostName
- */
- removeHostComponentModel: function(componentName, hostName) {
- var component = App.HostComponent.find().filterProperty('componentName', componentName).findProperty('hostName', hostName);
- App.serviceMapper.deleteRecord(component);
- },
-
- /**
- * Send command to server to upgrade selected host component
- * @param {object} event
- * @method upgradeComponent
- */
- upgradeComponent: function (event) {
- var self = this;
- var component = event.context;
- return App.showConfirmationPopup(function () {
- App.ajax.send({
- name: 'host.host_component.upgrade',
- sender: self,
- data: {
- component: component,
- hostName: self.get('content.hostName'),
- componentName: component.get('componentName'),
- data: JSON.stringify({
- RequestInfo: {
- "context": Em.I18n.t('requestInfo.upgradeHostComponent') + " " + component.get('displayName')
- },
- Body: {
- HostRoles: {
- stack_id: 'HDP-1.2.2',
- state: 'INSTALLED'
- }
- }
- })
- },
- success: 'upgradeComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- });
- },
- /**
- * Success callback for upgrade host component request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method upgradeComponentSuccessCallback
- */
- upgradeComponentSuccessCallback: function (data, opt, params) {
- console.log('Send request for UPGRADE successfully');
- if (App.get('testMode')) {
- this.mimicWorkStatusChange(params.component, App.HostComponentStatus.starting, App.HostComponentStatus.started);
- }
- this.showBackgroundOperationsPopup();
- },
- /**
- * Send command to server to restart selected components
- * @param {object} event
- * @method restartComponent
- */
- restartComponent: function (event) {
- var component = event.context;
- return App.showConfirmationPopup(function () {
- batchUtils.restartHostComponents([component], Em.I18n.t('rollingrestart.context.selectedComponentOnSelectedHost').format(component.get('displayName')), "HOST_COMPONENT");
- });
- },
- /**
- * get current status of security settings,
- * if true security is enabled otherwise disabled
- * @return {Boolean}
- */
- securityEnabled: function () {
- return App.router.get('mainAdminSecurityController.securityEnabled');
- }.property('App.router.mainAdminSecurityController.securityEnabled'),
- /**
- * Send command to server to install selected host component
- * @param {object} event
- * @method addComponent
- */
- addComponent: function (event) {
- var self = this;
- var component = event.context;
- var componentName = component.get('componentName');
- var missedComponents = componentsUtils.checkComponentDependencies(componentName, {
- scope: 'host',
- installedComponents: this.get('content.hostComponents').mapProperty('componentName')
- });
- if (!!missedComponents.length) {
- var popupMessage = Em.I18n.t('host.host.addComponent.popup.dependedComponents.body').format(component.get('displayName'),
- stringUtils.getFormattedStringFromArray(missedComponents.map(function(cName) {
- return App.StackServiceComponent.find(cName).get('displayName');
- })));
- return App.showAlertPopup(Em.I18n.t('host.host.addComponent.popup.dependedComponents.header'), popupMessage);
- }
- if (componentName === 'ZOOKEEPER_SERVER' || componentName === 'HIVE_METASTORE') {
- return App.showConfirmationPopup(function () {
- self.primary(component);
- }, Em.I18n.t('hosts.host.addComponent.' + componentName ));
- } else {
- if (this.get('securityEnabled') && componentName !== 'CLIENTS') {
- return App.showConfirmationPopup(function () {
- self.primary(component);
- }, Em.I18n.t('hosts.host.addComponent.securityNote').format(componentName, self.get('content.hostName')));
- }
- else {
- return this.addClientComponent(component);
- }
- }
- },
- /**
- * Send command to server to install client on selected host
- * @param component
- */
- addClientComponent: function (component) {
- var self = this;
- var message = this.formatClientsMessage(component);
- return App.ModalPopup.show({
- primary: Em.I18n.t('hosts.host.addComponent.popup.confirm'),
- header: Em.I18n.t('popup.confirmation.commonHeader'),
- addComponentMsg: function () {
- return Em.I18n.t('hosts.host.addComponent.msg').format(message);
- }.property(),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/addComponentPopup')
- }),
- restartNagiosMsg: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.addComponent.note').format(message))
- }),
- onPrimary: function () {
- this.hide();
- if (component.get('componentName') === 'CLIENTS') {
- // Clients component has many sub-components which
- // need to be installed.
- var scs = component.get('subComponentNames');
- scs.forEach(function (sc) {
- var c = Em.Object.create({
- displayName: App.format.role(sc),
- componentName: sc,
- serviceName: sc.replace("_CLIENT", "")
- });
- self.primary(c);
- });
- } else {
- self.primary(component);
- }
- }
- });
- },
- /**
- * format message for operation of adding clients
- * @param client
- */
- formatClientsMessage: function (client) {
- var displayName = Em.isNone(client.get('displayName')) ? '' : client.get('displayName');
- var subComponentNames = client.get('subComponentNames');
- if (subComponentNames && subComponentNames.length > 0) {
- var dns = [];
- subComponentNames.forEach(function (scn) {
- dns.push(App.format.role(scn));
- });
- displayName += " (" + dns.join(", ") + ")";
- }
- return displayName;
- },
- /**
- * Send request to add host component
- * @param {App.HostComponent} component
- * @method primary
- */
- primary: function (component) {
- var self = this;
- componentsUtils.installHostComponent(self.get('content.hostName'), component);
- },
- /**
- * Success callback for install host component request (sent in <code>addNewComponentSuccessCallback</code>)
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method installNewComponentSuccessCallback
- */
- installNewComponentSuccessCallback: function (data, opt, params) {
- if (!data.Requests || !data.Requests.id) {
- return false;
- }
- var self = this;
- console.log('Send request for INSTALLING NEW COMPONENT successfully');
- if (App.get('testMode')) {
- this.mimicWorkStatusChange(params.component, App.HostComponentStatus.installing, App.HostComponentStatus.stopped);
- }
- this.showBackgroundOperationsPopup(function () {
- if (params.componentName === 'ZOOKEEPER_SERVER' || params.componentName === 'HIVE_METASTORE' || params.componentName === 'HIVE_SERVER') {
- self.set(params.componentName === 'ZOOKEEPER_SERVER' ? 'zkRequestId' : 'hiveRequestId', data.Requests.id);
- self.addObserver(
- 'App.router.backgroundOperationsController.serviceTimestamp',
- self,
- (params.componentName === 'ZOOKEEPER_SERVER' ? self.checkZkConfigs : self.checkHiveDone)
- );
- params.componentName === 'ZOOKEEPER_SERVER' ? self.checkZkConfigs() : self.checkHiveDone();
- }
- });
- return true;
- },
- /**
- * Call load tags
- * @method checkHiveDone
- */
- checkHiveDone: function () {
- var bg = App.router.get('backgroundOperationsController.services').findProperty('id', this.get('hiveRequestId'));
- if (bg && !bg.get('isRunning')) {
- var self = this;
- this.removeObserver('App.router.backgroundOperationsController.serviceTimestamp', this, this.checkHiveDone);
- setTimeout(function () {
- self.loadConfigs("loadHiveConfigs");
- }, App.get('componentsUpdateInterval'));
- }
- },
- /**
- * Success callback for load configs request
- * @param {object} data
- * @method loadHiveConfigs
- */
- loadHiveConfigs: function (data) {
- App.ajax.send({
- name: 'admin.get.all_configurations',
- sender: this,
- data: {
- urlParams: '(type=hive-site&tag=' + data.Clusters.desired_configs['hive-site'].tag + ')|(type=webhcat-site&tag=' +
- data.Clusters.desired_configs['webhcat-site'].tag + ')|(type=hive-env&tag=' + data.Clusters.desired_configs['hive-env'].tag +
- ')|(type=core-site&tag=' + data.Clusters.desired_configs['core-site'].tag + ')'
- },
- success: 'onLoadHiveConfigs'
- });
- },
- /**
- * update and save Hive related configs to server
- * @param {object} data
- * @method onLoadHiveConfigs
- */
- onLoadHiveConfigs: function (data) {
- var hiveMSHosts = this.getHiveHosts();
- var hiveMasterHosts = hiveMSHosts.concat([App.HostComponent.find().findProperty('componentName', 'HIVE_SERVER').get('hostName')]).uniq().join(',');
- var configs = {};
- var port = "";
- var hiveUser = "";
- var webhcatUser = "";
- data.items.forEach(function (item) {
- configs[item.type] = item.properties;
- }, this);
- port = configs['hive-site']['hive.metastore.uris'].match(/:[0-9]{2,4}/);
- port = port ? port[0].slice(1) : "9083";
- hiveUser = configs['hive-env']['hive_user'];
- webhcatUser = configs['hive-env']['webhcat_user'];
- for (var i = 0; i < hiveMSHosts.length; i++) {
- hiveMSHosts[i] = "thrift://" + hiveMSHosts[i] + ":" + port;
- }
- configs['hive-site']['hive.metastore.uris'] = hiveMSHosts.join(',');
- configs['webhcat-site']['templeton.hive.properties'] = configs['webhcat-site']['templeton.hive.properties'].replace(/thrift.+[0-9]{2,},/i, hiveMSHosts.join('\\,') + ",");
- configs['core-site']['hadoop.proxyuser.' + hiveUser + '.hosts'] = hiveMasterHosts;
- configs['core-site']['hadoop.proxyuser.' + webhcatUser + '.hosts'] = hiveMasterHosts;
- var groups = [
- {
- 'hive-site': configs['hive-site'],
- 'webhcat-site': configs['webhcat-site'],
- 'hive-env': configs['hive-env']
- },
- {'core-site': configs['core-site']}
- ];
- this.saveConfigsBatch(groups);
- },
- /**
- * save configs' sites in batch
- * @param groups
- */
- saveConfigsBatch: function (groups) {
- groups.forEach(function (configs) {
- var desiredConfigs = [];
- var tag = 'version' + (new Date).getTime();
- for (var site in configs) {
- if (!configs.hasOwnProperty(site)) continue;
- desiredConfigs.push({
- "type": site,
- "tag": tag,
- "properties": configs[site],
- "service_config_version_note": Em.I18n.t('hosts.host.hive.configs.save.note')
- });
- }
- if (desiredConfigs.length > 0) {
- App.ajax.send({
- name: 'common.service.configurations',
- sender: this,
- data: {
- desired_config: desiredConfigs
- }
- });
- }
- }, this);
- },
- /**
- * Delete Hive Metastore is performed
- * @type {bool}
- */
- deleteHiveMetaStore: false,
- getHiveHosts: function () {
- var hiveHosts = App.HostComponent.find().filterProperty('componentName', 'HIVE_METASTORE').mapProperty('hostName');
- if (this.get('fromDeleteHost') || this.get('deleteHiveMetaStore')) {
- this.set('deleteHiveMetaStore', false);
- this.set('fromDeleteHost', false);
- return hiveHosts.without(this.get('content.hostName'));
- }
- return hiveHosts;
- },
- /**
- * Send command to server to resfresh configs of selected component
- * @param {object} event
- * @method refreshComponentConfigs
- */
- refreshComponentConfigs: function (event) {
- var self = this;
- return App.showConfirmationPopup(function () {
- var component = event.context;
- var context = Em.I18n.t('requestInfo.refreshComponentConfigs').format(component.get('displayName'));
- self.sendRefreshComponentConfigsCommand(component, context);
- });
- },
- /**
- * PUTs a command to server to refresh configs of host component.
- * @param {object} component
- * @param {object} context Context under which this command is beign sent.
- * @method sendRefreshComponentConfigsCommand
- */
- sendRefreshComponentConfigsCommand: function (component, context) {
- var resource_filters = [
- {
- service_name: component.get('service.serviceName'),
- component_name: component.get('componentName'),
- hosts: component.get('host.hostName')
- }
- ];
- App.ajax.send({
- name: 'host.host_component.refresh_configs',
- sender: this,
- data: {
- resource_filters: resource_filters,
- context: context
- },
- success: 'refreshComponentConfigsSuccessCallback'
- });
- },
- /**
- * Success callback for refresh host component configs request
- * @method refreshComponentConfigsSuccessCallback
- */
- refreshComponentConfigsSuccessCallback: function () {
- console.log('Send request for refresh configs successfully');
- this.showBackgroundOperationsPopup();
- },
- /**
- * Load tags
- * @method checkZkConfigs
- */
- checkZkConfigs: function () {
- var bg = App.router.get('backgroundOperationsController.services').findProperty('id', this.get('zkRequestId'));
- if (bg && !bg.get('isRunning')) {
- var self = this;
- this.removeObserver('App.router.backgroundOperationsController.serviceTimestamp', this, this.checkZkConfigs);
- setTimeout(function () {
- self.loadConfigs();
- }, App.get('componentsUpdateInterval'));
- }
- },
- /**
- * Load configs
- * @method loadConfigs
- */
- loadConfigs: function (callback) {
- App.ajax.send({
- name: 'config.tags',
- sender: this,
- success: callback ? callback : 'loadConfigsSuccessCallback'
- });
- },
- /**
- * Success callback for load configs request
- * @param {object} data
- * @method adConfigsSuccessCallback
- */
- loadConfigsSuccessCallback: function (data) {
- var urlParams = this.constructConfigUrlParams(data);
- if (urlParams.length > 0) {
- App.ajax.send({
- name: 'reassign.load_configs',
- sender: this,
- data: {
- urlParams: urlParams.join('|')
- },
- success: 'saveZkConfigs'
- });
- return true;
- }
- return false;
- },
- /**
- * construct URL params for query, that load configs
- * @param data {Object}
- * @return {Array}
- */
- constructConfigUrlParams: function (data) {
- var urlParams = [];
- var services = App.Service.find();
- if (App.get('isHaEnabled')) {
- urlParams.push('(type=core-site&tag=' + data.Clusters.desired_configs['core-site'].tag + ')');
- }
- if (services.someProperty('serviceName', 'HBASE')) {
- urlParams.push('(type=hbase-site&tag=' + data.Clusters.desired_configs['hbase-site'].tag + ')');
- }
- if (services.someProperty('serviceName', 'HIVE')) {
- urlParams.push('(type=webhcat-site&tag=' + data.Clusters.desired_configs['webhcat-site'].tag + ')');
- urlParams.push('(type=hive-site&tag=' + data.Clusters.desired_configs['hive-site'].tag + ')');
- }
- if (services.someProperty('serviceName', 'STORM')) {
- urlParams.push('(type=storm-site&tag=' + data.Clusters.desired_configs['storm-site'].tag + ')');
- }
- if ((services.someProperty('serviceName', 'YARN') && App.get('isHadoop22Stack')) || App.get('isRMHaEnabled')) {
- urlParams.push('(type=yarn-site&tag=' + data.Clusters.desired_configs['yarn-site'].tag + ')');
- }
- return urlParams;
- },
- /**
- * save new ZooKeeper configs to server
- * @param {object} data
- * @method saveZkConfigs
- */
- saveZkConfigs: function (data) {
- var configs = {};
- data.items.forEach(function (item) {
- configs[item.type] = item.properties;
- }, this);
- var zks = this.getZkServerHosts();
- var zksWithPort = this.concatZkNames(zks);
- this.setZKConfigs(configs, zksWithPort, zks);
- var groups = [
- {
- 'hive-site': configs['hive-site'],
- 'webhcat-site': configs['webhcat-site']
- },
- {'yarn-site': configs['yarn-site']}
- ];
- this.saveConfigsBatch(groups);
- },
- /**
- *
- * Set new values for some configs (based on available ZooKeeper Servers)
- * @param configs {object}
- * @param zksWithPort {string}
- * @param zks {array}
- * @return {Boolean}
- */
- setZKConfigs: function (configs, zksWithPort, zks) {
- if (typeof configs !== 'object' || !Array.isArray(zks)) return false;
- if (App.get('isHaEnabled')) {
- configs['core-site']['ha.zookeeper.quorum'] = zksWithPort;
- }
- if (configs['hbase-site']) {
- configs['hbase-site']['hbase.zookeeper.quorum'] = zks.join(',');
- }
- if (configs['webhcat-site']) {
- configs['webhcat-site']['templeton.zookeeper.hosts'] = zksWithPort;
- }
- if (configs['hive-site']) {
- configs['hive-site']['hive.cluster.delegation.token.store.zookeeper.connectString'] = zksWithPort;
- }
- if (configs['storm-site']) {
- configs['storm-site']['storm.zookeeper.servers'] = JSON.stringify(zks).replace(/"/g, "'");
- }
- if (App.get('isRMHaEnabled')) {
- configs['yarn-site']['yarn.resourcemanager.zk-address'] = zks.join(',');
- }
- if (App.get('isHadoop22Stack')) {
- if (configs['hive-site']) {
- configs['hive-site']['hive.zookeeper.quorum'] = zksWithPort;
- }
- if (configs['yarn-site']) {
- configs['yarn-site']['hadoop.registry.zk.quorum'] = zksWithPort;
- }
- }
- return true;
- },
- /**
- * concatenate URLs to ZOOKEEPER hosts with port "2181",
- * as value of config divided by comma
- * @param zks {array}
- */
- concatZkNames: function (zks) {
- var zks_with_port = '';
- zks.forEach(function (zk) {
- zks_with_port += zk + ':2181,';
- });
- return zks_with_port.slice(0, -1);
- },
- /**
- * Is deleteHost action id fired
- * @type {bool}
- */
- fromDeleteHost: false,
- /**
- * Is ZooKeeper Server being deleted from host
- * @type {bool}
- */
- fromDeleteZkServer: false,
- /**
- * Get list of hostnames where ZK Server is installed
- * @returns {string[]}
- * @method getZkServerHosts
- */
- getZkServerHosts: function () {
- var zks = App.HostComponent.find().filterProperty('componentName', 'ZOOKEEPER_SERVER').mapProperty('hostName');
- if (this.get('fromDeleteHost') || this.get('fromDeleteZkServer')) {
- this.set('fromDeleteHost', false);
- this.set('fromDeleteZkServer', false);
- return zks.without(this.get('content.hostName'));
- }
- return zks;
- },
- /**
- * Send command to server to install selected host component
- * @param {Object} event
- * @method installComponent
- */
- installComponent: function (event) {
- var self = this;
- var component = event.context;
- var componentName = component.get('componentName');
- var displayName = component.get('displayName');
- return App.ModalPopup.show({
- primary: Em.I18n.t('hosts.host.installComponent.popup.confirm'),
- header: Em.I18n.t('popup.confirmation.commonHeader'),
- installComponentMessage: function () {
- return Em.I18n.t('hosts.host.installComponent.msg').format(displayName);
- }.property(),
- restartNagiosMsg: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.host.addComponent.note').format(displayName))
- }),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/installComponentPopup')
- }),
- onPrimary: function () {
- this.hide();
- App.ajax.send({
- name: 'common.host.host_component.update',
- sender: self,
- data: {
- hostName: self.get('content.hostName'),
- serviceName: component.get('service.serviceName'),
- componentName: componentName,
- component: component,
- context: Em.I18n.t('requestInfo.installHostComponent') + " " + displayName,
- HostRoles: {
- state: 'INSTALLED'
- }
- },
- success: 'installComponentSuccessCallback',
- error: 'ajaxErrorCallback'
- });
- }
- });
- },
- /**
- * Success callback for install component request
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method installComponentSuccessCallback
- */
- installComponentSuccessCallback: function (data, opt, params) {
- console.log('Send request for REINSTALL COMPONENT successfully');
- if (App.get('testMode')) {
- this.mimicWorkStatusChange(params.component, App.HostComponentStatus.installing, App.HostComponentStatus.stopped);
- }
- this.showBackgroundOperationsPopup();
- },
- /**
- * Send command to server to run decommission on DATANODE, TASKTRACKER, NODEMANAGER, REGIONSERVER
- * @param {App.HostComponent} component
- * @method decommission
- */
- decommission: function (component) {
- var self = this;
- return App.showConfirmationPopup(function () {
- self.runDecommission.call(self, self.get('content.hostName'), component.get('service.serviceName'));
- });
- },
- /**
- * identify correct component to run decommission on them by service name,
- * in result run proper decommission method
- * @param hostName
- * @param svcName
- */
- runDecommission: function (hostName, svcName) {
- switch (svcName) {
- case 'HDFS':
- this.doDecommission(hostName, svcName, "NAMENODE", "DATANODE");
- break;
- case 'YARN':
- this.doDecommission(hostName, svcName, "RESOURCEMANAGER", "NODEMANAGER");
- break;
- case 'HBASE':
- this.warnBeforeDecommission(hostName);
- }
- },
- /**
- * Send command to server to run recommission on DATANODE, TASKTRACKER, NODEMANAGER
- * @param {App.HostComponent} component
- * @method recommission
- */
- recommission: function (component) {
- var self = this;
- return App.showConfirmationPopup(function () {
- self.runRecommission.call(self, self.get('content.hostName'), component.get('service.serviceName'));
- });
- },
- /**
- * identify correct component to run recommission on them by service name,
- * in result run proper recommission method
- * @param hostName
- * @param svcName
- */
- runRecommission: function (hostName, svcName) {
- switch (svcName) {
- case 'HDFS':
- this.doRecommissionAndStart(hostName, svcName, "NAMENODE", "DATANODE");
- break;
- case 'YARN':
- this.doRecommissionAndStart(hostName, svcName, "RESOURCEMANAGER", "NODEMANAGER");
- break;
- case 'HBASE':
- this.doRecommissionAndStart(hostName, svcName, "HBASE_MASTER", "HBASE_REGIONSERVER");
- }
- this.showBackgroundOperationsPopup();
- },
- /**
- * Performs Decommission (for DN, TT and NM)
- * @param {string} hostName
- * @param {string} serviceName
- * @param {string} componentName
- * @param {string} slaveType
- * @method doDecommission
- */
- doDecommission: function (hostName, serviceName, componentName, slaveType) {
- var contextNameString = 'hosts.host.' + slaveType.toLowerCase() + '.decommission';
- var context = Em.I18n.t(contextNameString);
- App.ajax.send({
- name: 'host.host_component.decommission_slave',
- sender: this,
- data: {
- context: context,
- command: 'DECOMMISSION',
- hostName: hostName,
- serviceName: serviceName,
- componentName: componentName,
- slaveType: slaveType
- },
- success: 'decommissionSuccessCallback',
- error: 'decommissionErrorCallback'
- });
- },
- /**
- * check is hbase regionserver in mm. If so - run decommission
- * otherwise shows warning
- * @method warnBeforeDecommission
- * @param {string} hostNames - list of host when run from bulk operations or current host
- */
- warnBeforeDecommission: function (hostNames) {
- if (this.get('content.hostComponents').findProperty('componentName', 'HBASE_REGIONSERVER').get('passiveState') == "OFF") {
- this.showHbaseActiveWarning();
- } else {
- this.checkRegionServerState(hostNames);
- }
- },
- /**
- * send call to check is this regionserver last in cluster which has desired_admin_state property "INSERVICE"
- * @method checkRegionServerState
- * @param hostNames
- */
- checkRegionServerState: function (hostNames) {
- return App.ajax.send({
- name: 'host.region_servers.in_inservice',
- sender: this,
- data: {
- hostNames: hostNames
- },
- success: 'checkRegionServerStateSuccessCallback'
- });
- },
- /**
- * check is this regionserver last in cluster which has desired_admin_state property "INSERVICE"
- * @method checkRegionServerStateSuccessCallback
- * @param data
- * @param opt
- * @param params
- */
- checkRegionServerStateSuccessCallback: function (data, opt, params) {
- var hostArray = params.hostNames.split(",");
- var decommissionPossible = (data.items.mapProperty('HostRoles.host_name').filter(function (hostName) {
- return !hostArray.contains(hostName);
- }, this).length >= 1);
- if (decommissionPossible) {
- this.doDecommissionRegionServer(params.hostNames, "HBASE", "HBASE_MASTER", "HBASE_REGIONSERVER");
- } else {
- this.showRegionServerWarning();
- }
- },
- /**
- * show warning that regionserver is last in cluster which has desired_admin_state property "INSERVICE"
- * @method showRegionServerWarning
- * @param hostNames
- */
- showRegionServerWarning: function () {
- return App.ModalPopup.show({
- header: Em.I18n.t('common.warning'),
- message: Em.I18n.t('hosts.host.hbase_regionserver.decommission.warning'),
- bodyClass: Ember.View.extend({
- template: Em.Handlebars.compile('<div class="alert alert-warning">{{message}}</div>')
- }),
- secondary: false
- });
- },
- /**
- * shows warning: put hbase regionserver in passive state
- * @method showHbaseActiveWarning
- * @return {App.ModalPopup}
- */
- showHbaseActiveWarning: function () {
- return App.ModalPopup.show({
- header: Em.I18n.t('common.warning'),
- message: function () {
- return Em.I18n.t('hostPopup.recommendation.beforeDecommission').format(App.format.components["HBASE_REGIONSERVER"]);
- }.property(),
- bodyClass: Ember.View.extend({
- template: Em.Handlebars.compile('<div class="alert alert-warning">{{message}}</div>')
- }),
- secondary: false
- });
- },
- /**
- * Performs Decommission (for RegionServer)
- * @method doDecommissionRegionServer
- * @param {string} hostNames - list of host when run from bulk operations or current host
- * @param {string} serviceName - serviceName
- * @param {string} componentName - master compoent name
- * @param {string} slaveType - slave component name
- */
- doDecommissionRegionServer: function (hostNames, serviceName, componentName, slaveType) {
- var batches = [
- {
- "order_id": 1,
- "type": "POST",
- "uri": App.get('apiPrefix') + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo": {
- "RequestInfo": {
- "context": Em.I18n.t('hosts.host.regionserver.decommission.batch1'),
- "command": "DECOMMISSION",
- "exclusive" :"true",
- "parameters": {
- "slave_type": slaveType,
- "excluded_hosts": hostNames
- },
- 'operation_level': {
- level: "HOST_COMPONENT",
- cluster_name: App.get('clusterName'),
- host_name: hostNames,
- service_name: serviceName
- }
- },
- "Requests/resource_filters": [
- {"service_name": serviceName, "component_name": componentName}
- ]
- }
- }];
- var id = 2;
- var hAray = hostNames.split(",");
- for (var i = 0; i < hAray.length; i++) {
- batches.push({
- "order_id": id,
- "type": "PUT",
- "uri": App.get('apiPrefix') + "/clusters/" + App.get('clusterName') + "/hosts/" + hAray[i] + "/host_components/" + slaveType,
- "RequestBodyInfo": {
- "RequestInfo": {
- context: Em.I18n.t('hosts.host.regionserver.decommission.batch2'),
- exclusive: true,
- operation_level: {
- level: "HOST_COMPONENT",
- cluster_name: App.get('clusterName'),
- host_name: hostNames,
- service_name: serviceName || null
- }
- },
- "Body": {
- HostRoles: {
- state: "INSTALLED"
- }
- }
- }
- });
- id++;
- }
- batches.push({
- "order_id": id,
- "type": "POST",
- "uri": App.get('apiPrefix') + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo": {
- "RequestInfo": {
- "context": Em.I18n.t('hosts.host.regionserver.decommission.batch3'),
- "command": "DECOMMISSION",
- "service_name": serviceName,
- "component_name": componentName,
- "parameters": {
- "slave_type": slaveType,
- "excluded_hosts": hostNames,
- "mark_draining_only": true
- },
- 'operation_level': {
- level: "HOST_COMPONENT",
- cluster_name: App.get('clusterName'),
- host_name: hostNames,
- service_name: serviceName
- }
- },
- "Requests/resource_filters": [
- {"service_name": serviceName, "component_name": componentName}
- ]
- }
- });
- App.ajax.send({
- name: 'host.host_component.recommission_and_restart',
- sender: this,
- data: {
- intervalTimeSeconds: 1,
- tolerateSize: 0,
- batches: batches
- },
- success: 'decommissionSuccessCallback',
- error: 'decommissionErrorCallback'
- });
- },
- /**
- * Error callback for decommission requests
- * @param {object} request
- * @param {object} ajaxOptions
- * @param {string} error
- * @method decommissionErrorCallback
- */
- decommissionErrorCallback: function (request, ajaxOptions, error) {
- console.log('ERROR: ' + error);
- },
- /**
- * Success ajax response for Recommission/Decommission slaves
- * @param {object} data
- * @method decommissionSuccessCallback
- * @return {Boolean}
- */
- decommissionSuccessCallback: function (data) {
- if (data && (data.Requests || data.resources[0].RequestSchedule)) {
- this.showBackgroundOperationsPopup();
- return true;
- } else {
- console.log('cannot get request id from ', data);
- return false;
- }
- },
- /**
- * Performs Recommission and Start
- * @param {string} hostNames
- * @param {string} serviceName
- * @param {string} componentName
- * @param {string} slaveType
- * @method doRecommissionAndStart
- */
- doRecommissionAndStart: function (hostNames, serviceName, componentName, slaveType) {
- var contextNameString_1 = 'hosts.host.' + slaveType.toLowerCase() + '.recommission';
- var context_1 = Em.I18n.t(contextNameString_1);
- var contextNameString_2 = 'requestInfo.startHostComponent.' + slaveType.toLowerCase();
- var startContext = Em.I18n.t(contextNameString_2);
- var params = {
- "slave_type": slaveType,
- "included_hosts": hostNames
- };
- if (serviceName == "HBASE") {
- params.mark_draining_only = true;
- }
- var batches = [
- {
- "order_id": 1,
- "type": "POST",
- "uri": App.apiPrefix + "/clusters/" + App.get('clusterName') + "/requests",
- "RequestBodyInfo": {
- "RequestInfo": {
- "context": context_1,
- "command": "DECOMMISSION",
- "exclusive":"true",
- "parameters": params,
- 'operation_level': {
- level: "HOST_COMPONENT",
- cluster_name: App.get('clusterName'),
- host_name: hostNames,
- service_name: serviceName
- }
- },
- "Requests/resource_filters": [
- {"service_name": serviceName, "component_name": componentName}
- ]
- }
- }];
- var id = 2;
- var hAray = hostNames.split(",");
- for (var i = 0; i < hAray.length; i++) {
- batches.push( {
- "order_id": id,
- "type": "PUT",
- "uri": App.get('apiPrefix') + "/clusters/" + App.get('clusterName') + "/hosts/" + hAray[i] + "/host_components/" + slaveType,
- "RequestBodyInfo": {
- "RequestInfo": {
- context: startContext,
- operation_level: {
- level: "HOST_COMPONENT",
- cluster_name: App.get('clusterName'),
- host_name: hostNames,
- service_name: serviceName || null
- }
- },
- "Body": {
- HostRoles: {
- state: "STARTED"
- }
- }
- }
- });
- id++;
- }
- App.ajax.send({
- name: 'host.host_component.recommission_and_restart',
- sender: this,
- data: {
- intervalTimeSeconds: 1,
- tolerateSize: 1,
- batches: batches
- },
- success: 'decommissionSuccessCallback',
- error: 'decommissionErrorCallback'
- });
- },
- /**
- * Handler for host-menu items actions
- * @param {object} option
- * @method doAction
- */
- doAction: function (option) {
- switch (option.context.action) {
- case "deleteHost":
- this.validateAndDeleteHost();
- break;
- case "startAllComponents":
- if (!this.get('content.isNotHeartBeating')) this.doStartAllComponents();
- break;
- case "stopAllComponents":
- if (!this.get('content.isNotHeartBeating')) this.doStopAllComponents();
- break;
- case "restartAllComponents":
- if (!this.get('content.isNotHeartBeating')) this.doRestartAllComponents();
- break;
- case "onOffPassiveModeForHost":
- this.onOffPassiveModeForHost(option.context);
- break;
- }
- },
- /**
- * Turn On/Off Passive Mode for host
- * @param {object} context
- * @method onOffPassiveModeForHost
- */
- onOffPassiveModeForHost: function (context) {
- var state = context.active ? 'ON' : 'OFF';
- var self = this;
- var message = Em.I18n.t('hosts.host.details.for.postfix').format(context.label);
- return App.showConfirmationPopup(function () {
- self.hostPassiveModeRequest(state, message);
- },
- Em.I18n.t('hosts.passiveMode.popup').format(context.active ? 'On' : 'Off', this.get('content.hostName'))
- );
- },
- /**
- * Send request to get passive state for host
- * @param {string} state
- * @param {string} message
- * @method hostPassiveModeRequest
- */
- hostPassiveModeRequest: function (state, message) {
- App.ajax.send({
- name: 'bulk_request.hosts.passive_state',
- sender: this,
- data: {
- hostNames: this.get('content.hostName'),
- passive_state: state,
- requestInfo: message
- },
- success: 'updateHost'
- });
- },
- /**
- * Success callback for receiving host passive state
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method updateHost
- */
- updateHost: function (data, opt, params) {
- this.set('content.passiveState', params.passive_state);
- batchUtils.infoPassiveState(params.passive_state);
- },
- /**
- * Send request to get passive state for hostComponent
- * @param {object} component - hostComponentn object
- * @param {string} state
- * @param {string} message
- * @method hostPassiveModeRequest
- */
- updateComponentPassiveState: function (component, state, message) {
- App.ajax.send({
- name: 'common.host.host_component.passive',
- sender: this,
- data: {
- hostName: this.get('content.hostName'),
- componentName: component.get('componentName'),
- component: component,
- passive_state: state,
- context: message
- },
- success: 'updateHostComponent'
- });
- },
- /**
- * Success callback for receiving hostComponent passive state
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- * @method updateHost
- */
- updateHostComponent: function (data, opt, params) {
- params.component.set('passiveState', params.passive_state);
- batchUtils.infoPassiveState(params.passive_state);
- },
- /**
- * Show confirmation popup for action "start all components"
- * @method doStartAllComponents
- */
- doStartAllComponents: function () {
- var self = this;
- var components = this.get('serviceNonClientActiveComponents');
- var componentsLength = Em.isNone(components) ? 0 : components.get('length');
- if (componentsLength > 0) {
- return App.showConfirmationPopup(function () {
- self.sendComponentCommand(components, Em.I18n.t('hosts.host.maintainance.startAllComponents.context'), App.HostComponentStatus.started);
- });
- }
- },
- /**
- * Show confirmation popup for action "stop all components"
- * @method doStopAllComponents
- */
- doStopAllComponents: function () {
- var self = this;
- var components = this.get('serviceNonClientActiveComponents');
- var componentsLength = Em.isNone(components) ? 0 : components.get('length');
- if (componentsLength > 0) {
- return App.showConfirmationPopup(function () {
- self.sendComponentCommand(components, Em.I18n.t('hosts.host.maintainance.stopAllComponents.context'), App.HostComponentStatus.stopped);
- });
- }
- },
- /**
- * Show confirmation popup for action "restart all components"
- * @method doRestartAllComponents
- */
- doRestartAllComponents: function () {
- var self = this;
- var components = this.get('serviceActiveComponents');
- var componentsLength = Em.isNone(components) ? 0 : components.get('length');
- if (componentsLength > 0) {
- return App.showConfirmationPopup(function () {
- batchUtils.restartHostComponents(components, Em.I18n.t('rollingrestart.context.allOnSelectedHost').format(self.get('content.hostName')), "HOST");
- });
- }
- },
- /**
- * get info about host-components, exactly:
- * - host-components grouped by status, features
- * - flag, that indicate whether ZooKeeper Server is installed
- * @return {Object}
- */
- getHostComponentsInfo: function () {
- var componentsOnHost = this.get('content.hostComponents');
- var allComponents = App.HostComponent.find();
- var stoppedStates = [App.HostComponentStatus.stopped,
- App.HostComponentStatus.install_failed,
- App.HostComponentStatus.upgrade_failed,
- App.HostComponentStatus.init,
- App.HostComponentStatus.unknown];
- var container = {
- zkServerInstalled: false,
- lastComponents: [],
- masterComponents: [],
- runningComponents: [],
- notDecommissionedComponents: [],
- nonDeletableComponents: [],
- unknownComponents: []
- };
- if (componentsOnHost && componentsOnHost.get('length') > 0) {
- componentsOnHost.forEach(function (cInstance) {
- if (cInstance.get('componentName') === 'ZOOKEEPER_SERVER') {
- container.zkServerInstalled = true;
- }
- if (allComponents.filterProperty('componentName', cInstance.get('componentName')).get('length') === 1) {
- container.lastComponents.push(cInstance.get('displayName'));
- }
- var workStatus = cInstance.get('workStatus');
- if (cInstance.get('isMaster') && !cInstance.get('isDeletable')) {
- container.masterComponents.push(cInstance.get('displayName'));
- }
- if (stoppedStates.indexOf(workStatus) < 0) {
- container.runningComponents.push(cInstance.get('displayName'));
- }
- if (!cInstance.get('isDeletable')) {
- container.nonDeletableComponents.push(cInstance.get('displayName'));
- }
- if (workStatus === App.HostComponentStatus.unknown) {
- container.unknownComponents.push(cInstance.get('displayName'));
- }
- if (cInstance.get('adminState') === 'INSERVICE') {
- container.notDecommissionedComponents.push(cInstance.get('displayName'));
- }
- });
- }
- return container;
- },
- /**
- * Deletion of hosts not supported for this version
- * @method validateAndDeleteHost
- */
- validateAndDeleteHost: function () {
- var container = this.getHostComponentsInfo();
- if (container.masterComponents.length > 0) {
- this.raiseDeleteComponentsError(container.masterComponents, 'masterList');
- return;
- } else if (container.nonDeletableComponents.length > 0) {
- this.raiseDeleteComponentsError(container.nonDeletableComponents, 'nonDeletableList');
- return;
- } else if (container.runningComponents.length + container.notDecommissionedComponents.length > 0) {
- this.raiseDeleteComponentsError(container.runningComponents, 'runningList');
- return;
- }
- if (container.zkServerInstalled) {
- var self = this;
- return App.showConfirmationPopup(function () {
- self.confirmDeleteHost(container.unknownComponents, container.lastComponents);
- }, Em.I18n.t('hosts.host.addComponent.deleteHostWithZooKeeper'));
- } else {
- this.confirmDeleteHost(container.unknownComponents, container.lastComponents);
- }
- },
- /**
- * Show popup with info about reasons why host can't be deleted
- * @param {Array} components
- * @param {string} type
- * @method raiseDeleteComponentsError
- */
- raiseDeleteComponentsError: function (components, type) {
- App.ModalPopup.show({
- header: Em.I18n.t('hosts.cant.do.popup.title'),
- type: type,
- showBodyEnd: function () {
- return this.get('type') === 'runningList' || this.get('type') === 'masterList';
- }.property(),
- components: components,
- componentsStr: function () {
- return this.get('components').join(", ");
- }.property(),
- componentsBody: function () {
- var componentsLength = this.get('components.length');
- return componentsLength ? Em.I18n.t('hosts.cant.do.popup.' + type + '.body').format(this.get('components').length) : '';
- }.property(),
- componentsBodyEnd: function () {
- if (this.get('showBodyEnd')) {
- return Em.I18n.t('hosts.cant.do.popup.' + type + '.body.end');
- }
- return '';
- }.property(),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/raiseDeleteComponentErrorPopup')
- }),
- secondary: null
- });
- },
- /**
- * Show confirmation popup to delete host
- * @param {string[]} unknownComponents
- * @param {string[]} lastComponents
- * @method confirmDeleteHost
- */
- confirmDeleteHost: function (unknownComponents, lastComponents) {
- var self = this;
- return App.ModalPopup.show({
- header: Em.I18n.t('hosts.delete.popup.title'),
- deletePopupBody: function () {
- return Em.I18n.t('hosts.delete.popup.body').format(self.get('content.publicHostName'));
- }.property(),
- lastComponent: function () {
- if (lastComponents && lastComponents.length) {
- this.set('isChecked', false);
- return true;
- } else {
- this.set('isChecked', true);
- return false;
- }
- }.property(),
- disablePrimary: function () {
- return !this.get('isChecked');
- }.property('isChecked'),
- isChecked: false,
- lastComponentError: Em.View.extend({
- template: Em.Handlebars.compile(Em.I18n.t('hosts.delete.popup.body.msg4').format(lastComponents))
- }),
- unknownComponents: function () {
- if (unknownComponents && unknownComponents.length) {
- return unknownComponents.join(", ");
- }
- return '';
- }.property(),
- bodyClass: Em.View.extend({
- templateName: require('templates/main/host/details/doDeleteHostPopup')
- }),
- onPrimary: function () {
- var popup = this;
- var completeCallback = function () {
- popup.hide();
- };
- self.doDeleteHost(completeCallback);
- }
- });
- },
- /**
- * send DELETE calls to components of host and after delete host itself
- * @param completeCallback
- * @method doDeleteHost
- */
- doDeleteHost: function (completeCallback) {
- this.set('fromDeleteHost', true);
- var allComponents = this.get('content.hostComponents');
- var deleteError = null;
- var dfd = $.Deferred();
- var self = this;
- if (allComponents.get('length') > 0) {
- allComponents.forEach(function (component, index) {
- var length = allComponents.get('length');
- if (!deleteError) {
- this._doDeleteHostComponent(component, function () {
- deleteError = self.get('_deletedHostComponentResult');
- if (index == length - 1) {
- dfd.resolve();
- }
- });
- }
- }, this);
- } else {
- dfd.resolve();
- }
- dfd.done(function () {
- if (!deleteError) {
- App.ajax.send({
- name: 'common.delete.host',
- sender: self,
- data: {
- hostName: self.get('content.hostName')
- },
- callback: completeCallback,
- success: 'deleteHostSuccessCallback',
- error: 'deleteHostErrorCallback'
- });
- }
- else {
- completeCallback();
- deleteError.xhr.responseText = "{\"message\": \"" + deleteError.xhr.statusText + "\"}";
- App.ajax.defaultErrorHandler(deleteError.xhr, deleteError.url, deleteError.method, deleteError.xhr.status);
- }
- });
- },
- deleteHostSuccessCallback: function (data) {
- var self = this;
- App.router.get('updateController').updateHost(function () {
- self.loadConfigs('loadHiveConfigs');
- self.loadConfigs();
- App.router.transitionTo('hosts.index');
- });
- App.router.get('clusterController').getAllHostNames();
- },
- deleteHostErrorCallback: function (xhr, textStatus, errorThrown, opt) {
- console.log('Error deleting host.');
- console.log(textStatus);
- console.log(errorThrown);
- xhr.responseText = "{\"message\": \"" + xhr.statusText + "\"}";
- this.loadConfigs();
- App.ajax.defaultErrorHandler(xhr, opt.url, 'DELETE', xhr.status);
- },
- /**
- * Send command to server to restart all host components with stale configs
- * @method restartAllStaleConfigComponents
- */
- restartAllStaleConfigComponents: function () {
- var self = this;
- return App.showConfirmationPopup(function () {
- var staleComponents = self.get('content.componentsWithStaleConfigs');
- batchUtils.restartHostComponents(staleComponents, Em.I18n.t('rollingrestart.context.allWithStaleConfigsOnSelectedHost').format(self.get('content.hostName')), "HOST");
- });
- },
- /**
- * open Reassign Master Wizard with selected component
- * @param {object} event
- * @method moveComponent
- */
- moveComponent: function (event) {
- return App.showConfirmationPopup(function () {
- var component = event.context;
- var reassignMasterController = App.router.get('reassignMasterController');
- reassignMasterController.saveComponentToReassign(component);
- reassignMasterController.getSecurityStatus();
- reassignMasterController.setCurrentStep('1');
- App.router.transitionTo('reassign');
- });
- },
- /**
- * Restart clients host components to apply config changes
- * @param {object} event
- * @method refreshConfigs
- */
- refreshConfigs: function (event) {
- var self = this;
- var components = event.context.filter(function (component) {
- return component.get('staleConfigs');
- });
- if (components.get('length') > 0) {
- return App.showConfirmationPopup(function () {
- batchUtils.restartHostComponents(components, Em.I18n.t('rollingrestart.context.allClientsOnSelectedHost').format(self.get('content.hostName')), "HOST");
- });
- }
- },
- toggleMaintenanceMode: function (event) {
- var self = this;
- var state = event.context.get('passiveState') === "ON" ? "OFF" : "ON";
- var message = Em.I18n.t('passiveState.turn' + state.toCapital() + 'For').format(event.context.get('displayName'));
- return App.showConfirmationPopup(function () {
- self.updateComponentPassiveState(event.context, state, message);
- });
- },
- downloadClientConfigs: function (event) {
- componentsUtils.downloadClientConfigs.call(this, {
- hostName: event.context.get('hostName'),
- componentName: event.context.get('componentName'),
- displayName: event.context.get('displayName')
- });
- },
- reinstallClients: function(event) {
- var clientsToInstall = event.context.filter(function(component) {
- return ['INIT', 'INSTALL_FAILED'].contains(component.get('workStatus'));
- });
- if (!clientsToInstall.length) return;
- this.sendComponentCommand(clientsToInstall, Em.I18n.t('host.host.details.installClients'), 'INSTALLED');
- },
- /**
- * On click handler for custom command from items menu
- * @param context
- */
- executeCustomCommand: function(event) {
- var controller = this;
- var context = event.context;
- return App.showConfirmationPopup(function() {
- App.ajax.send({
- name : 'service.item.executeCustomCommand',
- sender: controller,
- data : {
- command : context.command,
- context : Em.I18n.t('services.service.actions.run.executeCustomCommand.context').format(context.command),
- hosts : context.hosts,
- serviceName : context.service,
- componentName : context.component
- },
- success : 'executeCustomCommandSuccessCallback',
- error : 'executeCustomCommandErrorCallback'
- });
- });
- },
- executeCustomCommandSuccessCallback : function(data, ajaxOptions, params) {
- if (data.Requests.id) {
- App.router.get('backgroundOperationsController').showPopup();
- } else {
- console.warn('Error during execution of ' + params.command + ' custom command on' + params.componentName);
- }
- },
- executeCustomCommandErrorCallback : function(data) {
- var error = Em.I18n.t('services.service.actions.run.executeCustomCommand.error');
- if(data && data.responseText){
- try {
- var json = $.parseJSON(data.responseText);
- error += json.message;
- } catch (err) {}
- }
- App.showAlertPopup(Em.I18n.t('services.service.actions.run.executeCustomCommand.error'), error);
- console.warn('Error during executing custom command');
- },
- /**
- * install HostStackVersion on host
- * @param {object} event
- */
- installVersion: function (event) {
- App.ajax.send({
- name: 'host.stack_versions.install',
- sender: this,
- data: {
- hostName: this.get('content.hostName'),
- version: event.context
- },
- success: 'installVersionSuccessCallback'
- });
- },
- /**
- * success callback of <code>installVersion</code>
- * on success set version status to INSTALLING
- * @param {object} data
- * @param {object} opt
- * @param {object} params
- */
- installVersionSuccessCallback: function (data, opt, params) {
- App.HostStackVersion.find(params.version.get('id')).set('status', 'INSTALLING');
- }
- });
|