Re: Soft commit from curl

2016-10-22 Thread mimino
Got it. Thanks. -- View this message in context: http://lucene.472066.n3.nabble.com/Soft-commit-from-curl-tp4302288p4302615.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Soft commit from curl

2016-10-21 Thread Erick Erickson
The best way is to look at your Solr logs. When you see the commit message, you'll see things like "start commit{,optimize=false,openSearcher=false,waitSearcher=true,expungeDeletes=false,softCommit=false,prepareCommit=false}" that ought to work, as should something like: curl blah blah/update?sof

Soft commit from curl

2016-10-20 Thread Michal Danilák
Does the following command issue soft commit or hard commit? curl http://localhost:8984/solr/update?softCommit=true -H "Content-Type: text/xml" --data-binary '' How to find out which commit was triggered? Can I get it somewhere in logs? Thanks.