You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by an...@apache.org on 2014/12/16 19:12:34 UTC

svn commit: r1646033 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/CHANGES.txt solr/README.txt

Author: anshum
Date: Tue Dec 16 18:12:33 2014
New Revision: 1646033

URL: http://svn.apache.org/r1646033
Log:
SOLR-6852: Updating the CHANGES.txt entry to the 'Upgrading from..' section (merge from trunk)

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/CHANGES.txt   (contents, props changed)
    lucene/dev/branches/branch_5x/solr/README.txt   (contents, props changed)

Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1646033&r1=1646032&r2=1646033&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Tue Dec 16 18:12:33 2014
@@ -87,6 +87,12 @@ Upgrading from Solr 4.x
 * 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
   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
 ----------------------

Modified: lucene/dev/branches/branch_5x/solr/README.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/README.txt?rev=1646033&r1=1646032&r2=1646033&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/README.txt (original)
+++ lucene/dev/branches/branch_5x/solr/README.txt Tue Dec 16 18:12:33 2014
@@ -87,7 +87,7 @@ To add documents to the index, use the p
 the example/exampledocs subdirectory (while Solr is running), for example:
 
      cd example/exampledocs
-     java -jar -Dc=<collection_name>post.jar *.xml
+     java -jar -Dc=<collection_name> post.jar *.xml
 Or:  sh post.sh *.xml
 
 For more information about Solr examples please read...