Repository: hive Updated Branches: refs/heads/master 2a89e83c2 -> d041cc441
HIVE-18213: Tests: YARN Minicluster times out if the disks are >90% full (Gopal V, reviewed by Prasanth Jayachandran) Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/d041cc44 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/d041cc44 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/d041cc44 Branch: refs/heads/master Commit: d041cc441e614e2e9a12645d9775803c6359bfad Parents: 2a89e83 Author: Gopal V <[email protected]> Authored: Mon Dec 4 22:57:09 2017 -0800 Committer: Gopal V <[email protected]> Committed: Mon Dec 4 22:57:09 2017 -0800 ---------------------------------------------------------------------- data/conf/hive-site.xml | 6 ++++++ data/conf/llap/hive-site.xml | 5 +++++ data/conf/spark/yarn-client/hive-site.xml | 5 +++++ data/conf/tez/hive-site.xml | 5 +++++ 4 files changed, 21 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/d041cc44/data/conf/hive-site.xml ---------------------------------------------------------------------- diff --git a/data/conf/hive-site.xml b/data/conf/hive-site.xml index a205b8c..6908bb1 100644 --- a/data/conf/hive-site.xml +++ b/data/conf/hive-site.xml @@ -319,4 +319,10 @@ <value>true</value> </property> + +<property> + <name>yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage</name> + <value>99</value> +</property> + </configuration> http://git-wip-us.apache.org/repos/asf/hive/blob/d041cc44/data/conf/llap/hive-site.xml ---------------------------------------------------------------------- diff --git a/data/conf/llap/hive-site.xml b/data/conf/llap/hive-site.xml index 8cd5144..cdda875 100644 --- a/data/conf/llap/hive-site.xml +++ b/data/conf/llap/hive-site.xml @@ -343,4 +343,9 @@ <value>true</value> </property> +<property> + <name>yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage</name> + <value>99</value> +</property> + </configuration> http://git-wip-us.apache.org/repos/asf/hive/blob/d041cc44/data/conf/spark/yarn-client/hive-site.xml ---------------------------------------------------------------------- diff --git a/data/conf/spark/yarn-client/hive-site.xml b/data/conf/spark/yarn-client/hive-site.xml index bebca88..64b56a5 100644 --- a/data/conf/spark/yarn-client/hive-site.xml +++ b/data/conf/spark/yarn-client/hive-site.xml @@ -295,4 +295,9 @@ <value>30000ms</value> </property> +<property> + <name>yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage</name> + <value>99</value> +</property> + </configuration> http://git-wip-us.apache.org/repos/asf/hive/blob/d041cc44/data/conf/tez/hive-site.xml ---------------------------------------------------------------------- diff --git a/data/conf/tez/hive-site.xml b/data/conf/tez/hive-site.xml index f1dabf5..4519678 100644 --- a/data/conf/tez/hive-site.xml +++ b/data/conf/tez/hive-site.xml @@ -288,4 +288,9 @@ <value>true</value> </property> +<property> + <name>yarn.nodemanager.disk-health-checker.max-disk-utilization-per-disk-percentage</name> + <value>99</value> +</property> + </configuration>
