Class CombinedDeletionPolicy
- java.lang.Object
-
- org.apache.lucene.index.IndexDeletionPolicy
-
- org.elasticsearch.index.engine.CombinedDeletionPolicy
-
public class CombinedDeletionPolicy extends IndexDeletionPolicy
AnIndexDeletionPolicythat coordinates between Lucene's commits and the retention of translog generation files, making sure that all translog files that are needed to recover from the Lucene commit are not deleted.In particular, this policy will delete index commits whose max sequence number is at most the current global checkpoint except the index commit which has the highest max sequence number among those.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StringcommitDescription(IndexCommit commit)Returns a description for a givenIndexCommit.static IndexCommitfindSafeCommitPoint(List<IndexCommit> commits, long globalCheckpoint)Find a safe commit point from a list of existing commits based on the supplied global checkpoint.protected intgetDocCountOfCommit(IndexCommit indexCommit)voidonCommit(List<? extends IndexCommit> commits)This is called each time the writer completed a commit.voidonInit(List<? extends IndexCommit> commits)This is called once when a writer is first instantiated to give the policy a chance to remove old commit points.
-
-
-
Method Detail
-
onInit
public void onInit(List<? extends IndexCommit> commits) throws IOException
Description copied from class:IndexDeletionPolicyThis is called once when a writer is first instantiated to give the policy a chance to remove old commit points.
The writer locates all index commits present in the index directory and calls this method. The policy may choose to delete some of the commit points, doing so by calling method
delete()ofIndexCommit.Note: the last CommitPoint is the most recent one, i.e. the "front index state". Be careful not to delete it, unless you know for sure what you are doing, and unless you can afford to lose the index content while doing that.
- Specified by:
onInitin classIndexDeletionPolicy- Parameters:
commits- List of currentpoint-in-time commits, sorted by age (the 0th one is the oldest commit). Note that for a new index this method is invoked with an empty list.- Throws:
IOException
-
onCommit
public void onCommit(List<? extends IndexCommit> commits) throws IOException
Description copied from class:IndexDeletionPolicyThis is called each time the writer completed a commit. This gives the policy a chance to remove old commit points with each commit.
The policy may now choose to delete old commit points by calling method
delete()ofIndexCommit.This method is only called when
IndexWriter.commit()orIndexWriter.close()is called, or possibly not at all if theIndexWriter.rollback()is called.Note: the last CommitPoint is the most recent one, i.e. the "front index state". Be careful not to delete it, unless you know for sure what you are doing, and unless you can afford to lose the index content while doing that.
- Specified by:
onCommitin classIndexDeletionPolicy- Parameters:
commits- List ofIndexCommit, sorted by age (the 0th one is the oldest commit).- Throws:
IOException
-
getDocCountOfCommit
protected int getDocCountOfCommit(IndexCommit indexCommit) throws IOException
- Throws:
IOException
-
findSafeCommitPoint
public static IndexCommit findSafeCommitPoint(List<IndexCommit> commits, long globalCheckpoint) throws IOException
Find a safe commit point from a list of existing commits based on the supplied global checkpoint. The max sequence number of a safe commit point should be at most the global checkpoint. If an index was created before 6.2 or recovered from remote, we might not have a safe commit. In this case, this method will return the oldest index commit.- Parameters:
commits- a list of existing commit pointsglobalCheckpoint- the persisted global checkpoint from the translog, seeTranslog.readGlobalCheckpoint(Path, String)- Returns:
- a safe commit or the oldest commit if a safe commit is not found
- Throws:
IOException
-
commitDescription
public static String commitDescription(IndexCommit commit) throws IOException
Returns a description for a givenIndexCommit. This should be only used for logging and debugging.- Throws:
IOException
-
-