Jayush Luniya created AMBARI-12112:
--------------------------------------
Summary: Add FALCON service stalls during "Add Service Wizard"
Key: AMBARI-12112
URL: https://issues.apache.org/jira/browse/AMBARI-12112
Project: Ambari
Issue Type: Bug
Components: ambari-web
Affects Versions: 2.1.0
Reporter: Jayush Luniya
Assignee: Jayush Luniya
Priority: Critical
Fix For: 2.1.0
1. Install latest Ambari bits
2. Deploy HDP 2.2.0.0-2041 cluster with HDFS, ZOOKEEPER, YARN, OOZIE services
3. Add FALCON service
4. Notice deployment stalls during "Add Service Wizard" .
5. The installAdditionalClients gets called but installSelectedServices in
AddServiceController never got calle. So only "Install Oozie Client" request
was scheduled. "Install Services" request to install Falcon Server and Falcon
Client was never requested.
{noformat}
/**
* main method for installing additional clients and services
* @param {function} callback
* @method installServices
*/
installServices: function (callback) {
var self = this;
this.set('content.cluster.oldRequestsId', []);
this.installAdditionalClients().done(function () {
self.installSelectedServices(callback);
});
},
{noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)