Class NRTReplicationEngine
- All Implemented Interfaces:
Closeable
,AutoCloseable
,LifecycleAware
Engine
implementation intended for replica shards when Segment Replication
is enabled. This Engine does not create an IndexWriter, rather it refreshes a NRTReplicationReaderManager
with new Segments when received from an external source.- Opensearch.api:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opensearch.index.engine.Engine
Engine.Delete, Engine.DeleteResult, Engine.EventListener, Engine.Get, Engine.GetResult, Engine.Index, Engine.IndexResult, Engine.IndexThrottle, Engine.NoOp, Engine.NoOpLock, Engine.NoOpResult, Engine.Operation, Engine.Result, Engine.Searcher, Engine.SearcherScope, Engine.SearcherSupplier, Engine.TranslogRecoveryRunner, Engine.Warmer
-
Field Summary
Modifier and TypeFieldDescriptionprotected final org.opensearch.index.engine.ReplicaFileTracker
Fields inherited from class org.opensearch.index.engine.Engine
CAN_MATCH_SEARCH_SOURCE, engineConfig, eventListener, failedEngine, failEngineLock, FORCE_MERGE, FORCE_MERGE_UUID_KEY, HISTORY_UUID_KEY, isClosed, lastWriteNanos, logger, MAX_UNSAFE_AUTO_ID_TIMESTAMP_COMMIT_ID, MERGE_FAILED, MIN_RETAINED_SEQNO, readLock, rwl, SEARCH_SOURCE, shardId, store, SYNC_COMMIT_ID, writeLock
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionAcquires a lock on the translog files and Lucene soft-deleted documents to prevent them from being trimmedGatedCloseable
<org.apache.lucene.index.IndexCommit> acquireLastIndexCommit
(boolean flushFirst) Snapshots the most recent index and returns a handle to it.GatedCloseable
<org.apache.lucene.index.IndexCommit> Snapshots the most recent safe index commit from the engine.void
Request that this engine throttle incoming indexing requests to one thread.void
advanceMaxSeqNoOfUpdatesOrDeletes
(long maxSeqNoOfUpdatesOnPrimary) A replica shard receives a new max_seq_no_of_updates from its primary shard, then calls this method to advance this marker to at least the given sequence number.void
protected final void
closeNoLock
(String reason, CountDownLatch closedLatch) Method to close the engine while the write lock is held.completionStats
(String... fieldNamePatterns) Returns theCompletionStats
for this engineint
countNumberOfHistoryOperations
(String source, long fromSeqNo, long toSeqNumber) Counts the number of history operations in the given sequence number rangevoid
Reverses a previousEngine.activateThrottling()
call.delete
(Engine.Delete delete) Perform document delete operation on the engineboolean
ensureTranslogSynced
(Stream<Translog.Location> locations) Ensures that all locations in the given stream have been written to the underlying storage.int
fillSeqNoGaps
(long primaryTerm) Fills up the local checkpoints history with no-ops until the local checkpoint and the max seen sequence ID are identical.void
flush
(boolean force, boolean waitIfOngoing) Flushes the state of the engine including the transaction log, clearing memory.void
forceMerge
(boolean flush, int maxNumSegments, boolean onlyExpungeDeletes, boolean upgrade, boolean upgradeOnlyAncientSegments, String forceMergeUUID) Triggers a forced merge on this engineget
(Engine.Get get, BiFunction<String, Engine.SearcherScope, Engine.Searcher> searcherFactory) returns the history uuid for the enginelong
How much heap is used that would be freed by a refresh.long
Returns the number of milliseconds this engine was under index throttling.protected org.apache.lucene.index.SegmentInfos
long
Returns the latest global checkpoint value that has been persisted in the underlying storage (i.e.protected org.apache.lucene.index.SegmentInfos
Return the latest active SegmentInfos from the engine.protected LocalCheckpointTracker
long
Returns the maximum sequence number of either update or delete operations have been processed in this engine or the sequence number fromEngine.advanceMaxSeqNoOfUpdatesOrDeletes(long)
.long
Gets the minimum retained sequence number for this engine.long
long
protected org.apache.lucene.search.ReferenceManager
<OpenSearchDirectoryReader> GatedCloseable
<org.apache.lucene.index.SegmentInfos> In contrast toEngine.getLatestSegmentInfos()
, which returns aSegmentInfos
object directly, this method returns aGatedCloseable
reference to the same object.getSeqNoStats
(long globalCheckpoint) Returns the last location that the translog of this engine has written into.long
Returns how many bytes we are currently moving from heap to diskboolean
hasCompleteOperationHistory
(String reason, long startingSeqNo) index
(Engine.Index index) Perform document index operation on the engineboolean
Returns thetrue
iff this engine is currently under index throttling.boolean
Checks if the underlying storage sync is required.void
Tries to prune buffered deletes from the version map.boolean
maybeRefresh
(String source) Synchronously refreshes the engine for new search operations to reflect the latest changes unless another thread is already refreshing the engine concurrently.newChangesSnapshot
(String source, long fromSeqNo, long toSeqNo, boolean requiredFullRange, boolean accurateCount) Creates a new history snapshot from Lucene for reading operations whose seqno in the requesting seqno range (both inclusive).newChangesSnapshotFromTranslogFile
(String source, long fromSeqNo, long toSeqNo, boolean requiredFullRange) Deprecated.noOp
(Engine.NoOp noOp) void
onSettingsChanged
(org.opensearch.common.unit.TimeValue translogRetentionAge, org.opensearch.core.common.unit.ByteSizeValue translogRetentionSize, long softDeletesRetentionOps) recoverFromTranslog
(Engine.TranslogRecoveryRunner translogRecoveryRunner, long recoverUpToSeqNo) Performs recovery from the transaction log up torecoverUpToSeqNo
(inclusive).void
Synchronously refreshes the engine for new search operations to reflect the latest changes.boolean
Refreshing of this engine will only happen internally when a new set of segments is received.int
restoreLocalHistoryFromTranslog
(Engine.TranslogRecoveryRunner translogRecoveryRunner) This method replays translog to restore the Lucene index which might be reverted previously.void
Rolls the translog generation and cleans unneeded.segments
(boolean verbose) The list of segments in the engine.boolean
Checks if this engine should be flushed periodically.boolean
Tests whether or not the translog generation should be rolled to a new generation.void
Do not replay translog operations, but make the engine be ready.void
void
trimOperationsFromTranslog
(long belowTerm, long aboveSeqNo) Trims translog for terms belowbelowTerm
and seq# aboveaboveSeqNo
void
checks and removes translog files that no longer need to be retained.void
updateMaxUnsafeAutoIdTimestamp
(long newTimestamp) Forces this engine to advance its max_unsafe_auto_id_timestamp marker to at least the given timestamp.void
updateSegments
(org.apache.lucene.index.SegmentInfos infos) void
Called when our engine is using too much heap and should move buffered indexed/deleted documents to disk.Methods inherited from class org.opensearch.index.engine.Engine
acquireSearcher, acquireSearcher, acquireSearcher, acquireSearcherSupplier, acquireSearcherSupplier, close, commitStats, config, docsStats, docStats, ensureOpen, ensureOpen, failEngine, fillSegmentStats, flush, flushAndClose, getFromSearcher, getLastWriteNanos, getMaxSeenAutoIdTimestamp, getMaxSeqNoFromSearcher, getMaxSeqNoFromSegmentInfos, getMergeStats, getTranslogDeletionPolicy, maybeFailEngine, segmentsStats, unreferencedFileCleanUpsPerformed, verifyEngineBeforeIndexClosing, writerSegmentStats
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.opensearch.index.engine.LifecycleAware
ensureOpen
-
Field Details
-
replicaFileTracker
protected final org.opensearch.index.engine.ReplicaFileTracker replicaFileTracker
-
-
Constructor Details
-
NRTReplicationEngine
-
-
Method Details
-
cleanUnreferencedFiles
- Throws:
IOException
-
translogManager
-
updateSegments
- Throws:
IOException
-
getHistoryUUID
Description copied from class:Engine
returns the history uuid for the engine- Specified by:
getHistoryUUID
in classEngine
-
getWritingBytes
public long getWritingBytes()Description copied from class:Engine
Returns how many bytes we are currently moving from heap to disk- Specified by:
getWritingBytes
in classEngine
-
completionStats
Description copied from class:Engine
Returns theCompletionStats
for this engine- Specified by:
completionStats
in classEngine
-
getIndexThrottleTimeInMillis
public long getIndexThrottleTimeInMillis()Description copied from class:Engine
Returns the number of milliseconds this engine was under index throttling.- Specified by:
getIndexThrottleTimeInMillis
in classEngine
-
isThrottled
public boolean isThrottled()Description copied from class:Engine
Returns thetrue
iff this engine is currently under index throttling.- Specified by:
isThrottled
in classEngine
- See Also:
-
trimOperationsFromTranslog
Description copied from class:Engine
Trims translog for terms belowbelowTerm
and seq# aboveaboveSeqNo
- Specified by:
trimOperationsFromTranslog
in classEngine
- Throws:
EngineException
- See Also:
-
index
Description copied from class:Engine
Perform document index operation on the engine- Specified by:
index
in classEngine
- Parameters:
index
- operation to perform- Returns:
Engine.IndexResult
containing updated translog location, version and document specific failures Note: engine level failures (i.e. persistent engine failures) are thrown- Throws:
IOException
-
delete
Description copied from class:Engine
Perform document delete operation on the engine- Specified by:
delete
in classEngine
- Parameters:
delete
- operation to perform- Returns:
Engine.DeleteResult
containing updated translog location, version and document specific failures Note: engine level failures (i.e. persistent engine failures) are thrown- Throws:
IOException
-
noOp
- Specified by:
noOp
in classEngine
- Throws:
IOException
-
get
public Engine.GetResult get(Engine.Get get, BiFunction<String, Engine.SearcherScope, throws EngineExceptionEngine.Searcher> searcherFactory) - Specified by:
get
in classEngine
- Throws:
EngineException
-
getReferenceManager
protected org.apache.lucene.search.ReferenceManager<OpenSearchDirectoryReader> getReferenceManager(Engine.SearcherScope scope) - Specified by:
getReferenceManager
in classEngine
-
refreshNeeded
public boolean refreshNeeded()Refreshing of this engine will only happen internally when a new set of segments is received. The engine will ignore external refresh attempts so we can return false here. Further Engine's existing implementation reads DirectoryReader.isCurrent after acquiring a searcher. With this Engine's NRTReplicationReaderManager, This will use StandardDirectoryReader's implementation which determines if the reader is current by comparing the on-disk SegmentInfos version against the one in the reader, which at refresh points will always return isCurrent false and then refreshNeeded true. Even if this method returns refresh as needed, we ignore it and only ever refresh with incoming SegmentInfos.- Overrides:
refreshNeeded
in classEngine
-
isTranslogSyncNeeded
public boolean isTranslogSyncNeeded()Description copied from class:Engine
Checks if the underlying storage sync is required.- Specified by:
isTranslogSyncNeeded
in classEngine
-
ensureTranslogSynced
Description copied from class:Engine
Ensures that all locations in the given stream have been written to the underlying storage.- Specified by:
ensureTranslogSynced
in classEngine
- Throws:
IOException
-
syncTranslog
- Specified by:
syncTranslog
in classEngine
- Throws:
IOException
-
acquireHistoryRetentionLock
Description copied from class:Engine
Acquires a lock on the translog files and Lucene soft-deleted documents to prevent them from being trimmed- Specified by:
acquireHistoryRetentionLock
in classEngine
-
newChangesSnapshot
public Translog.Snapshot newChangesSnapshot(String source, long fromSeqNo, long toSeqNo, boolean requiredFullRange, boolean accurateCount) throws IOException Description copied from class:Engine
Creates a new history snapshot from Lucene for reading operations whose seqno in the requesting seqno range (both inclusive). This feature requires soft-deletes enabled. If soft-deletes are disabled, this method will throw anIllegalStateException
.- Specified by:
newChangesSnapshot
in classEngine
- Throws:
IOException
-
newChangesSnapshotFromTranslogFile
@Deprecated public Translog.Snapshot newChangesSnapshotFromTranslogFile(String source, long fromSeqNo, long toSeqNo, boolean requiredFullRange) throws IOException Deprecated.Description copied from class:Engine
Reads history operations from the translog file instead of the lucene index- Specified by:
newChangesSnapshotFromTranslogFile
in classEngine
- Throws:
IOException
-
countNumberOfHistoryOperations
public int countNumberOfHistoryOperations(String source, long fromSeqNo, long toSeqNumber) throws IOException Description copied from class:Engine
Counts the number of history operations in the given sequence number range- Specified by:
countNumberOfHistoryOperations
in classEngine
- Parameters:
source
- source of the requestfromSeqNo
- from sequence number; includedtoSeqNumber
- to sequence number; included- Returns:
- number of history operations
- Throws:
IOException
-
hasCompleteOperationHistory
- Specified by:
hasCompleteOperationHistory
in classEngine
-
getMinRetainedSeqNo
public long getMinRetainedSeqNo()Description copied from class:Engine
Gets the minimum retained sequence number for this engine.- Specified by:
getMinRetainedSeqNo
in classEngine
- Returns:
- the minimum retained sequence number
-
getTranslogStats
- Specified by:
getTranslogStats
in classEngine
-
getTranslogLastWriteLocation
Description copied from class:Engine
Returns the last location that the translog of this engine has written into.- Specified by:
getTranslogLastWriteLocation
in classEngine
-
getPersistedLocalCheckpoint
public long getPersistedLocalCheckpoint()- Specified by:
getPersistedLocalCheckpoint
in classEngine
- Returns:
- the persisted local checkpoint for this Engine
-
getProcessedLocalCheckpoint
public long getProcessedLocalCheckpoint() -
getSeqNoStats
- Specified by:
getSeqNoStats
in classEngine
- Returns:
- a
SeqNoStats
object, using local state and the supplied global checkpoint
-
getLastSyncedGlobalCheckpoint
public long getLastSyncedGlobalCheckpoint()Description copied from class:Engine
Returns the latest global checkpoint value that has been persisted in the underlying storage (i.e. translog's checkpoint)- Specified by:
getLastSyncedGlobalCheckpoint
in classEngine
-
getIndexBufferRAMBytesUsed
public long getIndexBufferRAMBytesUsed()Description copied from class:Engine
How much heap is used that would be freed by a refresh. Note that this may throwAlreadyClosedException
.- Specified by:
getIndexBufferRAMBytesUsed
in classEngine
-
segments
Description copied from class:Engine
The list of segments in the engine. -
refresh
Description copied from class:Engine
Synchronously refreshes the engine for new search operations to reflect the latest changes.- Specified by:
refresh
in classEngine
- Throws:
EngineException
-
maybeRefresh
Description copied from class:Engine
Synchronously refreshes the engine for new search operations to reflect the latest changes unless another thread is already refreshing the engine concurrently.- Specified by:
maybeRefresh
in classEngine
- Returns:
true
if the a refresh happened. Otherwisefalse
- Throws:
EngineException
-
writeIndexingBuffer
Description copied from class:Engine
Called when our engine is using too much heap and should move buffered indexed/deleted documents to disk.- Specified by:
writeIndexingBuffer
in classEngine
- Throws:
EngineException
-
shouldPeriodicallyFlush
public boolean shouldPeriodicallyFlush()Description copied from class:Engine
Checks if this engine should be flushed periodically. This check is mainly based on the uncommitted translog size and the translog flush threshold setting.- Specified by:
shouldPeriodicallyFlush
in classEngine
-
flush
Description copied from class:Engine
Flushes the state of the engine including the transaction log, clearing memory.- Specified by:
flush
in classEngine
- Parameters:
force
- iftrue
a lucene commit is executed even if no changes need to be committed.waitIfOngoing
- iftrue
this call will block until all currently running flushes have finished. Otherwise this call will return without blocking.- Throws:
EngineException
-
trimUnreferencedTranslogFiles
Description copied from class:Engine
checks and removes translog files that no longer need to be retained. SeeTranslogDeletionPolicy
for details- Specified by:
trimUnreferencedTranslogFiles
in classEngine
- Throws:
EngineException
-
shouldRollTranslogGeneration
public boolean shouldRollTranslogGeneration()Description copied from class:Engine
Tests whether or not the translog generation should be rolled to a new generation. This test is based on the size of the current generation compared to the configured generation threshold size.- Specified by:
shouldRollTranslogGeneration
in classEngine
- Returns:
true
if the current generation should be rolled to a new generation
-
rollTranslogGeneration
Description copied from class:Engine
Rolls the translog generation and cleans unneeded.- Specified by:
rollTranslogGeneration
in classEngine
- Throws:
EngineException
IOException
-
forceMerge
public void forceMerge(boolean flush, int maxNumSegments, boolean onlyExpungeDeletes, boolean upgrade, boolean upgradeOnlyAncientSegments, String forceMergeUUID) throws EngineException, IOException Description copied from class:Engine
Triggers a forced merge on this engine- Specified by:
forceMerge
in classEngine
- Throws:
EngineException
IOException
-
acquireLastIndexCommit
public GatedCloseable<org.apache.lucene.index.IndexCommit> acquireLastIndexCommit(boolean flushFirst) throws EngineException Description copied from class:Engine
Snapshots the most recent index and returns a handle to it. If needed will try and "commit" the lucene index to make sure we have a "fresh" copy of the files to snapshot.- Specified by:
acquireLastIndexCommit
in classEngine
- Parameters:
flushFirst
- indicates whether the engine should flush before returning the snapshot- Throws:
EngineException
-
acquireSafeIndexCommit
public GatedCloseable<org.apache.lucene.index.IndexCommit> acquireSafeIndexCommit() throws EngineExceptionDescription copied from class:Engine
Snapshots the most recent safe index commit from the engine.- Specified by:
acquireSafeIndexCommit
in classEngine
- Throws:
EngineException
-
getSafeCommitInfo
- Specified by:
getSafeCommitInfo
in classEngine
- Returns:
- a summary of the contents of the current safe commit
-
closeNoLock
Description copied from class:Engine
Method to close the engine while the write lock is held. Must decrement the supplied when closing work is done and resources are freed.- Specified by:
closeNoLock
in classEngine
-
activateThrottling
public void activateThrottling()Description copied from class:Engine
Request that this engine throttle incoming indexing requests to one thread. Must be matched by a later call toEngine.deactivateThrottling()
.- Specified by:
activateThrottling
in classEngine
-
deactivateThrottling
public void deactivateThrottling()Description copied from class:Engine
Reverses a previousEngine.activateThrottling()
call.- Specified by:
deactivateThrottling
in classEngine
-
restoreLocalHistoryFromTranslog
public int restoreLocalHistoryFromTranslog(Engine.TranslogRecoveryRunner translogRecoveryRunner) throws IOException Description copied from class:Engine
This method replays translog to restore the Lucene index which might be reverted previously. This ensures that all acknowledged writes are restored correctly when this engine is promoted.- Specified by:
restoreLocalHistoryFromTranslog
in classEngine
- Returns:
- the number of translog operations have been recovered
- Throws:
IOException
-
fillSeqNoGaps
Description copied from class:Engine
Fills up the local checkpoints history with no-ops until the local checkpoint and the max seen sequence ID are identical.- Specified by:
fillSeqNoGaps
in classEngine
- Parameters:
primaryTerm
- the shards primary term this engine was created for- Returns:
- the number of no-ops added
- Throws:
IOException
-
recoverFromTranslog
public Engine recoverFromTranslog(Engine.TranslogRecoveryRunner translogRecoveryRunner, long recoverUpToSeqNo) throws IOException Description copied from class:Engine
Performs recovery from the transaction log up torecoverUpToSeqNo
(inclusive). This operation will close the engine if the recovery fails.- Specified by:
recoverFromTranslog
in classEngine
- Parameters:
translogRecoveryRunner
- the translog recovery runnerrecoverUpToSeqNo
- the upper bound, inclusive, of sequence number to be recovered- Throws:
IOException
-
skipTranslogRecovery
public void skipTranslogRecovery()Description copied from class:Engine
Do not replay translog operations, but make the engine be ready.- Specified by:
skipTranslogRecovery
in classEngine
-
maybePruneDeletes
public void maybePruneDeletes()Description copied from class:Engine
Tries to prune buffered deletes from the version map.- Specified by:
maybePruneDeletes
in classEngine
-
updateMaxUnsafeAutoIdTimestamp
public void updateMaxUnsafeAutoIdTimestamp(long newTimestamp) Description copied from class:Engine
Forces this engine to advance its max_unsafe_auto_id_timestamp marker to at least the given timestamp. The engine will disable optimization for all append-only whose timestamp at mostnewTimestamp
.- Specified by:
updateMaxUnsafeAutoIdTimestamp
in classEngine
-
getMaxSeqNoOfUpdatesOrDeletes
public long getMaxSeqNoOfUpdatesOrDeletes()Description copied from class:Engine
Returns the maximum sequence number of either update or delete operations have been processed in this engine or the sequence number fromEngine.advanceMaxSeqNoOfUpdatesOrDeletes(long)
. An index request is considered as an update operation if it overwrites the existing documents in Lucene index with the same document id.A note on the optimization using max_seq_no_of_updates_or_deletes: For each operation O, the key invariants are:
- I1: There is no operation on docID(O) with seqno that is > MSU(O) and < seqno(O)
- I2: If MSU(O) < seqno(O) then docID(O) did not exist when O was applied; more precisely, if there is any O' with seqno(O') < seqno(O) and docID(O') = docID(O) then the one with the greatest seqno is a delete.
When a receiving shard (either a replica or a follower) receives an operation O, it must first ensure its own MSU at least MSU(O), and then compares its MSU to its local checkpoint (LCP). If LCP < MSU then there's a gap: there may be some operations that act on docID(O) about which we do not yet know, so we cannot perform an add. Note this also covers the case where a future operation O' with seqNo(O') > seqNo(O) and docId(O') = docID(O) is processed before O. In that case MSU(O') is at least seqno(O') and this means MSU >= seqNo(O') > seqNo(O) > LCP (because O wasn't processed yet).
However, if MSU <= LCP then there is no gap: we have processed every operation <= LCP, and no operation O' with seqno(O') > LCP and seqno(O') < seqno(O) also has docID(O') = docID(O), because such an operation would have seqno(O') > LCP >= MSU >= MSU(O) which contradicts the first invariant. Furthermore in this case we immediately know that docID(O) has been deleted (or never existed) without needing to check Lucene for the following reason. If there's no earlier operation on docID(O) then this is clear, so suppose instead that the preceding operation on docID(O) is O': 1. The first invariant above tells us that seqno(O') <= MSU(O) <= LCP so we have already applied O' to Lucene. 2. Also MSU(O) <= MSU <= LCP < seqno(O) (we discard O if seqno(O) <= LCP) so the second invariant applies, meaning that the O' was a delete.
Therefore, if MSU <= LCP < seqno(O) we know that O can safely be optimized with and added to lucene with addDocument. Moreover, operations that are optimized using the MSU optimization must not be processed twice as this will create duplicates in Lucene. To avoid this we check the local checkpoint tracker to see if an operation was already processed.
- Specified by:
getMaxSeqNoOfUpdatesOrDeletes
in classEngine
- See Also:
-
advanceMaxSeqNoOfUpdatesOrDeletes
public void advanceMaxSeqNoOfUpdatesOrDeletes(long maxSeqNoOfUpdatesOnPrimary) Description copied from class:Engine
A replica shard receives a new max_seq_no_of_updates from its primary shard, then calls this method to advance this marker to at least the given sequence number.- Specified by:
advanceMaxSeqNoOfUpdatesOrDeletes
in classEngine
-
getTranslog
-
onSettingsChanged
public void onSettingsChanged(org.opensearch.common.unit.TimeValue translogRetentionAge, org.opensearch.core.common.unit.ByteSizeValue translogRetentionSize, long softDeletesRetentionOps) - Overrides:
onSettingsChanged
in classEngine
-
getLastCommittedSegmentInfos
protected org.apache.lucene.index.SegmentInfos getLastCommittedSegmentInfos()- Specified by:
getLastCommittedSegmentInfos
in classEngine
-
getLatestSegmentInfos
protected org.apache.lucene.index.SegmentInfos getLatestSegmentInfos()Description copied from class:Engine
Return the latest active SegmentInfos from the engine.- Overrides:
getLatestSegmentInfos
in classEngine
- Returns:
SegmentInfos
-
getSegmentInfosSnapshot
Description copied from class:Engine
In contrast toEngine.getLatestSegmentInfos()
, which returns aSegmentInfos
object directly, this method returns aGatedCloseable
reference to the same object. This allows the engine to include a clean-upCheckedRunnable
which is run when the reference is closed. The default implementation of the clean-up procedure is a no-op.- Overrides:
getSegmentInfosSnapshot
in classEngine
- Returns:
GatedCloseable
- A wrapper around aSegmentInfos
instance that must be closed for segment files to be deleted.
-
getLocalCheckpointTracker
-