AMBARI-20643: Remove configuring JDBC dependencies that are getting configured for Zeppelin interpreter as it causes more confusion than the resolution. (Prabhjyot Singh via r-kamath)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/34c428bf Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/34c428bf Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/34c428bf Branch: refs/heads/branch-3.0-perf Commit: 34c428bf1a5421e4cc99b59610a016b272f81696 Parents: 89feb0a Author: Renjith Kamath <[email protected]> Authored: Fri Mar 31 20:07:09 2017 +0530 Committer: Andrew Onishuk <[email protected]> Committed: Sat Apr 1 10:07:36 2017 +0300 ---------------------------------------------------------------------- .../ZEPPELIN/0.6.0.2.5/package/scripts/master.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/34c428bf/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/master.py ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/master.py b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/master.py index 2b21f8f..fbf2246 100644 --- a/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/master.py +++ b/ambari-server/src/main/resources/common-services/ZEPPELIN/0.6.0.2.5/package/scripts/master.py @@ -371,13 +371,6 @@ class Master(Script): params.hive_server_interactive_hosts + \ ':' + params.hive_server_port - if params.hive_server_host or params.hive_server_interactive_hosts: - interpreter['dependencies'].append( - {"groupArtifactVersion": "org.apache.hive:hive-jdbc:2.0.1", "local": "false"}) - interpreter['dependencies'].append( - {"groupArtifactVersion": "org.apache.hadoop:hadoop-common:2.7.2", "local": "false"}) - interpreter['dependencies'].append( - {"groupArtifactVersion": "org.apache.hive.shims:hive-shims-0.23:2.1.0", "local": "false"}) if params.zookeeper_znode_parent \ and params.hbase_zookeeper_quorum: @@ -388,8 +381,7 @@ class Master(Script): interpreter['properties']['phoenix.url'] = "jdbc:phoenix:" + \ params.hbase_zookeeper_quorum + ':' + \ params.zookeeper_znode_parent - interpreter['dependencies'].append( - {"groupArtifactVersion": "org.apache.phoenix:phoenix-core:4.7.0-HBase-1.1", "local": "false"}) + elif interpreter['group'] == 'livy' and interpreter['name'] == 'livy': if params.livy_livyserver_host: interpreter['properties']['zeppelin.livy.url'] = "http://" + params.livy_livyserver_host + \
