Package org.apache.lucene.index
Class NoMergePolicy
java.lang.Object
org.apache.lucene.index.MergePolicy
org.apache.lucene.index.NoMergePolicy
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Cloneable
A
MergePolicy
which never returns merges to execute (hence it's
name). It is also a singleton and can be accessed through
NO_COMPOUND_FILES
if you want to indicate the index
does not use compound files, or through COMPOUND_FILES
otherwise. Use it if you want to prevent an IndexWriter
from ever
executing merges, without going through the hassle of tweaking a merge
policy's settings to achieve that, such as changing its merge factor.-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.index.MergePolicy
MergePolicy.DocMap, MergePolicy.MergeAbortedException, MergePolicy.MergeException, MergePolicy.MergeSpecification, MergePolicy.MergeTrigger, MergePolicy.OneMerge
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final MergePolicy
A singletonNoMergePolicy
which indicates the index uses compound files.static final MergePolicy
A singletonNoMergePolicy
which indicates the index does not use compound files.Fields inherited from class org.apache.lucene.index.MergePolicy
DEFAULT_MAX_CFS_SEGMENT_SIZE, DEFAULT_NO_CFS_RATIO, maxCFSSegmentSize, noCFSRatio, writer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
close()
Release all resources for the policy.findForcedDeletesMerges
(SegmentInfos segmentInfos) Determine what set of merge operations is necessary in order to expunge all deletes from the index.findForcedMerges
(SegmentInfos segmentInfos, int maxSegmentCount, Map<SegmentCommitInfo, Boolean> segmentsToMerge) Determine what set of merge operations is necessary in order to merge to <= the specified segment count.findMerges
(MergePolicy.MergeTrigger mergeTrigger, SegmentInfos segmentInfos) Determine what set of merge operations are now necessary on the index.void
setIndexWriter
(IndexWriter writer) Sets theIndexWriter
to use by this merge policy.protected long
size
(SegmentCommitInfo info) Return the byte size of the providedSegmentCommitInfo
, pro-rated by percentage of non-deleted documents is set.toString()
boolean
useCompoundFile
(SegmentInfos segments, SegmentCommitInfo newSegment) Returns true if a new segment (regardless of its origin) should use the compound file format.Methods inherited from class org.apache.lucene.index.MergePolicy
clone, getMaxCFSSegmentSizeMB, getNoCFSRatio, isMerged, setMaxCFSSegmentSizeMB, setNoCFSRatio
-
Field Details
-
NO_COMPOUND_FILES
A singletonNoMergePolicy
which indicates the index does not use compound files. -
COMPOUND_FILES
A singletonNoMergePolicy
which indicates the index uses compound files.
-
-
Method Details
-
close
public void close()Description copied from class:MergePolicy
Release all resources for the policy.- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Specified by:
close
in classMergePolicy
-
findMerges
public MergePolicy.MergeSpecification findMerges(MergePolicy.MergeTrigger mergeTrigger, SegmentInfos segmentInfos) Description copied from class:MergePolicy
Determine what set of merge operations are now necessary on the index.IndexWriter
calls this whenever there is a change to the segments. This call is always synchronized on theIndexWriter
instance so only one thread at a time will call this method.- Specified by:
findMerges
in classMergePolicy
- Parameters:
mergeTrigger
- the event that triggered the mergesegmentInfos
- the total set of segments in the index
-
findForcedMerges
public MergePolicy.MergeSpecification findForcedMerges(SegmentInfos segmentInfos, int maxSegmentCount, Map<SegmentCommitInfo, Boolean> segmentsToMerge) Description copied from class:MergePolicy
Determine what set of merge operations is necessary in order to merge to <= the specified segment count.IndexWriter
calls this when itsIndexWriter.forceMerge(int)
method is called. This call is always synchronized on theIndexWriter
instance so only one thread at a time will call this method.- Specified by:
findForcedMerges
in classMergePolicy
- Parameters:
segmentInfos
- the total set of segments in the indexmaxSegmentCount
- requested maximum number of segments in the index (currently this is always 1)segmentsToMerge
- contains the specific SegmentInfo instances that must be merged away. This may be a subset of all SegmentInfos. If the value is True for a given SegmentInfo, that means this segment was an original segment present in the to-be-merged index; else, it was a segment produced by a cascaded merge.
-
findForcedDeletesMerges
Description copied from class:MergePolicy
Determine what set of merge operations is necessary in order to expunge all deletes from the index.- Specified by:
findForcedDeletesMerges
in classMergePolicy
- Parameters:
segmentInfos
- the total set of segments in the index
-
useCompoundFile
Description copied from class:MergePolicy
Returns true if a new segment (regardless of its origin) should use the compound file format. The default implementation returnstrue
iff the size of the given mergedInfo is less or equal toMergePolicy.getMaxCFSSegmentSizeMB()
and the size is less or equal to the TotalIndexSize *MergePolicy.getNoCFSRatio()
otherwisefalse
.- Overrides:
useCompoundFile
in classMergePolicy
-
setIndexWriter
Description copied from class:MergePolicy
Sets theIndexWriter
to use by this merge policy. This method is allowed to be called only once, and is usually set by IndexWriter. If it is called more than once,SetOnce.AlreadySetException
is thrown.- Overrides:
setIndexWriter
in classMergePolicy
- See Also:
-
size
Description copied from class:MergePolicy
Return the byte size of the providedSegmentCommitInfo
, pro-rated by percentage of non-deleted documents is set.- Overrides:
size
in classMergePolicy
- Throws:
IOException
-
toString
-