Class SnapshotDeletionPolicy
- java.lang.Object
-
- org.apache.lucene.index.SnapshotDeletionPolicy
-
- All Implemented Interfaces:
- IndexDeletionPolicy
public class SnapshotDeletionPolicy extends java.lang.Object implements IndexDeletionPolicy
AIndexDeletionPolicythat wraps around any otherIndexDeletionPolicyand adds the ability to hold and later release a single "snapshot" of an index. While the snapshot is held, theIndexWriterwill not remove any files associated with it even if the index is otherwise being actively, arbitrarily changed. Because we wrap another arbitraryIndexDeletionPolicy, this gives you the freedom to continue using whateverIndexDeletionPolicyyou would normally want to use with your index.
-
-
Constructor Summary
Constructors Constructor and Description SnapshotDeletionPolicy(IndexDeletionPolicy primary)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description voidonCommit(java.util.List commits)This is called each time the writer completed a commit.voidonInit(java.util.List commits)This is called once when a writer is first instantiated to give the policy a chance to remove old commit points.voidrelease()Release the currently held snapshot.IndexCommitPointsnapshot()Take a snapshot of the most recent commit to the index.
-
-
-
Constructor Detail
-
SnapshotDeletionPolicy
public SnapshotDeletionPolicy(IndexDeletionPolicy primary)
-
-
Method Detail
-
onInit
public void onInit(java.util.List commits) throws java.io.IOExceptionDescription copied from interface: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()ofIndexCommitPoint.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 interfaceIndexDeletionPolicy- Parameters:
commits- List of currentpoint-in-time commits, sorted by age (the 0th one is the oldest commit).- Throws:
java.io.IOException
-
onCommit
public void onCommit(java.util.List commits) throws java.io.IOExceptionDescription copied from interface: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()ofIndexCommitPoint.If writer has
autoCommit = truethen this method will in general be called many times during one instance ofIndexWriter. IfautoCommit = falsethen this method is only called once whenIndexWriter.close()is called, or not at all if theIndexWriter.abort()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 interfaceIndexDeletionPolicy- Parameters:
commits- List ofIndexCommitPoint, sorted by age (the 0th one is the oldest commit).- Throws:
java.io.IOException
-
snapshot
public IndexCommitPoint snapshot()
Take a snapshot of the most recent commit to the index. You must call release() to free this snapshot. Note that while the snapshot is held, the files it references will not be deleted, which will consume additional disk space in your index. If you take a snapshot at a particularly bad time (say just before you call optimize()) then in the worst case this could consume an extra 1X of your total index size, until you release the snapshot.
-
release
public void release()
Release the currently held snapshot.
-
-
DataMelt 3.0 © DataMelt by jWork.ORG