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:
Anshum Gupta 2014-12-16 18:12:00 +00:00
parent 1a5b889c86
commit a7a5cfc413
2 changed files with 7 additions and 1 deletions

View File

@ -120,6 +120,12 @@ Upgrading from Solr 4.x
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
---------------------- ----------------------

View File

@ -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...