Repository: ambari Updated Branches: refs/heads/branch-2.5 cd6f14872 -> df0ef09d6 refs/heads/trunk 167e111bd -> 96009189c
AMBARI-20439 Zeppelin: service def not using the correct value from hive.server2.support.dynamic.service.discovery for Hive interpreter config (r-kamath) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/df0ef09d Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/df0ef09d Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/df0ef09d Branch: refs/heads/branch-2.5 Commit: df0ef09d692bb23986c1bd3c892addb30b4de9f5 Parents: cd6f148 Author: Renjith Kamath <[email protected]> Authored: Thu Mar 16 15:07:01 2017 +0530 Committer: Renjith Kamath <[email protected]> Committed: Thu Mar 16 15:07:01 2017 +0530 ---------------------------------------------------------------------- .../common-services/ZEPPELIN/0.6.0.2.5/package/scripts/params.py | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/df0ef09d/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/params.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/params.py b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/params.py index fdc96db..9dfdea6 100644 --- a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/params.py +++ b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/params.py @@ -145,6 +145,8 @@ if 'hive_server_interactive_hosts' in master_configs and len(master_configs['hiv hive_server_interactive_hosts = str(master_configs['hive_server_interactive_hosts'][0]) hive_interactive_zookeeper_namespace = config['configurations']['hive-interactive-site']['hive.server2.zookeeper.namespace'] hive_server_port = str(config['configurations']['hive-site']['hive.server2.thrift.http.port']) + hive_zookeeper_quorum = config['configurations']['hive-site']['hive.zookeeper.quorum'] + hive_server2_support_dynamic_service_discovery = config['configurations']['hive-site']['hive.server2.support.dynamic.service.discovery'] # detect hbase details if installed zookeeper_znode_parent = None
