AMBARI-7959. Change Ambari Hive Runtime configs for Champlain (dlysnichenko)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/6b2a91c1 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/6b2a91c1 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/6b2a91c1 Branch: refs/heads/branch-1.7.0 Commit: 6b2a91c11a7df236ccf7a25d0d091ae55cfdb9d2 Parents: b345ead Author: Lisnichenko Dmitro <[email protected]> Authored: Sun Oct 26 20:26:42 2014 +0200 Committer: Lisnichenko Dmitro <[email protected]> Committed: Sun Oct 26 20:27:26 2014 +0200 ---------------------------------------------------------------------- .../services/HIVE/configuration/hive-site.xml | 51 ++++++++++++++++++++ 1 file changed, 51 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/6b2a91c1/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-site.xml index 1c44b6a..9acce78 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.2/services/HIVE/configuration/hive-site.xml @@ -20,6 +20,57 @@ limitations under the License. <configuration supports_final="true"> <property> + <name>hive.cbo.enable</name> + <value>true</value> + <description>Flag to control enabling Cost Based Optimizations using Calcite framework.</description> + </property> + + <property> + <name>hive.zookeeper.quorum</name> + <value></value> + <description>ZooKeeper servers to talk to.</description> + </property> + + <property> + <name>hive.metastore.failure.retries</name> + <value>5</value> + <description>Number of retries of metastore client in case of a failure.</description> + </property> + + <property> + <name>hive.metastore.client.connect.retry.delay</name> + <value>5s</value> + <description>The delay in seconds between two consecutive metastore client retries</description> + </property> + + <property> + <name>hive.metastore.client.socket.timeout</name> + <value>1800s</value> + <description>MetaStore Client socket timeout in seconds</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> + + <property> + <name>hive.mapjoin.bucket.cache.size</name> + <value>10000</value> + <deleted>true</deleted> + <description> + Renamed to hive.smbjoin.cache.rows. + </description> + </property> + + <property> <name>hive.security.authorization.manager</name> <value>org.apache.hadoop.hive.ql.security.authorization.plugin.sqlstd.SQLStdConfOnlyAuthorizerFactory</value> <description>the hive client authorization manager class name.
