@InterfaceAudience.Private public interface ReplicationSourceInterface
| Modifier and Type | Method and Description |
|---|---|
void |
addHFileRefs(TableName tableName,
byte[] family,
List<String> files)
Add hfile names to the queue to be replicated.
|
void |
enqueueLog(Path log)
Add a log to the list of logs to replicate
|
Path |
getCurrentPath()
Get the current log that's replicated
|
String |
getPeerClusterId()
Get the id that the source is replicating to.
|
String |
getPeerClusterZnode()
Get the id that the source is replicating to
|
String |
getStats()
Get a string representation of the current statistics
for this source
|
void |
init(Configuration conf,
FileSystem fs,
ReplicationSourceManager manager,
ReplicationQueues replicationQueues,
ReplicationPeers replicationPeers,
Stoppable stopper,
String peerClusterZnode,
UUID clusterId,
ReplicationEndpoint replicationEndpoint,
MetricsSource metrics)
Initializer for the source
|
void |
startup()
Start the replication
|
void |
terminate(String reason)
End the replication
|
void |
terminate(String reason,
Exception cause)
End the replication
|
void init(Configuration conf,
FileSystem fs,
ReplicationSourceManager manager,
ReplicationQueues replicationQueues,
ReplicationPeers replicationPeers,
Stoppable stopper,
String peerClusterZnode,
UUID clusterId,
ReplicationEndpoint replicationEndpoint,
MetricsSource metrics)
throws IOException
conf - the configuration to usefs - the file system to usemanager - the manager to usereplicationQueues - replicationPeers - stopper - the stopper object for this region serverpeerClusterZnode - clusterId - IOExceptionvoid enqueueLog(Path log)
log - path to the log to replicatePath getCurrentPath()
void startup()
void terminate(String reason)
reason - why it's terminatingvoid terminate(String reason, Exception cause)
reason - why it's terminatingcause - the error that's causing itString getPeerClusterZnode()
String getPeerClusterId()
String getStats()
void addHFileRefs(TableName tableName, byte[] family, List<String> files) throws ReplicationException
tableName - Name of the table these files belongs tofamily - Name of the family these files belong tofiles - files whose names needs to be added to the queue to be replicatedReplicationException - If failed to add hfile references