You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2018/12/06 06:24:33 UTC

hbase git commit: Revert "Backport "HBASE-21126 Add ability for HBase Canary to ignore a configurable number of ZooKeeper down nodes" to branch-2.0"

Repository: hbase
Updated Branches:
  refs/heads/branch-2.1 f60617ca0 -> ec39dc8c1


Revert "Backport "HBASE-21126 Add ability for HBase Canary to ignore a configurable number of ZooKeeper down nodes" to branch-2.0"

This reverts commit f60617ca0f7d142f22aced96f1e7865ae107a291.

Misapplied. Revert to fix.


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

Branch: refs/heads/branch-2.1
Commit: ec39dc8c149b9f89a91596d57d27de812973f0a9
Parents: f60617c
Author: stack <st...@stack.corp.apple.com>
Authored: Wed Dec 5 22:24:09 2018 -0800
Committer: stack <st...@stack.corp.apple.com>
Committed: Wed Dec 5 22:24:09 2018 -0800

----------------------------------------------------------------------
 .../main/java/org/apache/hadoop/hbase/tool/Canary.java   | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/ec39dc8c/hbase-server/src/main/java/org/apache/hadoop/hbase/tool/Canary.java
----------------------------------------------------------------------
diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/tool/Canary.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/tool/Canary.java
index 71af23e..40f4aa6 100644
--- a/hbase-server/src/main/java/org/apache/hadoop/hbase/tool/Canary.java
+++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/tool/Canary.java
@@ -599,6 +599,7 @@ public final class Canary implements Tool {
    * True if we are to run in zookeeper 'mode'.
    */
   private boolean zookeeperMode = false;
+
   private long permittedFailures = 0;
   private boolean regionServerAllRegions = false;
   private boolean writeSniffing = false;
@@ -891,8 +892,6 @@ public final class Canary implements Tool {
         "random one.");
     System.err.println(" -zookeeper      set 'zookeeper mode'; grab zookeeper.znode.parent on " +
         "each ensemble member");
-    System.err.println(" -permittedZookeeperFailures <N>     Ignore first N failures when attempting to " +
-        "connect to individual zookeeper nodes in the ensemble");
     System.err.println(" -daemon         continuous check at defined intervals.");
     System.err.println(" -interval <N>   interval between checks in seconds");
     System.err.println(" -e              consider table/regionserver argument as regular " +
@@ -958,7 +957,8 @@ public final class Canary implements Tool {
       monitor =
           new ZookeeperMonitor(connection, monitorTargets, this.useRegExp,
               getSink(connection.getConfiguration(), ZookeeperStdOutSink.class),
-              this.executor, this.treatFailureAsError, this.permittedFailures);
+              this.executor, this.treatFailureAsError,
+              this.permittedFailures);
     } else {
       monitor =
           new RegionMonitor(connection, monitorTargets, this.useRegExp,
@@ -1078,9 +1078,10 @@ public final class Canary implements Tool {
     public RegionMonitor(Connection connection, String[] monitorTargets, boolean useRegExp,
         Sink sink, ExecutorService executor, boolean writeSniffing, TableName writeTableName,
         boolean treatFailureAsError, HashMap<String, Long> configuredReadTableTimeouts,
-        long configuredWriteTableTimeout, long allowedFailures) {
+        long configuredWriteTableTimeout,
+        long allowedFailures) {
       super(connection, monitorTargets, useRegExp, sink, executor, treatFailureAsError,
-              allowedFailures);
+          allowedFailures);
       Configuration conf = connection.getConfiguration();
       this.writeSniffing = writeSniffing;
       this.writeTableName = writeTableName;