Class RemoteRecoveryTargetHandler
java.lang.Object
org.elasticsearch.indices.recovery.RemoteRecoveryTargetHandler
- All Implemented Interfaces:
 RecoveryTargetHandler
- 
Constructor Summary
ConstructorsConstructorDescriptionRemoteRecoveryTargetHandler(long recoveryId, ShardId shardId, TransportService transportService, DiscoveryNode targetNode, RecoverySettings recoverySettings, Consumer<Long> onSourceThrottle) - 
Method Summary
Modifier and TypeMethodDescriptionvoidcancel()voidcleanFiles(int totalTranslogOps, long globalCheckpoint, Store.MetadataSnapshot sourceMetadata, ActionListener<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 storevoidfinalizeRecovery(long globalCheckpoint, long trimAboveSeqNo, ActionListener<Void> listener)The finalize request refreshes the engine now that new segments are available, enables garbage collection of tombstone files, updates the global checkpoint.voidhandoffPrimaryContext(ReplicationTracker.PrimaryContext primaryContext, ActionListener<Void> listener)Handoff the primary context between the relocation source and the relocation target.voidindexTranslogOperations(List<Translog.Operation> operations, int totalTranslogOps, long maxSeenAutoIdTimestampOnPrimary, long maxSeqNoOfDeletesOrUpdatesOnPrimary, RetentionLeases retentionLeases, long mappingVersionOnPrimary, ActionListener<Long> listener)Index a set of translog operations on the targetvoidprepareForTranslogOperations(int totalTranslogOps, ActionListener<Void> listener)Prepares the target to receive translog operations, after all file have been copiedvoidreceiveFileInfo(List<String> phase1FileNames, List<Long> phase1FileSizes, List<String> phase1ExistingFileNames, List<Long> phase1ExistingFileSizes, int totalTranslogOps, ActionListener<Void> listener)Notifies the target of the files it is going to receivevoidwriteFileChunk(StoreFileMetadata fileMetadata, long position, ReleasableBytesReference content, boolean lastChunk, int totalTranslogOps, ActionListener<Void> listener)writes a partial file chunk to the target store 
- 
Constructor Details
- 
RemoteRecoveryTargetHandler
public RemoteRecoveryTargetHandler(long recoveryId, ShardId shardId, TransportService transportService, DiscoveryNode targetNode, RecoverySettings recoverySettings, Consumer<Long> onSourceThrottle) 
 - 
 - 
Method Details
- 
targetNode
 - 
prepareForTranslogOperations
Description copied from interface:RecoveryTargetHandlerPrepares the target to receive translog operations, after all file have been copied- Specified by:
 prepareForTranslogOperationsin interfaceRecoveryTargetHandler- Parameters:
 totalTranslogOps- total translog operations expected to be sent
 - 
finalizeRecovery
public void finalizeRecovery(long globalCheckpoint, long trimAboveSeqNo, ActionListener<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 sourcetrimAboveSeqNo- The recovery target should erase its existing translog above this sequence number from the previous primary terms.listener- the listener which will be notified when this method is completed
 - 
handoffPrimaryContext
public void handoffPrimaryContext(ReplicationTracker.PrimaryContext primaryContext, ActionListener<Void> listener)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 sourcelistener- the listener which will be notified when this method is completed
 - 
indexTranslogOperations
public void indexTranslogOperations(List<Translog.Operation> operations, int totalTranslogOps, long maxSeenAutoIdTimestampOnPrimary, long maxSeqNoOfDeletesOrUpdatesOnPrimary, RetentionLeases retentionLeases, long mappingVersionOnPrimary, ActionListener<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(List<String> phase1FileNames, List<Long> phase1FileSizes, List<String> phase1ExistingFileNames, List<Long> phase1ExistingFileSizes, int totalTranslogOps, ActionListener<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<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, ReleasableBytesReference content, boolean lastChunk, int totalTranslogOps, ActionListener<Void> listener)Description copied from interface:RecoveryTargetHandlerwrites a partial file chunk to the target store- Specified by:
 writeFileChunkin interfaceRecoveryTargetHandler
 - 
cancel
public void cancel()- Specified by:
 cancelin interfaceRecoveryTargetHandler
 
 -