Repository: hbase Updated Branches: refs/heads/branch-1 a55f2c759 -> bdeab9319
HBASE-19905 ReplicationSyncUp tool will not exit if a peer replication is disabled Signed-off-by: Ashish Singhi <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/bdeab931 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/bdeab931 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/bdeab931 Branch: refs/heads/branch-1 Commit: bdeab93196a247c7e3dcb090f8288de0050c5f24 Parents: a55f2c7 Author: Ashish Singhi <[email protected]> Authored: Sun Feb 4 18:24:32 2018 +0530 Committer: Ashish Singhi <[email protected]> Committed: Sun Feb 4 18:24:32 2018 +0530 ---------------------------------------------------------------------- .../replication/regionserver/ReplicationSourceManager.java | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/bdeab931/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.java b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.java index 77fd837..6ec30de 100644 --- a/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.java +++ b/hbase-server/src/main/java/org/apache/hadoop/hbase/replication/regionserver/ReplicationSourceManager.java @@ -63,6 +63,7 @@ import org.apache.hadoop.hbase.replication.ReplicationEndpoint; import org.apache.hadoop.hbase.replication.ReplicationException; import org.apache.hadoop.hbase.replication.ReplicationListener; import org.apache.hadoop.hbase.replication.ReplicationPeer; +import org.apache.hadoop.hbase.replication.ReplicationPeer.PeerState; import org.apache.hadoop.hbase.replication.ReplicationPeerConfig; import org.apache.hadoop.hbase.replication.ReplicationPeers; import org.apache.hadoop.hbase.replication.ReplicationQueueInfo; @@ -754,6 +755,12 @@ public class ReplicationSourceManager implements ReplicationListener { replicationQueues.removeQueue(peerId); continue; } + if (server instanceof ReplicationSyncUp.DummyServer + && peer.getPeerState().equals(PeerState.DISABLED)) { + LOG.warn("Peer " + actualPeerId + " is disbaled. ReplicationSyncUp tool will skip " + + "replicating data to this peer."); + continue; + } // track sources in walsByIdRecoveredQueues Map<String, SortedSet<String>> walsByGroup = new HashMap<String, SortedSet<String>>(); walsByIdRecoveredQueues.put(peerId, walsByGroup);
