SOLR-12099: Remove reopenReaders attribute from 'IndexConfig in SolrConfig' page in ref guide

This commit is contained in:
Shalin Shekhar Mangar 2018-03-15 18:19:42 +05:30
parent 5dfba25e34
commit 759b0d092f
2 changed files with 2 additions and 3 deletions

View File

@ -441,6 +441,8 @@ Other Changes
* SOLR-12078: Fixed reproducable Failure in TestReplicationHandler.doTestIndexFetchOnMasterRestart that happened * SOLR-12078: Fixed reproducable Failure in TestReplicationHandler.doTestIndexFetchOnMasterRestart that happened
due to using stale http connections. (Gus Heck, shalin) due to using stale http connections. (Gus Heck, shalin)
* SOLR-12099: Remove reopenReaders attribute from 'IndexConfig in SolrConfig' page in ref guide. (shalin)
================== 7.2.1 ================== ================== 7.2.1 ==================
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release. Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.

View File

@ -176,8 +176,6 @@ The maximum time to wait for a write lock on an IndexWriter. The default is 1000
There are a few other parameters that may be important to configure for your implementation. These settings affect how or when updates are made to an index. There are a few other parameters that may be important to configure for your implementation. These settings affect how or when updates are made to an index.
`reopenReaders`:: Controls if IndexReaders will be re-opened, instead of closed and then opened, which is often less efficient. The default is true.
`deletionPolicy`:: Controls how commits are retained in case of rollback. The default is `SolrDeletionPolicy`, which has sub-parameters for the maximum number of commits to keep (`maxCommitsToKeep`), the maximum number of optimized commits to keep (`maxOptimizedCommitsToKeep`), and the maximum age of any commit to keep (`maxCommitAge`), which supports `DateMathParser` syntax. `deletionPolicy`:: Controls how commits are retained in case of rollback. The default is `SolrDeletionPolicy`, which has sub-parameters for the maximum number of commits to keep (`maxCommitsToKeep`), the maximum number of optimized commits to keep (`maxOptimizedCommitsToKeep`), and the maximum age of any commit to keep (`maxCommitAge`), which supports `DateMathParser` syntax.
`infoStream`:: The InfoStream setting instructs the underlying Lucene classes to write detailed debug information from the indexing process as Solr log messages. `infoStream`:: The InfoStream setting instructs the underlying Lucene classes to write detailed debug information from the indexing process as Solr log messages.
@ -185,7 +183,6 @@ There are a few other parameters that may be important to configure for your imp
[source,xml] [source,xml]
---- ----
<reopenReaders>true</reopenReaders>
<deletionPolicy class="solr.SolrDeletionPolicy"> <deletionPolicy class="solr.SolrDeletionPolicy">
<str name="maxCommitsToKeep">1</str> <str name="maxCommitsToKeep">1</str>
<str name="maxOptimizedCommitsToKeep">0</str> <str name="maxOptimizedCommitsToKeep">0</str>