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 2018/07/14 06:20:06 UTC

hive git commit: HIVE-19027: Make materializations invalidation cache work with multiple active remote metastores (addendum)

Repository: hive
Updated Branches:
  refs/heads/branch-3 57b2fd3bd -> 19aa1d557


HIVE-19027: Make materializations invalidation cache work with multiple active remote metastores (addendum)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/19aa1d55
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/19aa1d55
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/19aa1d55

Branch: refs/heads/branch-3
Commit: 19aa1d55715f145d0d6cf5314677e13cf9788815
Parents: 57b2fd3
Author: Jesus Camacho Rodriguez <jc...@apache.org>
Authored: Fri Jul 6 22:00:01 2018 -0700
Committer: Jesus Camacho Rodriguez <jc...@apache.org>
Committed: Fri Jul 13 23:15:16 2018 -0700

----------------------------------------------------------------------
 .../org/apache/hadoop/hive/metastore/conf/MetastoreConf.java    | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/19aa1d55/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
----------------------------------------------------------------------
diff --git a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
index 77389a0..46a6d53 100644
--- a/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
+++ b/standalone-metastore/src/main/java/org/apache/hadoop/hive/metastore/conf/MetastoreConf.java
@@ -759,8 +759,6 @@ public class MetastoreConf {
     TASK_THREADS_ALWAYS("metastore.task.threads.always", "metastore.task.threads.always",
         EventCleanerTask.class.getName() + "," + RuntimeStatsCleanerTask.class.getName() + "," +
             "org.apache.hadoop.hive.metastore.repl.DumpDirCleanerTask" + "," +
-            MaterializationsRebuildLockCleanerTask.class.getName() + "," +
-            RuntimeStatsCleanerTask.class.getName() + "," +
             "org.apache.hadoop.hive.metastore.HiveProtoEventsCleanerTask",
         "Comma separated list of tasks that will be started in separate threads.  These will " +
             "always be started, regardless of whether the metastore is running in embedded mode " +
@@ -769,7 +767,8 @@ public class MetastoreConf {
         AcidHouseKeeperService.class.getName() + "," +
             AcidOpenTxnsCounterService.class.getName() + "," +
             AcidCompactionHistoryService.class.getName() + "," +
-            AcidWriteSetService.class.getName(),
+            AcidWriteSetService.class.getName() + "," +
+            MaterializationsRebuildLockCleanerTask.class.getName(),
         "Command separated list of tasks that will be started in separate threads.  These will be" +
             " started only when the metastore is running as a separate service.  They must " +
             "implement " + MetastoreTaskThread.class.getName()),