You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2019/10/15 17:39:50 UTC

[hive] branch master updated: HIVE-22339: Change default time for MVs refresh in registry (Jesus Camacho Rodriguez, reviewed by Ashutosh Chauhan)

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

jcamacho 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 1c296fd  HIVE-22339: Change default time for MVs refresh in registry (Jesus Camacho Rodriguez, reviewed by Ashutosh Chauhan)
1c296fd is described below

commit 1c296fd94429faefaf90e4dc2555545379ae6e19
Author: Jesus Camacho Rodriguez <jc...@apache.org>
AuthorDate: Tue Oct 15 10:37:36 2019 -0700

    HIVE-22339: Change default time for MVs refresh in registry (Jesus Camacho Rodriguez, reviewed by Ashutosh Chauhan)
---
 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 3b71164..93536f2 100644
--- a/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
+++ b/common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
@@ -3255,7 +3255,7 @@ public class HiveConf extends Configuration {
         "The implementation that we should use for the materialized views registry. \n" +
         "  DEFAULT: Default cache for materialized views\n" +
         "  DUMMY: Do not cache materialized views and hence forward requests to metastore"),
-    HIVE_SERVER2_MATERIALIZED_VIEWS_REGISTRY_REFRESH("hive.server2.materializedviews.registry.refresh.period", "60s",
+    HIVE_SERVER2_MATERIALIZED_VIEWS_REGISTRY_REFRESH("hive.server2.materializedviews.registry.refresh.period", "1500s",
         new TimeValidator(TimeUnit.SECONDS),
         "Period, specified in seconds, between successive refreshes of the registry to pull new materializations " +
         "from the metastore that may have been created by other HS2 instances."),