123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /**
- * 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');
- App.HighAvailabilityWizardStep9Controller = App.HighAvailabilityProgressPageController.extend({
- name:"highAvailabilityWizardStep9Controller",
- isHA: true,
- commands: ['startSecondNameNode', 'installZKFC', 'startZKFC', 'reconfigureHBase', 'deleteSNameNode', 'startAllServices'],
- hbaseSiteTag: "",
- initializeTasks: function () {
- this._super();
- if (!App.Service.find().someProperty('serviceName', 'HBASE')) {
- this.get('tasks').splice(this.get('tasks').findProperty('command', 'reconfigureHBase').get('id'), 1);
- }
- },
- startSecondNameNode: function () {
- var hostName = this.get('content.masterComponentHosts').findProperty('isAddNameNode', true).hostName;
- this.updateComponent('NAMENODE', hostName, "HDFS", "Start");
- },
- installZKFC: function () {
- App.ajax.send({
- name: 'admin.high_availability.create_zkfc',
- sender: this,
- success: 'onZKFCCreate',
- error: 'onZKFCCreate'
- });
- },
- onZKFCCreate: function () {
- var hostName = this.get('content.masterComponentHosts').filterProperty('component', 'NAMENODE').mapProperty('hostName');
- this.createComponent('ZKFC', hostName, "HDFS");
- },
- startZKFC: function () {
- var hostName = this.get('content.masterComponentHosts').filterProperty('component', 'NAMENODE').mapProperty('hostName');
- this.updateComponent('ZKFC', hostName, "HDFS", "Start");
- },
- reconfigureHBase: function () {
- var data = this.get('content.serviceConfigProperties');
- var hbaseSiteProperties = data.items.findProperty('type', 'hbase-site').properties;
- App.ajax.send({
- name: 'admin.high_availability.save_configs',
- sender: this,
- data: {
- siteName: 'hbase-site',
- properties: hbaseSiteProperties
- },
- success: 'saveConfigTag',
- error: 'onTaskError'
- });
- },
- saveConfigTag: function () {
- App.clusterStatus.setClusterStatus({
- clusterName: this.get('content.cluster.name'),
- clusterState: 'HIGH_AVAILABILITY_DEPLOY',
- wizardControllerName: this.get('content.controllerName'),
- localdb: App.db.data
- });
- this.onTaskCompleted();
- },
- startAllServices: function () {
- App.ajax.send({
- name: 'common.services.update',
- data: {
- context: "Start all services",
- "ServiceInfo": {
- "state": "STARTED"
- }
- },
- sender: this,
- success: 'startPolling',
- error: 'onTaskError'
- });
- },
- deleteSNameNode: function () {
- var hostName = this.get('content.masterComponentHosts').findProperty('component', 'SECONDARY_NAMENODE').hostName;
- App.ajax.send({
- name: 'common.delete.host_component',
- sender: this,
- data: {
- componentName: 'SECONDARY_NAMENODE',
- hostName: hostName
- },
- success: 'onTaskCompleted',
- error: 'onTaskError'
- });
- }
- });
|