public class FilterMergePolicy extends MergePolicy
MergePolicy instances.MergePolicy.MergeAbortedException, MergePolicy.MergeContext, MergePolicy.MergeException, MergePolicy.MergeSpecification, MergePolicy.OneMerge, MergePolicy.OneMergeProgress| Modifier and Type | Field and Description | 
|---|---|
protected MergePolicy | 
in
The wrapped  
MergePolicy. | 
DEFAULT_MAX_CFS_SEGMENT_SIZE, DEFAULT_NO_CFS_RATIO, maxCFSSegmentSize, noCFSRatio| Constructor and Description | 
|---|
FilterMergePolicy(MergePolicy in)
Creates a new filter merge policy instance wrapping another. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
MergePolicy.MergeSpecification | 
findForcedDeletesMerges(SegmentInfos segmentInfos,
                       MergePolicy.MergeContext mergeContext)
Determine what set of merge operations is necessary in order to expunge all
 deletes from the index. 
 | 
MergePolicy.MergeSpecification | 
findForcedMerges(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.MergeSpecification | 
findFullFlushMerges(MergeTrigger mergeTrigger,
                   SegmentInfos segmentInfos,
                   MergePolicy.MergeContext mergeContext)
Identifies merges that we want to execute (synchronously) on commit. 
 | 
MergePolicy.MergeSpecification | 
findMerges(MergeTrigger mergeTrigger,
          SegmentInfos segmentInfos,
          MergePolicy.MergeContext mergeContext)
Determine what set of merge operations are now necessary on the index. 
 | 
double | 
getMaxCFSSegmentSizeMB()
Returns the largest size allowed for a compound file segment 
 | 
double | 
getNoCFSRatio()
Returns current  
noCFSRatio. | 
boolean | 
keepFullyDeletedSegment(IOSupplier<CodecReader> readerIOSupplier)
Returns true if the segment represented by the given CodecReader should be keep even if it's fully deleted. 
 | 
int | 
numDeletesToMerge(SegmentCommitInfo info,
                 int delCount,
                 IOSupplier<CodecReader> readerSupplier)
Returns the number of deletes that a merge would claim on the given segment. 
 | 
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. 
 | 
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. 
 | 
protected long | 
size(SegmentCommitInfo info,
    MergePolicy.MergeContext context)
Return the byte size of the provided  
SegmentCommitInfo, pro-rated by percentage of
  non-deleted documents is set. | 
String | 
toString()  | 
boolean | 
useCompoundFile(SegmentInfos infos,
               SegmentCommitInfo mergedInfo,
               MergePolicy.MergeContext mergeContext)
Returns true if a new segment (regardless of its origin) should use the
 compound file format. 
 | 
assertDelCount, isMerged, message, segString, verboseprotected final MergePolicy in
MergePolicy.public FilterMergePolicy(MergePolicy in)
in - the wrapped MergePolicypublic MergePolicy.MergeSpecification findMerges(MergeTrigger mergeTrigger, SegmentInfos segmentInfos, MergePolicy.MergeContext mergeContext) throws IOException
MergePolicyIndexWriter calls this whenever there is a change to the segments.
 This call is always synchronized on the IndexWriter instance so
 only one thread at a time will call this method.findMerges in class MergePolicymergeTrigger - the event that triggered the mergesegmentInfos - the total set of segments in the indexmergeContext - the IndexWriter to find the merges onIOExceptionpublic MergePolicy.MergeSpecification findForcedMerges(SegmentInfos segmentInfos, int maxSegmentCount, Map<SegmentCommitInfo,Boolean> segmentsToMerge, MergePolicy.MergeContext mergeContext) throws IOException
MergePolicy<= the specified segment count. IndexWriter calls this when its
 IndexWriter.forceMerge(int) method is called. This call is always
 synchronized on the IndexWriter instance so only one thread at a
 time will call this method.findForcedMerges in class MergePolicysegmentInfos - 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 MergeContext to find the merges onIOExceptionpublic MergePolicy.MergeSpecification findForcedDeletesMerges(SegmentInfos segmentInfos, MergePolicy.MergeContext mergeContext) throws IOException
MergePolicyfindForcedDeletesMerges in class MergePolicysegmentInfos - the total set of segments in the indexmergeContext - the MergeContext to find the merges onIOExceptionpublic MergePolicy.MergeSpecification findFullFlushMerges(MergeTrigger mergeTrigger, SegmentInfos segmentInfos, MergePolicy.MergeContext mergeContext) throws IOException
MergePolicyMergePolicy you must also set a non-zero timeout using
 IndexWriterConfig.setMaxFullFlushMergeWaitMillis(long).
 Any merges returned here will make IndexWriter.commit(), IndexWriter.prepareCommit()
 or IndexWriter.getReader(boolean, boolean) block until
 the merges complete or until LiveIndexWriterConfig.getMaxFullFlushMergeWaitMillis() has elapsed. This may be
 used to merge small segments that have just been flushed, reducing the number of segments in
 the point in time snapshot. If a merge does not complete in the allotted time, it will continue to execute, and eventually finish and
 apply to future point in time snapshot, but will not be reflected in the current one.
 If a MergePolicy.OneMerge in the returned MergePolicy.MergeSpecification includes a segment already included in a registered
 merge, then IndexWriter.commit() or IndexWriter.prepareCommit() will throw a IllegalStateException.
 Use MergePolicy.MergeContext.getMergingSegments() to determine which segments are currently registered to merge.findFullFlushMerges in class MergePolicymergeTrigger - the event that triggered the merge (COMMIT or GET_READER).segmentInfos - the total set of segments in the index (while preparing the commit)mergeContext - the MergeContext to find the merges on, which should be used to determine which segments are
                     already in a registered merge (see MergePolicy.MergeContext.getMergingSegments()).IOExceptionpublic boolean useCompoundFile(SegmentInfos infos, SegmentCommitInfo mergedInfo, MergePolicy.MergeContext mergeContext) throws IOException
MergePolicytrue
 iff the size of the given mergedInfo is less or equal to
 MergePolicy.getMaxCFSSegmentSizeMB() and the size is less or equal to the
 TotalIndexSize * MergePolicy.getNoCFSRatio() otherwise false.useCompoundFile in class MergePolicyIOExceptionprotected long size(SegmentCommitInfo info, MergePolicy.MergeContext context) throws IOException
MergePolicySegmentCommitInfo, pro-rated by percentage of
  non-deleted documents is set.size in class MergePolicyIOExceptionpublic double getNoCFSRatio()
MergePolicynoCFSRatio.getNoCFSRatio in class MergePolicyMergePolicy.setNoCFSRatio(double)public final void setNoCFSRatio(double noCFSRatio)
MergePolicysetNoCFSRatio in class MergePolicypublic final void setMaxCFSSegmentSizeMB(double v)
MergePolicysetMaxCFSSegmentSizeMB in class MergePolicypublic final double getMaxCFSSegmentSizeMB()
MergePolicygetMaxCFSSegmentSizeMB in class MergePolicypublic boolean keepFullyDeletedSegment(IOSupplier<CodecReader> readerIOSupplier) throws IOException
MergePolicykeepFullyDeletedSegment in class MergePolicyIOExceptionpublic int numDeletesToMerge(SegmentCommitInfo info, int delCount, IOSupplier<CodecReader> readerSupplier) throws IOException
MergePolicynumDeletesToMerge in class MergePolicyinfo - the segment info that identifies the segmentdelCount - the number deleted documents for this segmentreaderSupplier - a supplier that allows to obtain a CodecReader for this segmentIOExceptionIndexWriter.softUpdateDocument(Term, Iterable, Field...), 
IndexWriterConfig.setSoftDeletesField(String)Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.