From fc38804f929e68dd0f37f06d3b02ffd90fc92c2b Mon Sep 17 00:00:00 2001 From: Ashutosh Chauhan Date: Sun, 16 Sep 2018 23:20:01 -0700 Subject: [PATCH] HIVE-20571 : Change default value of hive.tez.dag.status.check.interval --- common/src/java/org/apache/hadoop/hive/conf/HiveConf.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java index 3e38fe66c5..c9e58df1e9 100644 --- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java +++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java @@ -3821,7 +3821,7 @@ private static void populateLlapDaemonVarsSet(Set llapDaemonVarsSetLocal true, "Allows hive server 2 to send progress bar update information. This is currently available" + " only if the execution engine is tez or Spark."), - TEZ_DAG_STATUS_CHECK_INTERVAL("hive.tez.dag.status.check.interval", "500ms", + TEZ_DAG_STATUS_CHECK_INTERVAL("hive.tez.dag.status.check.interval", "2000ms", new TimeValidator(TimeUnit.MILLISECONDS), "Interval between subsequent DAG status invocation."), SPARK_EXEC_INPLACE_PROGRESS("hive.spark.exec.inplace.progress", true, "Updates spark job execution progress in-place in the terminal."), -- 2.14.3 (Apple Git-98)