You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by bh...@apache.org on 2020/04/09 23:13:54 UTC

[hbase] branch branch-2 updated (9eb4917 -> 91aa3ce)

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

bharathv pushed a change to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git.


    from 9eb4917  HBASE-24150 Allow module tests run in parallel (#1464)
     new db7ad07  Revert "Switch the default registry to ZK based"
     new 91aa3ce  HBASE-24156: Switch the default registry to ZK based

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[hbase] 02/02: HBASE-24156: Switch the default registry to ZK based

Posted by bh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bharathv pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit 91aa3ce97c9198f207bbdc3f6690746204e93562
Author: Bharath Vissapragada <bh...@apache.org>
AuthorDate: Wed Feb 26 11:21:00 2020 -0800

    HBASE-24156: Switch the default registry to ZK based
    
    In branch-2 we want to retain the ZK based registry as the default.
---
 .../java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java
index 5688dea..9308443 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java
@@ -36,7 +36,7 @@ final class ConnectionRegistryFactory {
    */
   static ConnectionRegistry getRegistry(Configuration conf) {
     Class<? extends ConnectionRegistry> clazz = conf.getClass(
-        CLIENT_CONNECTION_REGISTRY_IMPL_CONF_KEY, MasterRegistry.class,
+        CLIENT_CONNECTION_REGISTRY_IMPL_CONF_KEY, ZKConnectionRegistry.class,
         ConnectionRegistry.class);
     return ReflectionUtils.newInstance(clazz, conf);
   }


[hbase] 01/02: Revert "Switch the default registry to ZK based"

Posted by bh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

bharathv pushed a commit to branch branch-2
in repository https://gitbox.apache.org/repos/asf/hbase.git

commit db7ad07081343df040b7d41b8881155257a02db5
Author: Bharath Vissapragada <bh...@apache.org>
AuthorDate: Thu Apr 9 10:02:09 2020 -0700

    Revert "Switch the default registry to ZK based"
    
    This reverts commit 558ee079fd04dfab8e61eca10ee98ab5bac89dfa because
    it wasn't tagged with a jira ID. Will be re-applied.
---
 .../java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java
index 9308443..5688dea 100644
--- a/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java
+++ b/hbase-client/src/main/java/org/apache/hadoop/hbase/client/ConnectionRegistryFactory.java
@@ -36,7 +36,7 @@ final class ConnectionRegistryFactory {
    */
   static ConnectionRegistry getRegistry(Configuration conf) {
     Class<? extends ConnectionRegistry> clazz = conf.getClass(
-        CLIENT_CONNECTION_REGISTRY_IMPL_CONF_KEY, ZKConnectionRegistry.class,
+        CLIENT_CONNECTION_REGISTRY_IMPL_CONF_KEY, MasterRegistry.class,
         ConnectionRegistry.class);
     return ReflectionUtils.newInstance(clazz, conf);
   }