You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2018/03/15 12:54:23 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7_3 1afe33384 -> aea84aa24


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

(cherry picked from commit 759b0d0)

(cherry picked from commit 4739d07)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/aea84aa2
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/aea84aa2
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/aea84aa2

Branch: refs/heads/branch_7_3
Commit: aea84aa2495ba377118a383012b4aa4e6d87a742
Parents: 1afe333
Author: Shalin Shekhar Mangar <sh...@apache.org>
Authored: Thu Mar 15 18:19:42 2018 +0530
Committer: Shalin Shekhar Mangar <sh...@apache.org>
Committed: Thu Mar 15 18:24:13 2018 +0530

----------------------------------------------------------------------
 solr/CHANGES.txt                                       | 2 ++
 solr/solr-ref-guide/src/indexconfig-in-solrconfig.adoc | 3 ---
 2 files changed, 2 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/aea84aa2/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 72db1b9..9479b8f 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -378,6 +378,8 @@ Other Changes
 * SOLR-12078: Fixed reproducable Failure in TestReplicationHandler.doTestIndexFetchOnMasterRestart that happened
   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 ==================
 
 Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/aea84aa2/solr/solr-ref-guide/src/indexconfig-in-solrconfig.adoc
----------------------------------------------------------------------
diff --git a/solr/solr-ref-guide/src/indexconfig-in-solrconfig.adoc b/solr/solr-ref-guide/src/indexconfig-in-solrconfig.adoc
index 3b79eab..e80eb07 100644
--- a/solr/solr-ref-guide/src/indexconfig-in-solrconfig.adoc
+++ b/solr/solr-ref-guide/src/indexconfig-in-solrconfig.adoc
@@ -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.
 
-`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.
 
 `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]
 ----
-<reopenReaders>true</reopenReaders>
 <deletionPolicy class="solr.SolrDeletionPolicy">
   <str name="maxCommitsToKeep">1</str>
   <str name="maxOptimizedCommitsToKeep">0</str>