|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.lucene.index.SnapshotDeletionPolicy
public class SnapshotDeletionPolicy
A IndexDeletionPolicy
that wraps around any other
IndexDeletionPolicy
and adds the ability to hold and
later release a single "snapshot" of an index. While
the snapshot is held, the IndexWriter
will not
remove any files associated with it even if the index is
otherwise being actively, arbitrarily changed. Because
we wrap another arbitrary IndexDeletionPolicy
, this
gives you the freedom to continue using whatever IndexDeletionPolicy
you would normally want to use with your
index.
Constructor Summary | |
---|---|
SnapshotDeletionPolicy(IndexDeletionPolicy primary)
|
Method Summary | |
---|---|
void |
onCommit(List commits)
This is called each time the writer completed a commit. |
void |
onInit(List commits)
This is called once when a writer is first instantiated to give the policy a chance to remove old commit points. |
void |
release()
Release the currently held snapshot. |
IndexCommitPoint |
snapshot()
Take a snapshot of the most recent commit to the index. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SnapshotDeletionPolicy(IndexDeletionPolicy primary)
Method Detail |
---|
public void onInit(List commits) throws IOException
IndexDeletionPolicy
This 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()
of IndexCommitPoint
.
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.
onInit
in interface IndexDeletionPolicy
commits
- List of current
point-in-time commits
,
sorted by age (the 0th one is the oldest commit).
IOException
public void onCommit(List commits) throws IOException
IndexDeletionPolicy
This 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()
of IndexCommitPoint
.
If writer has autoCommit = true
then
this method will in general be called many times during
one instance of IndexWriter
. If
autoCommit = false
then this method is
only called once when IndexWriter.close()
is
called, or not at all if the IndexWriter.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.
onCommit
in interface IndexDeletionPolicy
commits
- List of IndexCommitPoint
,
sorted by age (the 0th one is the oldest commit).
IOException
public IndexCommitPoint snapshot()
public void release()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |