Package org.apache.lucene.index
Class NoMergePolicy
- java.lang.Object
-
- org.apache.lucene.index.MergePolicy
-
- org.apache.lucene.index.NoMergePolicy
-
public final class NoMergePolicy extends MergePolicy
AMergePolicywhich never returns merges to execute. Use it if you want to prevent segment merges.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.index.MergePolicy
MergePolicy.MergeAbortedException, MergePolicy.MergeContext, MergePolicy.MergeException, MergePolicy.MergeSpecification, MergePolicy.OneMerge, MergePolicy.OneMergeProgress
-
-
Field Summary
Fields Modifier and Type Field Description static MergePolicyINSTANCESingleton instance.-
Fields inherited from class org.apache.lucene.index.MergePolicy
DEFAULT_MAX_CFS_SEGMENT_SIZE, DEFAULT_NO_CFS_RATIO, maxCFSSegmentSize, noCFSRatio
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MergePolicy.MergeSpecificationfindForcedDeletesMerges(SegmentInfos segmentInfos, MergePolicy.MergeContext mergeContext)Determine what set of merge operations is necessary in order to expunge all deletes from the index.MergePolicy.MergeSpecificationfindForcedMerges(SegmentInfos segmentInfos, int maxSegmentCount, Map<SegmentCommitInfo,Boolean> segmentsToMerge, MergePolicy.MergeContext mergeContext)Determine what set of merge operations is necessary in order to merge to<=the specified segment count.MergePolicy.MergeSpecificationfindMerges(MergeTrigger mergeTrigger, SegmentInfos segmentInfos, MergePolicy.MergeContext mergeContext)Determine what set of merge operations are now necessary on the index.doublegetMaxCFSSegmentSizeMB()Returns the largest size allowed for a compound file segmentdoublegetNoCFSRatio()Returns currentnoCFSRatio.booleankeepFullyDeletedSegment(IOSupplier<CodecReader> readerIOSupplier)Returns true if the segment represented by the given CodecReader should be keep even if it's fully deleted.intnumDeletesToMerge(SegmentCommitInfo info, int delCount, IOSupplier<CodecReader> readerSupplier)Returns the number of deletes that a merge would claim on the given segment.voidsetMaxCFSSegmentSizeMB(double v)If a merged segment will be more than this value, leave the segment as non-compound file even if compound file is enabled.voidsetNoCFSRatio(double noCFSRatio)If a merged segment will be more than this percentage of the total size of the index, leave the segment as non-compound file even if compound file is enabled.protected longsize(SegmentCommitInfo info, MergePolicy.MergeContext context)Return the byte size of the providedSegmentCommitInfo, pro-rated by percentage of non-deleted documents is set.StringtoString()booleanuseCompoundFile(SegmentInfos segments, SegmentCommitInfo newSegment, MergePolicy.MergeContext mergeContext)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
assertDelCount, isMerged, message, segString, verbose
-
-
-
-
Field Detail
-
INSTANCE
public static final MergePolicy INSTANCE
Singleton instance.
-
-
Method Detail
-
findMerges
public MergePolicy.MergeSpecification findMerges(MergeTrigger mergeTrigger, SegmentInfos segmentInfos, MergePolicy.MergeContext mergeContext)
Description copied from class:MergePolicyDetermine what set of merge operations are now necessary on the index.IndexWritercalls this whenever there is a change to the segments. This call is always synchronized on theIndexWriterinstance so only one thread at a time will call this method.- Specified by:
findMergesin classMergePolicy- Parameters:
mergeTrigger- the event that triggered the mergesegmentInfos- the total set of segments in the indexmergeContext- the IndexWriter to find the merges on
-
findForcedMerges
public MergePolicy.MergeSpecification findForcedMerges(SegmentInfos segmentInfos, int maxSegmentCount, Map<SegmentCommitInfo,Boolean> segmentsToMerge, MergePolicy.MergeContext mergeContext)
Description copied from class:MergePolicyDetermine what set of merge operations is necessary in order to merge to<=the specified segment count.IndexWritercalls this when itsIndexWriter.forceMerge(int)method is called. This call is always synchronized on theIndexWriterinstance so only one thread at a time will call this method.- Specified by:
findForcedMergesin 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.mergeContext- the IndexWriter to find the merges on
-
findForcedDeletesMerges
public MergePolicy.MergeSpecification findForcedDeletesMerges(SegmentInfos segmentInfos, MergePolicy.MergeContext mergeContext)
Description copied from class:MergePolicyDetermine what set of merge operations is necessary in order to expunge all deletes from the index.- Specified by:
findForcedDeletesMergesin classMergePolicy- Parameters:
segmentInfos- the total set of segments in the indexmergeContext- the IndexWriter to find the merges on
-
useCompoundFile
public boolean useCompoundFile(SegmentInfos segments, SegmentCommitInfo newSegment, MergePolicy.MergeContext mergeContext)
Description copied from class:MergePolicyReturns true if a new segment (regardless of its origin) should use the compound file format. The default implementation returnstrueiff 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:
useCompoundFilein classMergePolicy
-
size
protected long size(SegmentCommitInfo info, MergePolicy.MergeContext context) throws IOException
Description copied from class:MergePolicyReturn the byte size of the providedSegmentCommitInfo, pro-rated by percentage of non-deleted documents is set.- Overrides:
sizein classMergePolicy- Throws:
IOException
-
getNoCFSRatio
public double getNoCFSRatio()
Description copied from class:MergePolicyReturns currentnoCFSRatio.- Overrides:
getNoCFSRatioin classMergePolicy- See Also:
MergePolicy.setNoCFSRatio(double)
-
getMaxCFSSegmentSizeMB
public double getMaxCFSSegmentSizeMB()
Description copied from class:MergePolicyReturns the largest size allowed for a compound file segment- Overrides:
getMaxCFSSegmentSizeMBin classMergePolicy
-
setMaxCFSSegmentSizeMB
public void setMaxCFSSegmentSizeMB(double v)
Description copied from class:MergePolicyIf a merged segment will be more than this value, leave the segment as non-compound file even if compound file is enabled. Set this to Double.POSITIVE_INFINITY (default) and noCFSRatio to 1.0 to always use CFS regardless of merge size.- Overrides:
setMaxCFSSegmentSizeMBin classMergePolicy
-
setNoCFSRatio
public void setNoCFSRatio(double noCFSRatio)
Description copied from class:MergePolicyIf a merged segment will be more than this percentage of the total size of the index, leave the segment as non-compound file even if compound file is enabled. Set to 1.0 to always use CFS regardless of merge size.- Overrides:
setNoCFSRatioin classMergePolicy
-
keepFullyDeletedSegment
public boolean keepFullyDeletedSegment(IOSupplier<CodecReader> readerIOSupplier) throws IOException
Description copied from class:MergePolicyReturns true if the segment represented by the given CodecReader should be keep even if it's fully deleted. This is useful for testing of for instance if the merge policy implements retention policies for soft deletes.- Overrides:
keepFullyDeletedSegmentin classMergePolicy- Throws:
IOException
-
numDeletesToMerge
public int numDeletesToMerge(SegmentCommitInfo info, int delCount, IOSupplier<CodecReader> readerSupplier) throws IOException
Description copied from class:MergePolicyReturns the number of deletes that a merge would claim on the given segment. This method will by default return the sum of the del count on disk and the pending delete count. Yet, subclasses that wrap merge readers might modify this to reflect deletes that are carried over to the target segment in the case of soft deletes. Soft deletes all deletes to survive across merges in order to control when the soft-deleted data is claimed.- Overrides:
numDeletesToMergein classMergePolicy- Parameters:
info- the segment info that identifies the segmentdelCount- the number deleted documents for this segmentreaderSupplier- a supplier that allows to obtain aCodecReaderfor this segment- Throws:
IOException- See Also:
IndexWriter.softUpdateDocument(Term, Iterable, Field...),IndexWriterConfig.setSoftDeletesField(String)
-
-