AMBARI-20245. Setup tez ats related parameters (smohanty)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/1e8b7748 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/1e8b7748 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/1e8b7748 Branch: refs/heads/branch-feature-AMBARI-12556 Commit: 1e8b7748323a43abd4e743dedd2708ceecb40386 Parents: 74233a1 Author: Sumit Mohanty <[email protected]> Authored: Wed Mar 1 16:44:45 2017 -0800 Committer: Sumit Mohanty <[email protected]> Committed: Wed Mar 1 16:57:35 2017 -0800 ---------------------------------------------------------------------- ambari-server/pom.xml | 1 + .../HIVE/configuration/tez-interactive-site.xml | 15 +++++++++++++-- .../HDP/2.6/services/TEZ/configuration/tez-site.xml | 6 ++++++ 3 files changed, 20 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/1e8b7748/ambari-server/pom.xml ---------------------------------------------------------------------- diff --git a/ambari-server/pom.xml b/ambari-server/pom.xml index a3e945c..f0c73e4 100644 --- a/ambari-server/pom.xml +++ b/ambari-server/pom.xml @@ -308,6 +308,7 @@ <exclude>src/main/resources/stacks/BIGTOP/0.8/services/HDFS/package/scripts/balancer-emulator/balancer-err.log</exclude> <exclude>src/main/resources/stacks/PHD/3.0.0.0/services/HDFS/package/scripts/balancer-emulator/balancer.log</exclude> <exclude>src/main/resources/stacks/PHD/3.0.0.0/services/HDFS/package/scripts/balancer-emulator/balancer-err.log</exclude> + <exclude>**/SMARTSENSE/**</exclude> <exclude>conf/unix/ca.config</exclude> <exclude>conf/unix/krb5JAASLogin.conf</exclude> <exclude>conf/windows/ca.config</exclude> http://git-wip-us.apache.org/repos/asf/ambari/blob/1e8b7748/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/tez-interactive-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/tez-interactive-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/tez-interactive-site.xml index 3ce5fed..a97f8d4 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/tez-interactive-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.6/services/HIVE/configuration/tez-interactive-site.xml @@ -69,10 +69,21 @@ <property> <name>tez.session.am.dag.submit.timeout.secs</name> <value>1209600</value> - <description>The amoung of time an AM will wait, before killing itself, + <description>The amount of time an AM will wait, before killing itself, if not DAG is submitted. </description> <on-ambari-upgrade add="true"/> </property> - + <property> + <name>tez.history.logging.taskattempt-filters</name> + <value>EXECUTOR_BUSY,EXTERNAL_PREEMPTION</value> + <description>TASK_ATTEMPT events to be ignored.</description> + <on-ambari-upgrade add="false"/> + </property> + <property> + <name>tez.history.logging.timeline.num-dags-per-group</name> + <value>5</value> + <description>Maximum number of dags per group.</description> + <on-ambari-upgrade add="false"/> + </property> </configuration> http://git-wip-us.apache.org/repos/asf/ambari/blob/1e8b7748/ambari-server/src/main/resources/stacks/HDP/2.6/services/TEZ/configuration/tez-site.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.6/services/TEZ/configuration/tez-site.xml b/ambari-server/src/main/resources/stacks/HDP/2.6/services/TEZ/configuration/tez-site.xml index 4bd1a19..393d077 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.6/services/TEZ/configuration/tez-site.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.6/services/TEZ/configuration/tez-site.xml @@ -25,4 +25,10 @@ </description> <on-ambari-upgrade add="false"/> </property> + <property> + <name>tez.history.logging.timeline-cache-plugin.old-num-dags-per-group</name> + <value>5</value> + <description>DAGs per group</description> + <on-ambari-upgrade add="false"/> + </property> </configuration>
