@InterfaceAudience.Public @InterfaceStability.Evolving public class ReplicationAdmin extends Object implements Closeable
This class provides the administrative interface to HBase cluster
replication. In order to use it, the cluster and the client using
ReplicationAdmin must be configured with hbase.replication
set to true.
Adding a new peer results in creating new outbound connections from every region server to a subset of region servers on the slave cluster. Each new stream of replication will start replicating from the beginning of the current HLog, meaning that edits from that past will be replicated.
Removing a peer is a destructive and irreversible operation that stops all the replication streams for the given cluster and deletes the metadata used to keep track of the replication state.
To see which commands are available in the shell, type
replication
.
Modifier and Type | Field and Description |
---|---|
static String |
CFNAME |
static String |
REPLICATIONGLOBAL |
static String |
REPLICATIONTYPE |
static String |
TNAME |
Constructor and Description |
---|
ReplicationAdmin(org.apache.hadoop.conf.Configuration conf)
Constructor that creates a connection to the local ZooKeeper ensemble.
|
Modifier and Type | Method and Description |
---|---|
void |
addPeer(String id,
ReplicationPeerConfig peerConfig,
Map<TableName,? extends Collection<String>> tableCfs)
Add a new remote slave cluster for replication.
|
void |
addPeer(String id,
String clusterKey)
Deprecated.
Use addPeer(String, ReplicationPeerConfig, Map) instead.
|
void |
addPeer(String id,
String clusterKey,
String tableCFs)
Deprecated.
|
void |
close() |
void |
disablePeer(String id)
Stop the replication stream to the specified peer.
|
void |
enablePeer(String id)
Restart the replication stream to the specified peer.
|
ReplicationPeerConfig |
getPeerConfig(String id) |
int |
getPeersCount()
Get the number of slave clusters the local cluster has.
|
boolean |
getPeerState(String id)
Get the state of the specified peer cluster
|
String |
getPeerTableCFs(String id)
Get the replicable table-cf config of the specified peer.
|
Map<String,ReplicationPeerConfig> |
listPeerConfigs() |
Map<String,String> |
listPeers()
Deprecated.
|
List<HashMap<String,String>> |
listReplicated()
Find all column families that are replicated from this cluster
|
void |
removePeer(String id)
Removes a peer cluster and stops the replication to it.
|
void |
setPeerTableCFs(String id,
Map<TableName,? extends Collection<String>> tableCfs)
Set the replicable table-cf config of the specified peer
|
void |
setPeerTableCFs(String id,
String tableCFs)
Deprecated.
|
public static final String TNAME
public static final String CFNAME
public static final String REPLICATIONTYPE
public static final String REPLICATIONGLOBAL
public ReplicationAdmin(org.apache.hadoop.conf.Configuration conf) throws IOException
conf
- Configuration to useIOException
- if an internal replication error occursRuntimeException
- if replication isn't enabled.@Deprecated public void addPeer(String id, String clusterKey) throws ReplicationException
id
- a short name that identifies the clusterclusterKey
- the concatenation of the slave cluster's
hbase.zookeeper.quorum:hbase.zookeeper.property.clientPort:zookeeper.znode.parent
IllegalStateException
- if there's already one slave since
multi-slave isn't supported yet.ReplicationException
@Deprecated public void addPeer(String id, String clusterKey, String tableCFs) throws ReplicationException
ReplicationException
public void addPeer(String id, ReplicationPeerConfig peerConfig, Map<TableName,? extends Collection<String>> tableCfs) throws ReplicationException
id
- a short name that identifies the clusterpeerConfig
- configuration for the replication slave clustertableCfs
- the table and column-family list which will be replicated for this peer.
A map from tableName to column family names. An empty collection can be passed
to indicate replicating all column families. Pass null for replicating all table and column
familiesReplicationException
public void removePeer(String id) throws ReplicationException
id
- a short name that identifies the clusterReplicationException
public void enablePeer(String id) throws ReplicationException
id
- a short name that identifies the clusterReplicationException
public void disablePeer(String id) throws ReplicationException
id
- a short name that identifies the clusterReplicationException
public int getPeersCount()
@Deprecated public Map<String,String> listPeers()
listPeerConfigs()
public Map<String,ReplicationPeerConfig> listPeerConfigs()
public ReplicationPeerConfig getPeerConfig(String id) throws ReplicationException
ReplicationException
public String getPeerTableCFs(String id) throws ReplicationException
id
- a short name that identifies the clusterReplicationException
@Deprecated public void setPeerTableCFs(String id, String tableCFs) throws ReplicationException
setPeerTableCFs(String, Map)
id
- a short name that identifies the clusterReplicationException
public void setPeerTableCFs(String id, Map<TableName,? extends Collection<String>> tableCfs) throws ReplicationException
id
- a short name that identifies the clustertableCfs
- the table and column-family list which will be replicated for this peer.
A map from tableName to column family names. An empty collection can be passed
to indicate replicating all column families. Pass null for replicating all table and column
familiesReplicationException
public boolean getPeerState(String id) throws ReplicationException
id
- String format of the Short name that identifies the peer,
an IllegalArgumentException is thrown if it doesn't existReplicationException
public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
IOException
public List<HashMap<String,String>> listReplicated() throws IOException
IOException
Copyright © 2015 The Apache Software Foundation. All Rights Reserved.