Class RecoveryTarget
- java.lang.Object
-
- org.elasticsearch.common.util.concurrent.AbstractRefCounted
-
- org.elasticsearch.indices.recovery.RecoveryTarget
-
- All Implemented Interfaces:
RefCounted,RecoveryTargetHandler
public class RecoveryTarget extends AbstractRefCounted implements RecoveryTargetHandler
Represents a recovery where the current node is the target node of the recovery. To track recoveries in a central place, instances of this class are created throughRecoveriesCollection.
-
-
Constructor Summary
Constructors Constructor Description RecoveryTarget(IndexShard indexShard, DiscoveryNode sourceNode, PeerRecoveryTargetService.RecoveryListener listener)Creates a new recovery target object that represents a recovery to the provided shard.
-
Method Summary
Modifier and Type Method Description voidcancel(java.lang.String reason)cancel the recovery.CancellableThreadscancellableThreads()voidcleanFiles(int totalTranslogOps, long globalCheckpoint, Store.MetadataSnapshot sourceMetaData, ActionListener<java.lang.Void> listener)After all source files has been sent over, this command is sent to the target so it can clean any local files that are not part of the source storeprotected voidcloseInternal()voidfail(RecoveryFailedException e, boolean sendShardFailure)fail the recovery and call listenervoidfinalizeRecovery(long globalCheckpoint, ActionListener<java.lang.Void> listener)The finalize request refreshes the engine now that new segments are available, enables garbage collection of tombstone files, updates the global checkpoint.java.lang.StringgetTempNameForFile(java.lang.String origFile)Get a temporary name for the provided file name.voidhandoffPrimaryContext(ReplicationTracker.PrimaryContext primaryContext)Handoff the primary context between the relocation source and the relocation target.IndexShardindexShard()voidindexTranslogOperations(java.util.List<Translog.Operation> operations, int totalTranslogOps, long maxSeenAutoIdTimestampOnPrimary, long maxSeqNoOfDeletesOrUpdatesOnPrimary, RetentionLeases retentionLeases, long mappingVersionOnPrimary, ActionListener<java.lang.Long> listener)Index a set of translog operations on the targetlonglastAccessTime()return the last time this RecoveryStatus was used (based on System.nanoTime()voidmarkAsDone()mark the current recovery as donevoidnotifyListener(RecoveryFailedException e, boolean sendShardFailure)voidprepareForTranslogOperations(boolean fileBasedRecovery, int totalTranslogOps, ActionListener<java.lang.Void> listener)Implementation ofRecoveryTargetHandlervoidreceiveFileInfo(java.util.List<java.lang.String> phase1FileNames, java.util.List<java.lang.Long> phase1FileSizes, java.util.List<java.lang.String> phase1ExistingFileNames, java.util.List<java.lang.Long> phase1ExistingFileSizes, int totalTranslogOps, ActionListener<java.lang.Void> listener)Notifies the target of the files it is going to receivelongrecoveryId()RecoveryTargetretryCopy()Returns a fresh recovery target to retry recovery from the same source node onto the same shard and using the same listener.voidsetLastAccessTime()sets the lasAccessTime flag to nowShardIdshardId()DiscoveryNodesourceNode()RecoveryState.Stagestage()RecoveryStatestate()Storestore()java.lang.StringtoString()voidwriteFileChunk(StoreFileMetaData fileMetaData, long position, BytesReference content, boolean lastChunk, int totalTranslogOps, ActionListener<java.lang.Void> listener)writes a partial file chunk to the target store-
Methods inherited from class org.elasticsearch.common.util.concurrent.AbstractRefCounted
alreadyClosed, decRef, getName, incRef, refCount, tryIncRef
-
-
-
-
Constructor Detail
-
RecoveryTarget
public RecoveryTarget(IndexShard indexShard, DiscoveryNode sourceNode, PeerRecoveryTargetService.RecoveryListener listener)
Creates a new recovery target object that represents a recovery to the provided shard.- Parameters:
indexShard- local shard where we want to recover tosourceNode- source node of the recovery where we recover fromlistener- called when recovery is completed/failed
-
-
Method Detail
-
retryCopy
public RecoveryTarget retryCopy()
Returns a fresh recovery target to retry recovery from the same source node onto the same shard and using the same listener.- Returns:
- a copy of this recovery target
-
recoveryId
public long recoveryId()
-
shardId
public ShardId shardId()
-
indexShard
public IndexShard indexShard()
-
sourceNode
public DiscoveryNode sourceNode()
-
state
public RecoveryState state()
-
cancellableThreads
public CancellableThreads cancellableThreads()
-
lastAccessTime
public long lastAccessTime()
return the last time this RecoveryStatus was used (based on System.nanoTime()
-
setLastAccessTime
public void setLastAccessTime()
sets the lasAccessTime flag to now
-
store
public Store store()
-
stage
public RecoveryState.Stage stage()
-
cancel
public void cancel(java.lang.String reason)
cancel the recovery. calling this method will clean temporary files and release the store unless this object is in use (in which case it will be cleaned once all ongoing users callAbstractRefCounted.decRef()if
cancellableThreads()was used, the threads will be interrupted.
-
fail
public void fail(RecoveryFailedException e, boolean sendShardFailure)
fail the recovery and call listener- Parameters:
e- exception that encapsulating the failuresendShardFailure- indicates whether to notify the master of the shard failure
-
notifyListener
public void notifyListener(RecoveryFailedException e, boolean sendShardFailure)
-
markAsDone
public void markAsDone()
mark the current recovery as done
-
closeInternal
protected void closeInternal()
- Specified by:
closeInternalin classAbstractRefCounted
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
prepareForTranslogOperations
public void prepareForTranslogOperations(boolean fileBasedRecovery, int totalTranslogOps, ActionListener<java.lang.Void> listener)Implementation ofRecoveryTargetHandler- Specified by:
prepareForTranslogOperationsin interfaceRecoveryTargetHandler- Parameters:
fileBasedRecovery- whether or not this call is part of an file based recoverytotalTranslogOps- total translog operations expected to be sent
-
finalizeRecovery
public void finalizeRecovery(long globalCheckpoint, ActionListener<java.lang.Void> listener)Description copied from interface:RecoveryTargetHandlerThe finalize request refreshes the engine now that new segments are available, enables garbage collection of tombstone files, updates the global checkpoint.- Specified by:
finalizeRecoveryin interfaceRecoveryTargetHandler- Parameters:
globalCheckpoint- the global checkpoint on the recovery sourcelistener- the listener which will be notified when this method is completed
-
handoffPrimaryContext
public void handoffPrimaryContext(ReplicationTracker.PrimaryContext primaryContext)
Description copied from interface:RecoveryTargetHandlerHandoff the primary context between the relocation source and the relocation target.- Specified by:
handoffPrimaryContextin interfaceRecoveryTargetHandler- Parameters:
primaryContext- the primary context from the relocation source
-
indexTranslogOperations
public void indexTranslogOperations(java.util.List<Translog.Operation> operations, int totalTranslogOps, long maxSeenAutoIdTimestampOnPrimary, long maxSeqNoOfDeletesOrUpdatesOnPrimary, RetentionLeases retentionLeases, long mappingVersionOnPrimary, ActionListener<java.lang.Long> listener)
Description copied from interface:RecoveryTargetHandlerIndex a set of translog operations on the target- Specified by:
indexTranslogOperationsin interfaceRecoveryTargetHandler- Parameters:
operations- operations to indextotalTranslogOps- current number of total operations expected to be indexedmaxSeenAutoIdTimestampOnPrimary- the maximum auto_id_timestamp of all append-only requests processed by the primary shardmaxSeqNoOfDeletesOrUpdatesOnPrimary- the max seq_no of update operations (index operations overwrite Lucene) or delete ops on the primary shard when capturing these operations. This value is at least as high as the max_seq_no_of_updates on the primary was when any of these ops were processed on it.retentionLeases- the retention leases on the primarymappingVersionOnPrimary- the mapping version which is at least as up to date as the mapping version that the primary used to index translogoperationsin this request. If the mapping version on the replica is not older this version, we should not retry onMapperException; otherwise we should wait for a new mapping then retry.listener- a listener which will be notified with the local checkpoint on the target after these operations are successfully indexed on the target.
-
receiveFileInfo
public void receiveFileInfo(java.util.List<java.lang.String> phase1FileNames, java.util.List<java.lang.Long> phase1FileSizes, java.util.List<java.lang.String> phase1ExistingFileNames, java.util.List<java.lang.Long> phase1ExistingFileSizes, int totalTranslogOps, ActionListener<java.lang.Void> listener)Description copied from interface:RecoveryTargetHandlerNotifies the target of the files it is going to receive- Specified by:
receiveFileInfoin interfaceRecoveryTargetHandler
-
cleanFiles
public void cleanFiles(int totalTranslogOps, long globalCheckpoint, Store.MetadataSnapshot sourceMetaData, ActionListener<java.lang.Void> listener)Description copied from interface:RecoveryTargetHandlerAfter all source files has been sent over, this command is sent to the target so it can clean any local files that are not part of the source store- Specified by:
cleanFilesin interfaceRecoveryTargetHandler- Parameters:
totalTranslogOps- an update number of translog operations that will be replayed later onglobalCheckpoint- the global checkpoint on the primarysourceMetaData- meta data of the source store
-
writeFileChunk
public void writeFileChunk(StoreFileMetaData fileMetaData, long position, BytesReference content, boolean lastChunk, int totalTranslogOps, ActionListener<java.lang.Void> listener)
Description copied from interface:RecoveryTargetHandlerwrites a partial file chunk to the target store- Specified by:
writeFileChunkin interfaceRecoveryTargetHandler
-
getTempNameForFile
public java.lang.String getTempNameForFile(java.lang.String origFile)
Get a temporary name for the provided file name.
-
-