@InterfaceAudience.Private public class ReplicationSource extends Object implements ReplicationSourceInterface
A stream is considered down when we cannot contact a region server on the peer cluster for more than 55 seconds by default.
| Modifier and Type | Field and Description |
|---|---|
protected org.apache.hadoop.conf.Configuration |
conf |
static int |
DEFAULT_WAIT_ON_ENDPOINT_SECONDS |
protected org.apache.hadoop.fs.FileSystem |
fs |
protected ReplicationSourceLogQueue |
logQueue |
protected ReplicationSourceManager |
manager |
protected String |
queueId |
protected int |
queueSizePerGroup |
protected ReplicationQueueStorage |
queueStorage |
protected ReplicationPeer |
replicationPeer |
protected ReplicationQueueInfo |
replicationQueueInfo |
protected Server |
server |
static String |
WAIT_ON_ENDPOINT_SECONDS |
protected WALEntryFilter |
walEntryFilter
A filter (or a chain of filters) for WAL entries; filters out edits.
|
protected ConcurrentHashMap<String,ReplicationSourceShipper> |
workerThreads |
| Modifier and Type | Method and Description |
|---|---|
void |
addHFileRefs(TableName tableName,
byte[] family,
List<Pair<org.apache.hadoop.fs.Path,org.apache.hadoop.fs.Path>> pairs)
Add hfile names to the queue to be replicated.
|
protected ReplicationSourceShipper |
createNewShipper(String walGroupId) |
void |
enqueueLog(org.apache.hadoop.fs.Path wal)
Add a log to the list of logs to replicate
|
org.apache.hadoop.fs.Path |
getCurrentPath()
Get the current log that's replicated
|
ReplicationPeer |
getPeer()
Get the replication peer instance.
|
String |
getQueueId()
Get the queue id that the source is replicating to
|
Map<String,PriorityBlockingQueue<org.apache.hadoop.fs.Path>> |
getQueues() |
ReplicationEndpoint |
getReplicationEndpoint() |
ReplicationQueueInfo |
getReplicationQueueInfo() |
ReplicationQueueStorage |
getReplicationQueueStorage() |
ServerName |
getServerWALsBelongTo()
The queue of WALs only belong to one region server.
|
ReplicationSourceManager |
getSourceManager() |
MetricsSource |
getSourceMetrics() |
String |
getStats()
Get a string representation of the current statistics for this source
|
WALFileLengthProvider |
getWALFileLengthProvider() |
Map<String,ReplicationStatus> |
getWalGroupStatus()
get the stat of replication for each wal group.
|
void |
init(org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.fs.FileSystem fs,
ReplicationSourceManager manager,
ReplicationQueueStorage queueStorage,
ReplicationPeer replicationPeer,
Server server,
String queueId,
UUID clusterId,
WALFileLengthProvider walFileLengthProvider,
MetricsSource metrics)
Instantiation method used by region servers
|
boolean |
isSourceActive() |
boolean |
isWorkerRunning() |
String |
logPeerId() |
void |
postShipEdits(List<WAL.Entry> entries,
int batchSize)
Call this after the shipper thread ship some entries to peer cluster.
|
protected boolean |
sleepForRetries(String msg,
int sleepMultiplier)
Do the sleeping logic
|
ReplicationSourceInterface |
startup()
Start the replication
|
void |
terminate(String reason)
End the replication
|
void |
terminate(String reason,
Exception cause)
End the replication
|
void |
terminate(String reason,
Exception cause,
boolean clearMetrics)
End the replication
|
void |
terminate(String reason,
Exception cause,
boolean clearMetrics,
boolean join) |
void |
tryThrottle(int batchSize)
Try to throttle when the peer config with a bandwidth
|
protected void |
uncaughtException(Thread t,
Throwable e,
ReplicationSourceManager manager,
String peerId) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetPeerId, isPeerEnabled, isRecovered, isSyncReplication, logPositionAndCleanOldLogsprotected int queueSizePerGroup
protected ReplicationSourceLogQueue logQueue
protected ReplicationQueueStorage queueStorage
protected ReplicationPeer replicationPeer
protected org.apache.hadoop.conf.Configuration conf
protected ReplicationQueueInfo replicationQueueInfo
protected ReplicationSourceManager manager
protected Server server
protected org.apache.hadoop.fs.FileSystem fs
protected String queueId
protected volatile WALEntryFilter walEntryFilter
protected final ConcurrentHashMap<String,ReplicationSourceShipper> workerThreads
public static final String WAIT_ON_ENDPOINT_SECONDS
public static final int DEFAULT_WAIT_ON_ENDPOINT_SECONDS
public void init(org.apache.hadoop.conf.Configuration conf,
org.apache.hadoop.fs.FileSystem fs,
ReplicationSourceManager manager,
ReplicationQueueStorage queueStorage,
ReplicationPeer replicationPeer,
Server server,
String queueId,
UUID clusterId,
WALFileLengthProvider walFileLengthProvider,
MetricsSource metrics)
throws IOException
init in interface ReplicationSourceInterfaceconf - configuration to usefs - file system to usemanager - replication manager to ping toserver - the server for this region serverqueueId - the id of our replication queueclusterId - unique UUID for the clustermetrics - metrics for replication sourceIOExceptionpublic void enqueueLog(org.apache.hadoop.fs.Path wal)
ReplicationSourceInterfaceenqueueLog in interface ReplicationSourceInterfacewal - path to the log to replicate@InterfaceAudience.Private public Map<String,PriorityBlockingQueue<org.apache.hadoop.fs.Path>> getQueues()
public void addHFileRefs(TableName tableName, byte[] family, List<Pair<org.apache.hadoop.fs.Path,org.apache.hadoop.fs.Path>> pairs) throws ReplicationException
ReplicationSourceInterfaceaddHFileRefs in interface ReplicationSourceInterfacetableName - Name of the table these files belongs tofamily - Name of the family these files belong topairs - list of pairs of { HFile location in staging dir, HFile path in region dir
which will be added in the queue for replication}ReplicationException - If failed to add hfile referencespublic Map<String,ReplicationStatus> getWalGroupStatus()
ReplicationSourceInterfacegetWalGroupStatus in interface ReplicationSourceInterfaceprotected ReplicationSourceShipper createNewShipper(String walGroupId)
protected final void uncaughtException(Thread t, Throwable e, ReplicationSourceManager manager, String peerId)
public ReplicationEndpoint getReplicationEndpoint()
getReplicationEndpoint in interface ReplicationSourceInterfacepublic ReplicationSourceManager getSourceManager()
getSourceManager in interface ReplicationSourceInterfacepublic void tryThrottle(int batchSize)
throws InterruptedException
ReplicationSourceInterfacetryThrottle in interface ReplicationSourceInterfacebatchSize - entries size will be pushedInterruptedExceptionprotected boolean sleepForRetries(String msg, int sleepMultiplier)
msg - Why we sleepsleepMultiplier - by how many times the default sleeping time is augmentedsleepMultiplier is < maxRetriesMultiplierpublic ReplicationSourceInterface startup()
ReplicationSourceInterfacestartup in interface ReplicationSourceInterfacepublic void terminate(String reason)
ReplicationSourceInterfaceterminate in interface ReplicationSourceInterfacereason - why it's terminatingpublic void terminate(String reason, Exception cause)
ReplicationSourceInterfaceterminate in interface ReplicationSourceInterfacereason - why it's terminatingcause - the error that's causing itpublic void terminate(String reason, Exception cause, boolean clearMetrics)
ReplicationSourceInterfaceterminate in interface ReplicationSourceInterfacereason - why it's terminatingcause - the error that's causing itclearMetrics - removes all metrics about this Sourcepublic String getQueueId()
ReplicationSourceInterfacegetQueueId in interface ReplicationSourceInterfacepublic org.apache.hadoop.fs.Path getCurrentPath()
ReplicationSourceInterfacegetCurrentPath in interface ReplicationSourceInterfacepublic boolean isSourceActive()
isSourceActive in interface ReplicationSourceInterfacepublic ReplicationQueueInfo getReplicationQueueInfo()
public boolean isWorkerRunning()
public String getStats()
ReplicationSourceInterfacegetStats in interface ReplicationSourceInterfacepublic MetricsSource getSourceMetrics()
getSourceMetrics in interface ReplicationSourceInterfacepublic void postShipEdits(List<WAL.Entry> entries, int batchSize)
ReplicationSourceInterfacepostShipEdits in interface ReplicationSourceInterfaceentries - pushedbatchSize - entries size pushedpublic WALFileLengthProvider getWALFileLengthProvider()
getWALFileLengthProvider in interface ReplicationSourceInterfacepublic ServerName getServerWALsBelongTo()
ReplicationSourceInterfacegetServerWALsBelongTo in interface ReplicationSourceInterfacepublic ReplicationPeer getPeer()
ReplicationSourceInterfacegetPeer in interface ReplicationSourceInterfacepublic ReplicationQueueStorage getReplicationQueueStorage()
getReplicationQueueStorage in interface ReplicationSourceInterfacepublic String logPeerId()
Copyright © 2007–2020 The Apache Software Foundation. All rights reserved.