You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by ab...@apache.org on 2020/04/11 12:40:52 UTC

[hive] branch master updated: HIVE-23151: LLAP: default hive.llap.file.cleanup.delay.seconds=0s (László Bodor reviewed by Prasanth Jayachandran)

This is an automated email from the ASF dual-hosted git repository.

abstractdog pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 5822d7a  HIVE-23151: LLAP: default hive.llap.file.cleanup.delay.seconds=0s (László Bodor reviewed by Prasanth Jayachandran)
5822d7a is described below

commit 5822d7ad7d28eb68b7c1a9d71a93c3d685f7d4d3
Author: László Bodor <bo...@gmail.com>
AuthorDate: Sat Apr 11 14:40:39 2020 +0200

    HIVE-23151: LLAP: default hive.llap.file.cleanup.delay.seconds=0s (László Bodor reviewed by Prasanth Jayachandran)
    
    Signed-off-by: Laszlo Bodor <bo...@gmail.com>
---
 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 4ba5310..0da5e8b 100644
--- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
+++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
@@ -4464,7 +4464,7 @@ public class HiveConf extends Configuration {
       "llap.daemon.vcpus.per.instance"),
     LLAP_DAEMON_NUM_FILE_CLEANER_THREADS("hive.llap.daemon.num.file.cleaner.threads", 1,
       "Number of file cleaner threads in LLAP.", "llap.daemon.num.file.cleaner.threads"),
-    LLAP_FILE_CLEANUP_DELAY_SECONDS("hive.llap.file.cleanup.delay.seconds", "300s",
+    LLAP_FILE_CLEANUP_DELAY_SECONDS("hive.llap.file.cleanup.delay.seconds", "0s",
        new TimeValidator(TimeUnit.SECONDS),
       "How long to delay before cleaning up query files in LLAP (in seconds, for debugging).",
       "llap.file.cleanup.delay-seconds"),