Class MergePolicy
- java.lang.Object
-
- org.apache.lucene.index.MergePolicy
-
- All Implemented Interfaces:
java.io.Closeable,java.lang.AutoCloseable,java.lang.Cloneable
- Direct Known Subclasses:
LogMergePolicy,NoMergePolicy,TieredMergePolicy,UpgradeIndexMergePolicy
public abstract class MergePolicy extends java.lang.Object implements java.io.Closeable, java.lang.CloneableExpert: a MergePolicy determines the sequence of primitive merge operations.
Whenever the segments in an index have been altered by
IndexWriter, either the addition of a newly flushed segment, addition of many segments from addIndexes* calls, or a previous merge that may now need to cascade,IndexWriterinvokesfindMerges(org.apache.lucene.index.MergePolicy.MergeTrigger, org.apache.lucene.index.SegmentInfos)to give the MergePolicy a chance to pick merges that are now required. This method returns aMergePolicy.MergeSpecificationinstance describing the set of merges that should be done, or null if no merges are necessary. When IndexWriter.forceMerge is called, it callsfindForcedMerges(SegmentInfos,int,Map)and the MergePolicy should then return the necessary merges.Note that the policy can return more than one merge at a time. In this case, if the writer is using
SerialMergeScheduler, the merges will be run sequentially but if it is usingConcurrentMergeSchedulerthey will be run concurrently.The default MergePolicy is
TieredMergePolicy.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMergePolicy.DocMapA map of doc IDs.static classMergePolicy.MergeAbortedExceptionThrown when a merge was explicity aborted becauseIndexWriter.close(boolean)was called withfalse.static classMergePolicy.MergeExceptionException thrown if there are any problems while executing a merge.static classMergePolicy.MergeSpecificationA MergeSpecification instance provides the information necessary to perform multiple merges.static classMergePolicy.MergeTriggerMergeTrigger is passed tofindMerges(MergeTrigger, SegmentInfos)to indicate the event that triggered the merge.static classMergePolicy.OneMergeOneMerge provides the information necessary to perform an individual primitive merge operation, resulting in a single new segment.
-
Constructor Summary
Constructors Constructor Description MergePolicy()Creates a new merge policy instance.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description MergePolicyclone()abstract voidclose()Release all resources for the policy.abstract MergePolicy.MergeSpecificationfindForcedDeletesMerges(SegmentInfos segmentInfos)Determine what set of merge operations is necessary in order to expunge all deletes from the index.abstract MergePolicy.MergeSpecificationfindForcedMerges(SegmentInfos segmentInfos, int maxSegmentCount, java.util.Map<SegmentCommitInfo,java.lang.Boolean> segmentsToMerge)Determine what set of merge operations is necessary in order to merge to <= the specified segment count.abstract MergePolicy.MergeSpecificationfindMerges(MergePolicy.MergeTrigger mergeTrigger, SegmentInfos segmentInfos)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.voidsetIndexWriter(IndexWriter writer)Sets theIndexWriterto use by this merge policy.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.booleanuseCompoundFile(SegmentInfos infos, SegmentCommitInfo mergedInfo)Returns true if a new segment (regardless of its origin) should use the compound file format.
-
-
-
Constructor Detail
-
MergePolicy
public MergePolicy()
Creates a new merge policy instance. Note that if you intend to use it without passing it toIndexWriter, you should callsetIndexWriter(IndexWriter).
-
-
Method Detail
-
clone
public MergePolicy clone()
-
setIndexWriter
public void setIndexWriter(IndexWriter writer)
Sets theIndexWriterto 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.AlreadySetExceptionis thrown.- See Also:
SetOnce
-
findMerges
public abstract MergePolicy.MergeSpecification findMerges(MergePolicy.MergeTrigger mergeTrigger, SegmentInfos segmentInfos) throws java.io.IOException
Determine 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.- Parameters:
mergeTrigger- the event that triggered the mergesegmentInfos- the total set of segments in the index- Throws:
java.io.IOException
-
findForcedMerges
public abstract MergePolicy.MergeSpecification findForcedMerges(SegmentInfos segmentInfos, int maxSegmentCount, java.util.Map<SegmentCommitInfo,java.lang.Boolean> segmentsToMerge) throws java.io.IOException
Determine 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.- 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.- Throws:
java.io.IOException
-
findForcedDeletesMerges
public abstract MergePolicy.MergeSpecification findForcedDeletesMerges(SegmentInfos segmentInfos) throws java.io.IOException
Determine what set of merge operations is necessary in order to expunge all deletes from the index.- Parameters:
segmentInfos- the total set of segments in the index- Throws:
java.io.IOException
-
close
public abstract void close()
Release all resources for the policy.- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable
-
useCompoundFile
public boolean useCompoundFile(SegmentInfos infos, SegmentCommitInfo mergedInfo) throws java.io.IOException
Returns 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 togetMaxCFSSegmentSizeMB()and the size is less or equal to the TotalIndexSize *getNoCFSRatio()otherwisefalse.- Throws:
java.io.IOException
-
getNoCFSRatio
public final double getNoCFSRatio()
Returns currentnoCFSRatio.- See Also:
setNoCFSRatio(double)
-
setNoCFSRatio
public final void setNoCFSRatio(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. Set to 1.0 to always use CFS regardless of merge size.
-
getMaxCFSSegmentSizeMB
public final double getMaxCFSSegmentSizeMB()
Returns the largest size allowed for a compound file segment
-
setMaxCFSSegmentSizeMB
public final void setMaxCFSSegmentSizeMB(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. Set this to Double.POSITIVE_INFINITY (default) and noCFSRatio to 1.0 to always use CFS regardless of merge size.
-
-