AMBARI-7723. configure hive token store to use zookeeper based token store (BE changes) (dlysnichenko)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/7466e14a Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/7466e14a Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/7466e14a Branch: refs/heads/branch-1.7.0 Commit: 7466e14ac9558eceef6e3a6359dfe1afa14ea622 Parents: 942073f Author: Lisnichenko Dmitro <[email protected]> Authored: Fri Oct 10 15:55:22 2014 +0300 Committer: Lisnichenko Dmitro <[email protected]> Committed: Fri Oct 10 15:56:23 2014 +0300 ---------------------------------------------------------------------- .../HDP/2.0.6/services/HIVE/configuration/hive-site.xml | 12 ++++++++++++ 1 file changed, 12 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/7466e14a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/configuration/hive-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/configuration/hive-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/configuration/hive-site.xml index 452c750..2cd5a47 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/configuration/hive-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/configuration/hive-site.xml @@ -333,5 +333,17 @@ limitations under the License. supporting dynamic service discovery. </description> </property> + + <property> + <name>hive.cluster.delegation.token.store.class</name> + <value>org.apache.hadoop.hive.thrift.ZooKeeperTokenStore</value> + <description>The delegation token store implementation class.</description> + </property> + + <property> + <name>hive.cluster.delegation.token.store.zookeeper.connectString</name> + <value>localhost:2181</value> + <description>The ZooKeeper token store connect string.</description> + </property> </configuration>
