Repository: ambari Updated Branches: refs/heads/trunk 3f37558bc -> f0809e2a3
AMBARI-17699. Update more configs for hive interactive in HDP 2.5 stack (Siddharth Seth via smohanty) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/f0809e2a Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/f0809e2a Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/f0809e2a Branch: refs/heads/trunk Commit: f0809e2a317996a7ccf5110b9b99775448ea6bfe Parents: 3f37558 Author: Sumit Mohanty <[email protected]> Authored: Wed Jul 13 15:43:23 2016 -0700 Committer: Sumit Mohanty <[email protected]> Committed: Wed Jul 13 15:44:16 2016 -0700 ---------------------------------------------------------------------- .../configuration/hive-interactive-site.xml | 41 +++++++++++++++++--- .../HIVE/configuration/tez-interactive-site.xml | 5 +++ 2 files changed, 40 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/f0809e2a/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/hive-interactive-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/hive-interactive-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/hive-interactive-site.xml index 666d752..479fc3c 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/hive-interactive-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/hive-interactive-site.xml @@ -296,6 +296,11 @@ limitations under the License. <on-ambari-upgrade add="true"/> </property> <property> + <name>hive.execution.engine</name> + <value>tez</value> + <on-ambari-upgrade add="true"/> + </property> + <property> <name>hive.execution.mode</name> <value>llap</value> <description>Chooses whether query fragments will run in container or in llap</description> @@ -464,12 +469,6 @@ limitations under the License. <on-ambari-upgrade add="true"/> </property> <property> - <name>hive.llap.daemon.memory.per.instance.mb</name> - <value>250</value> - <description>The total amount of memory to use for the executors inside LLAP (in megabytes).</description> - <on-ambari-upgrade add="true"/> - </property> - <property> <name>hive.llap.daemon.vcpus.per.instance</name> <value>${hive.llap.daemon.num.executors}</value> <description>The total number of vcpus to use for the executors inside LLAP.</description> @@ -643,4 +642,34 @@ limitations under the License. <on-ambari-upgrade add="true"/> </property> + <!-- Disable ACID --> + <property> + <name>hive.txn.manager</name> + <value>org.apache.hadoop.hive.ql.lockmgr.DummyTxnManager</value> + <on-ambari-upgrade add="true"/> + </property> + <property> + <name>hive.support.concurrency</name> + <value>false</value> + <on-ambari-upgrade add="true"/> + </property> + <property> + <name>hive.compactor.initiator.on</name> + <value>false</value> + <on-ambari-upgrade add="true"/> + </property> + <property> + <name>hive.compactor.worker.threads</name> + <value>0</value> + <on-ambari-upgrade add="true"/> + </property> + <property> + <name>hive.exec.dynamic.partition.mode</name> + <value>strict</value> + <on-ambari-upgrade add="true"/> + </property> + <!-- End of Disable ACID --> + + + </configuration> http://git-wip-us.apache.org/repos/asf/ambari/blob/f0809e2a/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/tez-interactive-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/tez-interactive-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/tez-interactive-site.xml index 8d8af19..a503e95 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/tez-interactive-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.5/services/HIVE/configuration/tez-interactive-site.xml @@ -112,4 +112,9 @@ </depends-on> <on-ambari-upgrade add="true"/> </property> + <property> + <name>tez.session.am.dag.submit.timeout.secs</name> + <value>3600</value> + <on-ambari-upgrade add="true"/> + </property> </configuration>
