mirror of https://github.com/apache/lucene.git
SOLR-6852: Updating the CHANGES.txt entry to the 'Upgrading from..' section
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1646032 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1a5b889c86
commit
a7a5cfc413
|
@ -119,6 +119,12 @@ Upgrading from Solr 4.x
|
||||||
* The "checkIntegrityAtMerge" option in solrconfig.xml is now a No-Op and should be removed
|
* The "checkIntegrityAtMerge" option in solrconfig.xml is now a No-Op and should be removed
|
||||||
from any solrconfig.xml files -- these integrity checks are now done automatically at a very
|
from any solrconfig.xml files -- these integrity checks are now done automatically at a very
|
||||||
low level during the segment merging process. See SOLR-6834 for more details.
|
low level during the segment merging process. See SOLR-6834 for more details.
|
||||||
|
|
||||||
|
* SimplePostTool (post.jar) no longer defaults to collection1, making either of core/collection
|
||||||
|
name or update URL mandatory. An existing call without an explicit update URL needs to now
|
||||||
|
have the core/collection name passed as "-Dc=<collection/core name>" e.g.:
|
||||||
|
java -jar -Dc=<collection_name> post.jar *.xml (new call with collection name)
|
||||||
|
See SOLR-6852 for more details.
|
||||||
|
|
||||||
Detailed Change List
|
Detailed Change List
|
||||||
----------------------
|
----------------------
|
||||||
|
|
|
@ -87,7 +87,7 @@ To add documents to the index, use the post.jar (or post.sh script) in
|
||||||
the example/exampledocs subdirectory (while Solr is running), for example:
|
the example/exampledocs subdirectory (while Solr is running), for example:
|
||||||
|
|
||||||
cd example/exampledocs
|
cd example/exampledocs
|
||||||
java -jar -Dc=<collection_name>post.jar *.xml
|
java -jar -Dc=<collection_name> post.jar *.xml
|
||||||
Or: sh post.sh *.xml
|
Or: sh post.sh *.xml
|
||||||
|
|
||||||
For more information about Solr examples please read...
|
For more information about Solr examples please read...
|
||||||
|
|
Loading…
Reference in New Issue