Class IndexWriterConfig
- java.lang.Object
-
- org.apache.lucene.index.LiveIndexWriterConfig
-
- org.apache.lucene.index.IndexWriterConfig
-
- All Implemented Interfaces:
java.lang.Cloneable
public final class IndexWriterConfig extends LiveIndexWriterConfig implements java.lang.Cloneable
Holds all the configuration that is used to create anIndexWriter. OnceIndexWriterhas been created with this object, changes to this object will not affect theIndexWriterinstance. For that, useLiveIndexWriterConfigthat is returned fromIndexWriter.getConfig().All setter methods return
IndexWriterConfigto allow chaining settings conveniently, for example:IndexWriterConfig conf = new IndexWriterConfig(analyzer); conf.setter1().setter2();
- Since:
- 3.1
- See Also:
IndexWriter.getConfig()
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classIndexWriterConfig.OpenModeSpecifies the open mode forIndexWriter.
-
Field Summary
Fields Modifier and Type Field Description static intDEFAULT_MAX_BUFFERED_DELETE_TERMSDisabled by default (because IndexWriter flushes by RAM usage by default).static intDEFAULT_MAX_BUFFERED_DOCSDisabled by default (because IndexWriter flushes by RAM usage by default).static intDEFAULT_MAX_THREAD_STATESThe maximum number of simultaneous threads that may be indexing documents at once in IndexWriter; if more than this many threads arrive they will wait for others to finish.static doubleDEFAULT_RAM_BUFFER_SIZE_MBDefault value is 16 MB (which means flush when buffered docs consume approximately 16 MB RAM).static intDEFAULT_RAM_PER_THREAD_HARD_LIMIT_MBDefault value is 1945.static booleanDEFAULT_READER_POOLINGDefault setting forsetReaderPooling(boolean).static intDEFAULT_READER_TERMS_INDEX_DIVISORDefault value is 1.static intDEFAULT_TERM_INDEX_INTERVALDefault value is 32.static booleanDEFAULT_USE_COMPOUND_FILE_SYSTEMDefault value for compound file system for newly written segments (set totrue).static intDISABLE_AUTO_FLUSHDenotes a flush trigger is disabled.static longWRITE_LOCK_TIMEOUTDefault value for the write lock timeout (1,000 ms).
-
Constructor Summary
Constructors Constructor Description IndexWriterConfig(Version matchVersion, Analyzer analyzer)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IndexWriterConfigclone()AnalyzergetAnalyzer()Returns the default analyzer to use for indexing documents.CodecgetCodec()Returns the currentCodec.static longgetDefaultWriteLockTimeout()Returns the default write lock timeout for newly instantiated IndexWriterConfigs.IndexCommitgetIndexCommit()Returns theIndexCommitas specified insetIndexCommit(IndexCommit)or the default,nullwhich specifies to open the latest index commit point.IndexDeletionPolicygetIndexDeletionPolicy()Returns theIndexDeletionPolicyspecified insetIndexDeletionPolicy(IndexDeletionPolicy)or the defaultKeepOnlyLastCommitDeletionPolicy/InfoStreamgetInfoStream()ReturnsInfoStreamused for debugging.intgetMaxBufferedDeleteTerms()Returns the number of buffered deleted terms that will trigger a flush of all buffered deletes if enabled.intgetMaxBufferedDocs()Returns the number of buffered added documents that will trigger a flush if enabled.intgetMaxThreadStates()Returns the max number of simultaneous threads that may be indexing documents at once in IndexWriter.IndexWriter.IndexReaderWarmergetMergedSegmentWarmer()Returns the current merged segment warmer.MergePolicygetMergePolicy()Returns the current MergePolicy in use by this writer.MergeSchedulergetMergeScheduler()Returns theMergeSchedulerthat was set bysetMergeScheduler(MergeScheduler).IndexWriterConfig.OpenModegetOpenMode()Returns theIndexWriterConfig.OpenModeset bysetOpenMode(OpenMode).doublegetRAMBufferSizeMB()Returns the value set byLiveIndexWriterConfig.setRAMBufferSizeMB(double)if enabled.intgetRAMPerThreadHardLimitMB()Returns the max amount of memory eachDocumentsWriterPerThreadcan consume until forcefully flushed.booleangetReaderPooling()ReturnstrueifIndexWritershould pool readers even ifDirectoryReader.open(IndexWriter, boolean)has not been called.intgetReaderTermsIndexDivisor()Returns thetermInfosIndexDivisor.SimilaritygetSimilarity()Expert: returns theSimilarityimplementation used by thisIndexWriter.intgetTermIndexInterval()Returns the interval between indexed terms.longgetWriteLockTimeout()Returns allowed timeout when acquiring the write lock.IndexWriterConfigsetCodec(Codec codec)Set theCodec.static voidsetDefaultWriteLockTimeout(long writeLockTimeout)Sets the default (for any instance) maximum time to wait for a write lock (in milliseconds).IndexWriterConfigsetIndexCommit(IndexCommit commit)Expert: allows to open a certain commit point.IndexWriterConfigsetIndexDeletionPolicy(IndexDeletionPolicy delPolicy)Expert: allows an optionalIndexDeletionPolicyimplementation to be specified.IndexWriterConfigsetInfoStream(java.io.PrintStream printStream)Convenience method that usesPrintStreamInfoStream.IndexWriterConfigsetInfoStream(InfoStream infoStream)Information about merges, deletes and a message when maxFieldLength is reached will be printed to this.IndexWriterConfigsetMaxBufferedDeleteTerms(int maxBufferedDeleteTerms)Determines the maximum number of delete-by-term operations that will be buffered before both the buffered in-memory delete terms and queries are applied and flushed.IndexWriterConfigsetMaxBufferedDocs(int maxBufferedDocs)Determines the minimal number of documents required before the buffered in-memory documents are flushed as a new Segment.IndexWriterConfigsetMaxThreadStates(int maxThreadStates)Sets the max number of simultaneous threads that may be indexing documents at once in IndexWriter.IndexWriterConfigsetMergedSegmentWarmer(IndexWriter.IndexReaderWarmer mergeSegmentWarmer)Set the merged segment warmer.IndexWriterConfigsetMergePolicy(MergePolicy mergePolicy)Expert:MergePolicyis invoked whenever there are changes to the segments in the index.IndexWriterConfigsetMergeScheduler(MergeScheduler mergeScheduler)Expert: sets the merge scheduler used by this writer.IndexWriterConfigsetOpenMode(IndexWriterConfig.OpenMode openMode)SpecifiesIndexWriterConfig.OpenModeof the index.IndexWriterConfigsetRAMBufferSizeMB(double ramBufferSizeMB)Determines the amount of RAM that may be used for buffering added documents and deletions before they are flushed to the Directory.IndexWriterConfigsetRAMPerThreadHardLimitMB(int perThreadHardLimitMB)Expert: Sets the maximum memory consumption per thread triggering a forced flush if exceeded.IndexWriterConfigsetReaderPooling(boolean readerPooling)By default, IndexWriter does not pool the SegmentReaders it must open for deletions and merging, unless a near-real-time reader has been obtained by callingDirectoryReader.open(IndexWriter, boolean).IndexWriterConfigsetReaderTermsIndexDivisor(int divisor)Sets the termsIndexDivisor passed to any readers that IndexWriter opens, for example when applying deletes or creating a near-real-time reader inDirectoryReader.open(IndexWriter, boolean).IndexWriterConfigsetSimilarity(Similarity similarity)Expert: set theSimilarityimplementation used by this IndexWriter.IndexWriterConfigsetTermIndexInterval(int interval)Expert: set the interval between indexed terms.IndexWriterConfigsetUseCompoundFile(boolean useCompoundFile)Sets if theIndexWritershould pack newly written segments in a compound file.IndexWriterConfigsetWriteLockTimeout(long writeLockTimeout)Sets the maximum time to wait for a write lock (in milliseconds) for this instance.java.lang.StringtoString()-
Methods inherited from class org.apache.lucene.index.LiveIndexWriterConfig
getUseCompoundFile
-
-
-
-
Field Detail
-
DEFAULT_TERM_INDEX_INTERVAL
public static final int DEFAULT_TERM_INDEX_INTERVAL
Default value is 32. Change usingsetTermIndexInterval(int).- See Also:
- Constant Field Values
-
DISABLE_AUTO_FLUSH
public static final int DISABLE_AUTO_FLUSH
Denotes a flush trigger is disabled.- See Also:
- Constant Field Values
-
DEFAULT_MAX_BUFFERED_DELETE_TERMS
public static final int DEFAULT_MAX_BUFFERED_DELETE_TERMS
Disabled by default (because IndexWriter flushes by RAM usage by default).- See Also:
- Constant Field Values
-
DEFAULT_MAX_BUFFERED_DOCS
public static final int DEFAULT_MAX_BUFFERED_DOCS
Disabled by default (because IndexWriter flushes by RAM usage by default).- See Also:
- Constant Field Values
-
DEFAULT_RAM_BUFFER_SIZE_MB
public static final double DEFAULT_RAM_BUFFER_SIZE_MB
Default value is 16 MB (which means flush when buffered docs consume approximately 16 MB RAM).- See Also:
- Constant Field Values
-
WRITE_LOCK_TIMEOUT
public static long WRITE_LOCK_TIMEOUT
Default value for the write lock timeout (1,000 ms).- See Also:
setDefaultWriteLockTimeout(long)
-
DEFAULT_READER_POOLING
public static final boolean DEFAULT_READER_POOLING
Default setting forsetReaderPooling(boolean).- See Also:
- Constant Field Values
-
DEFAULT_READER_TERMS_INDEX_DIVISOR
public static final int DEFAULT_READER_TERMS_INDEX_DIVISOR
Default value is 1. Change usingsetReaderTermsIndexDivisor(int).- See Also:
- Constant Field Values
-
DEFAULT_RAM_PER_THREAD_HARD_LIMIT_MB
public static final int DEFAULT_RAM_PER_THREAD_HARD_LIMIT_MB
Default value is 1945. Change usingsetRAMPerThreadHardLimitMB(int)- See Also:
- Constant Field Values
-
DEFAULT_MAX_THREAD_STATES
public static final int DEFAULT_MAX_THREAD_STATES
The maximum number of simultaneous threads that may be indexing documents at once in IndexWriter; if more than this many threads arrive they will wait for others to finish. Default value is 8.- See Also:
- Constant Field Values
-
DEFAULT_USE_COMPOUND_FILE_SYSTEM
public static final boolean DEFAULT_USE_COMPOUND_FILE_SYSTEM
Default value for compound file system for newly written segments (set totrue). For batch indexing with very large ram buffers usefalse- See Also:
- Constant Field Values
-
-
Constructor Detail
-
IndexWriterConfig
public IndexWriterConfig(Version matchVersion, Analyzer analyzer)
Creates a new config that with defaults that match the specifiedVersionas well as the defaultAnalyzer. If matchVersion is >=Version.LUCENE_32,TieredMergePolicyis used for merging; elseLogByteSizeMergePolicy. Note thatTieredMergePolicyis free to select non-contiguous merges, which means docIDs may not remain monotonic over time. If this is a problem you should switch toLogByteSizeMergePolicyorLogDocMergePolicy.
-
-
Method Detail
-
setDefaultWriteLockTimeout
public static void setDefaultWriteLockTimeout(long writeLockTimeout)
Sets the default (for any instance) maximum time to wait for a write lock (in milliseconds).
-
getDefaultWriteLockTimeout
public static long getDefaultWriteLockTimeout()
Returns the default write lock timeout for newly instantiated IndexWriterConfigs.- See Also:
setDefaultWriteLockTimeout(long)
-
clone
public IndexWriterConfig clone()
-
setOpenMode
public IndexWriterConfig setOpenMode(IndexWriterConfig.OpenMode openMode)
SpecifiesIndexWriterConfig.OpenModeof the index.Only takes effect when IndexWriter is first created.
-
getOpenMode
public IndexWriterConfig.OpenMode getOpenMode()
Description copied from class:LiveIndexWriterConfigReturns theIndexWriterConfig.OpenModeset bysetOpenMode(OpenMode).- Overrides:
getOpenModein classLiveIndexWriterConfig
-
setIndexDeletionPolicy
public IndexWriterConfig setIndexDeletionPolicy(IndexDeletionPolicy delPolicy)
Expert: allows an optionalIndexDeletionPolicyimplementation to be specified. You can use this to control when prior commits are deleted from the index. The default policy isKeepOnlyLastCommitDeletionPolicywhich removes all prior commits as soon as a new commit is done (this matches behavior before 2.2). Creating your own policy can allow you to explicitly keep previous "point in time" commits alive in the index for some time, to allow readers to refresh to the new commit without having the old commit deleted out from under them. This is necessary on filesystems like NFS that do not support "delete on last close" semantics, which Lucene's "point in time" search normally relies on.NOTE: the deletion policy cannot be null.
Only takes effect when IndexWriter is first created.
-
getIndexDeletionPolicy
public IndexDeletionPolicy getIndexDeletionPolicy()
Description copied from class:LiveIndexWriterConfigReturns theIndexDeletionPolicyspecified insetIndexDeletionPolicy(IndexDeletionPolicy)or the defaultKeepOnlyLastCommitDeletionPolicy/- Overrides:
getIndexDeletionPolicyin classLiveIndexWriterConfig
-
setIndexCommit
public IndexWriterConfig setIndexCommit(IndexCommit commit)
Expert: allows to open a certain commit point. The default is null which opens the latest commit point.Only takes effect when IndexWriter is first created.
-
getIndexCommit
public IndexCommit getIndexCommit()
Description copied from class:LiveIndexWriterConfigReturns theIndexCommitas specified insetIndexCommit(IndexCommit)or the default,nullwhich specifies to open the latest index commit point.- Overrides:
getIndexCommitin classLiveIndexWriterConfig
-
setSimilarity
public IndexWriterConfig setSimilarity(Similarity similarity)
Expert: set theSimilarityimplementation used by this IndexWriter.NOTE: the similarity cannot be null.
Only takes effect when IndexWriter is first created.
-
getSimilarity
public Similarity getSimilarity()
Description copied from class:LiveIndexWriterConfigExpert: returns theSimilarityimplementation used by thisIndexWriter.- Overrides:
getSimilarityin classLiveIndexWriterConfig
-
setMergeScheduler
public IndexWriterConfig setMergeScheduler(MergeScheduler mergeScheduler)
Expert: sets the merge scheduler used by this writer. The default isConcurrentMergeScheduler.NOTE: the merge scheduler cannot be null.
Only takes effect when IndexWriter is first created.
-
getMergeScheduler
public MergeScheduler getMergeScheduler()
Description copied from class:LiveIndexWriterConfigReturns theMergeSchedulerthat was set bysetMergeScheduler(MergeScheduler).- Overrides:
getMergeSchedulerin classLiveIndexWriterConfig
-
setWriteLockTimeout
public IndexWriterConfig setWriteLockTimeout(long writeLockTimeout)
Sets the maximum time to wait for a write lock (in milliseconds) for this instance. You can change the default value for all instances by callingsetDefaultWriteLockTimeout(long).Only takes effect when IndexWriter is first created.
-
getWriteLockTimeout
public long getWriteLockTimeout()
Description copied from class:LiveIndexWriterConfigReturns allowed timeout when acquiring the write lock.- Overrides:
getWriteLockTimeoutin classLiveIndexWriterConfig- See Also:
setWriteLockTimeout(long)
-
setMergePolicy
public IndexWriterConfig setMergePolicy(MergePolicy mergePolicy)
Expert:MergePolicyis invoked whenever there are changes to the segments in the index. Its role is to select which merges to do, if any, and return aMergePolicy.MergeSpecificationdescribing the merges. It also selects merges to do for forceMerge.Only takes effect when IndexWriter is first created.
-
setCodec
public IndexWriterConfig setCodec(Codec codec)
Set theCodec.Only takes effect when IndexWriter is first created.
-
getCodec
public Codec getCodec()
Description copied from class:LiveIndexWriterConfigReturns the currentCodec.- Overrides:
getCodecin classLiveIndexWriterConfig
-
getMergePolicy
public MergePolicy getMergePolicy()
Description copied from class:LiveIndexWriterConfigReturns the current MergePolicy in use by this writer.- Overrides:
getMergePolicyin classLiveIndexWriterConfig- See Also:
setMergePolicy(MergePolicy)
-
setMaxThreadStates
public IndexWriterConfig setMaxThreadStates(int maxThreadStates)
Sets the max number of simultaneous threads that may be indexing documents at once in IndexWriter. Values < 1 are invalid and if passedmaxThreadStateswill be set toDEFAULT_MAX_THREAD_STATES.Only takes effect when IndexWriter is first created.
-
getMaxThreadStates
public int getMaxThreadStates()
Description copied from class:LiveIndexWriterConfigReturns the max number of simultaneous threads that may be indexing documents at once in IndexWriter.- Overrides:
getMaxThreadStatesin classLiveIndexWriterConfig
-
setReaderPooling
public IndexWriterConfig setReaderPooling(boolean readerPooling)
By default, IndexWriter does not pool the SegmentReaders it must open for deletions and merging, unless a near-real-time reader has been obtained by callingDirectoryReader.open(IndexWriter, boolean). This method lets you enable pooling without getting a near-real-time reader. NOTE: if you set this to false, IndexWriter will still pool readers onceDirectoryReader.open(IndexWriter, boolean)is called.Only takes effect when IndexWriter is first created.
-
getReaderPooling
public boolean getReaderPooling()
Description copied from class:LiveIndexWriterConfigReturnstrueifIndexWritershould pool readers even ifDirectoryReader.open(IndexWriter, boolean)has not been called.- Overrides:
getReaderPoolingin classLiveIndexWriterConfig
-
setRAMPerThreadHardLimitMB
public IndexWriterConfig setRAMPerThreadHardLimitMB(int perThreadHardLimitMB)
Expert: Sets the maximum memory consumption per thread triggering a forced flush if exceeded. ADocumentsWriterPerThreadis forcefully flushed once it exceeds this limit even if thegetRAMBufferSizeMB()has not been exceeded. This is a safety limit to prevent aDocumentsWriterPerThreadfrom address space exhaustion due to its internal 32 bit signed integer based memory addressing. The given value must be less that 2GB (2048MB)- See Also:
DEFAULT_RAM_PER_THREAD_HARD_LIMIT_MB
-
getRAMPerThreadHardLimitMB
public int getRAMPerThreadHardLimitMB()
Description copied from class:LiveIndexWriterConfigReturns the max amount of memory eachDocumentsWriterPerThreadcan consume until forcefully flushed.- Overrides:
getRAMPerThreadHardLimitMBin classLiveIndexWriterConfig- See Also:
setRAMPerThreadHardLimitMB(int)
-
getInfoStream
public InfoStream getInfoStream()
Description copied from class:LiveIndexWriterConfigReturnsInfoStreamused for debugging.- Overrides:
getInfoStreamin classLiveIndexWriterConfig- See Also:
setInfoStream(InfoStream)
-
getAnalyzer
public Analyzer getAnalyzer()
Description copied from class:LiveIndexWriterConfigReturns the default analyzer to use for indexing documents.- Overrides:
getAnalyzerin classLiveIndexWriterConfig
-
getMaxBufferedDeleteTerms
public int getMaxBufferedDeleteTerms()
Description copied from class:LiveIndexWriterConfigReturns the number of buffered deleted terms that will trigger a flush of all buffered deletes if enabled.- Overrides:
getMaxBufferedDeleteTermsin classLiveIndexWriterConfig- See Also:
LiveIndexWriterConfig.setMaxBufferedDeleteTerms(int)
-
getMaxBufferedDocs
public int getMaxBufferedDocs()
Description copied from class:LiveIndexWriterConfigReturns the number of buffered added documents that will trigger a flush if enabled.- Overrides:
getMaxBufferedDocsin classLiveIndexWriterConfig- See Also:
LiveIndexWriterConfig.setMaxBufferedDocs(int)
-
getMergedSegmentWarmer
public IndexWriter.IndexReaderWarmer getMergedSegmentWarmer()
Description copied from class:LiveIndexWriterConfigReturns the current merged segment warmer. SeeIndexWriter.IndexReaderWarmer.- Overrides:
getMergedSegmentWarmerin classLiveIndexWriterConfig
-
getRAMBufferSizeMB
public double getRAMBufferSizeMB()
Description copied from class:LiveIndexWriterConfigReturns the value set byLiveIndexWriterConfig.setRAMBufferSizeMB(double)if enabled.- Overrides:
getRAMBufferSizeMBin classLiveIndexWriterConfig
-
getReaderTermsIndexDivisor
public int getReaderTermsIndexDivisor()
Description copied from class:LiveIndexWriterConfigReturns thetermInfosIndexDivisor.- Overrides:
getReaderTermsIndexDivisorin classLiveIndexWriterConfig- See Also:
LiveIndexWriterConfig.setReaderTermsIndexDivisor(int)
-
getTermIndexInterval
public int getTermIndexInterval()
Description copied from class:LiveIndexWriterConfigReturns the interval between indexed terms.- Overrides:
getTermIndexIntervalin classLiveIndexWriterConfig- See Also:
LiveIndexWriterConfig.setTermIndexInterval(int)
-
setInfoStream
public IndexWriterConfig setInfoStream(InfoStream infoStream)
Information about merges, deletes and a message when maxFieldLength is reached will be printed to this. Must not be null, butInfoStream.NO_OUTPUTmay be used to supress output.
-
setInfoStream
public IndexWriterConfig setInfoStream(java.io.PrintStream printStream)
Convenience method that usesPrintStreamInfoStream. Must not be null.
-
setMaxBufferedDeleteTerms
public IndexWriterConfig setMaxBufferedDeleteTerms(int maxBufferedDeleteTerms)
Description copied from class:LiveIndexWriterConfigDetermines the maximum number of delete-by-term operations that will be buffered before both the buffered in-memory delete terms and queries are applied and flushed.Disabled by default (writer flushes by RAM usage).
NOTE: This setting won't trigger a segment flush.
Takes effect immediately, but only the next time a document is added, updated or deleted. Also, if you only delete-by-query, this setting has no effect, i.e. delete queries are buffered until the next segment is flushed.
- Overrides:
setMaxBufferedDeleteTermsin classLiveIndexWriterConfig- See Also:
LiveIndexWriterConfig.setRAMBufferSizeMB(double)
-
setMaxBufferedDocs
public IndexWriterConfig setMaxBufferedDocs(int maxBufferedDocs)
Description copied from class:LiveIndexWriterConfigDetermines the minimal number of documents required before the buffered in-memory documents are flushed as a new Segment. Large values generally give faster indexing.When this is set, the writer will flush every maxBufferedDocs added documents. Pass in
DISABLE_AUTO_FLUSHto prevent triggering a flush due to number of buffered documents. Note that if flushing by RAM usage is also enabled, then the flush will be triggered by whichever comes first.Disabled by default (writer flushes by RAM usage).
Takes effect immediately, but only the next time a document is added, updated or deleted.
- Overrides:
setMaxBufferedDocsin classLiveIndexWriterConfig- See Also:
LiveIndexWriterConfig.setRAMBufferSizeMB(double)
-
setMergedSegmentWarmer
public IndexWriterConfig setMergedSegmentWarmer(IndexWriter.IndexReaderWarmer mergeSegmentWarmer)
Description copied from class:LiveIndexWriterConfigSet the merged segment warmer. SeeIndexWriter.IndexReaderWarmer.Takes effect on the next merge.
- Overrides:
setMergedSegmentWarmerin classLiveIndexWriterConfig
-
setRAMBufferSizeMB
public IndexWriterConfig setRAMBufferSizeMB(double ramBufferSizeMB)
Description copied from class:LiveIndexWriterConfigDetermines the amount of RAM that may be used for buffering added documents and deletions before they are flushed to the Directory. Generally for faster indexing performance it's best to flush by RAM usage instead of document count and use as large a RAM buffer as you can.When this is set, the writer will flush whenever buffered documents and deletions use this much RAM. Pass in
DISABLE_AUTO_FLUSHto prevent triggering a flush due to RAM usage. Note that if flushing by document count is also enabled, then the flush will be triggered by whichever comes first.The maximum RAM limit is inherently determined by the JVMs available memory. Yet, an
IndexWritersession can consume a significantly larger amount of memory than the given RAM limit since this limit is just an indicator when to flush memory resident documents to the Directory. Flushes are likely happen concurrently while other threads adding documents to the writer. For application stability the available memory in the JVM should be significantly larger than the RAM buffer used for indexing.NOTE: the account of RAM usage for pending deletions is only approximate. Specifically, if you delete by Query, Lucene currently has no way to measure the RAM usage of individual Queries so the accounting will under-estimate and you should compensate by either calling commit() periodically yourself, or by using
LiveIndexWriterConfig.setMaxBufferedDeleteTerms(int)to flush and apply buffered deletes by count instead of RAM usage (for each buffered delete Query a constant number of bytes is used to estimate RAM usage). Note that enablingLiveIndexWriterConfig.setMaxBufferedDeleteTerms(int)will not trigger any segment flushes.NOTE: It's not guaranteed that all memory resident documents are flushed once this limit is exceeded. Depending on the configured
FlushPolicyonly a subset of the buffered documents are flushed and therefore only parts of the RAM buffer is released.The default value is
DEFAULT_RAM_BUFFER_SIZE_MB.Takes effect immediately, but only the next time a document is added, updated or deleted.
- Overrides:
setRAMBufferSizeMBin classLiveIndexWriterConfig- See Also:
setRAMPerThreadHardLimitMB(int)
-
setReaderTermsIndexDivisor
public IndexWriterConfig setReaderTermsIndexDivisor(int divisor)
Description copied from class:LiveIndexWriterConfigSets the termsIndexDivisor passed to any readers that IndexWriter opens, for example when applying deletes or creating a near-real-time reader inDirectoryReader.open(IndexWriter, boolean). If you pass -1, the terms index won't be loaded by the readers. This is only useful in advanced situations when you will only .next() through all terms; attempts to seek will hit an exception.Takes effect immediately, but only applies to readers opened after this call
NOTE: divisor settings > 1 do not apply to all PostingsFormat implementations, including the default one in this release. It only makes sense for terms indexes that can efficiently re-sample terms at load time.
- Overrides:
setReaderTermsIndexDivisorin classLiveIndexWriterConfig
-
setTermIndexInterval
public IndexWriterConfig setTermIndexInterval(int interval)
Description copied from class:LiveIndexWriterConfigExpert: set the interval between indexed terms. Large values cause less memory to be used by IndexReader, but slow random-access to terms. Small values cause more memory to be used by an IndexReader, and speed random-access to terms.This parameter determines the amount of computation required per query term, regardless of the number of documents that contain that term. In particular, it is the maximum number of other terms that must be scanned before a term is located and its frequency and position information may be processed. In a large index with user-entered query terms, query processing time is likely to be dominated not by term lookup but rather by the processing of frequency and positional data. In a small index or when many uncommon query terms are generated (e.g., by wildcard queries) term lookup may become a dominant cost.
In particular,
numUniqueTerms/intervalterms are read into memory by an IndexReader, and, on average,interval/2terms must be scanned for each random term access.Takes effect immediately, but only applies to newly flushed/merged segments.
NOTE: This parameter does not apply to all PostingsFormat implementations, including the default one in this release. It only makes sense for term indexes that are implemented as a fixed gap between terms. For example,
Lucene41PostingsFormatimplements the term index instead based upon how terms share prefixes. To configure its parameters (the minimum and maximum size for a block), you would instead useLucene41PostingsFormat(int, int). which can also be configured on a per-field basis://customize Lucene41PostingsFormat, passing minBlockSize=50, maxBlockSize=100 final PostingsFormat tweakedPostings = new Lucene41PostingsFormat(50, 100); iwc.setCodec(new Lucene45Codec() { @Override public PostingsFormat getPostingsFormatForField(String field) { if (field.equals("fieldWithTonsOfTerms")) return tweakedPostings; else return super.getPostingsFormatForField(field); } });Note that other implementations may have their own parameters, or no parameters at all.- Overrides:
setTermIndexIntervalin classLiveIndexWriterConfig- See Also:
DEFAULT_TERM_INDEX_INTERVAL
-
setUseCompoundFile
public IndexWriterConfig setUseCompoundFile(boolean useCompoundFile)
Description copied from class:LiveIndexWriterConfigSets if theIndexWritershould pack newly written segments in a compound file. Default istrue.Use
falsefor batch indexing with very large ram buffer settings.Note: To control compound file usage during segment merges see
MergePolicy.setNoCFSRatio(double)andMergePolicy.setMaxCFSSegmentSizeMB(double). This setting only applies to newly created segments.- Overrides:
setUseCompoundFilein classLiveIndexWriterConfig
-
toString
public java.lang.String toString()
- Overrides:
toStringin classLiveIndexWriterConfig
-
-