Re: Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Sujatha Arun
Thanks Erick, No problem. Will check . On Thu, Oct 2, 2014 at 12:54 AM, Erick Erickson wrote: > I'm clueless about the MongoDB connector. I suspect > that's where the issue is unless you can reproduce > this with a solr-only case. > > As you can tell, I don't recall seeing this problem come by >

Re: Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Erick Erickson
I'm clueless about the MongoDB connector. I suspect that's where the issue is unless you can reproduce this with a solr-only case. As you can tell, I don't recall seeing this problem come by the boards. Best, Erick On Wed, Oct 1, 2014 at 11:53 AM, Sujatha Arun wrote: > Erick, > > Actually I am

Re: Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Sujatha Arun
Erick, Actually I am synching data between solr and Mongodb using mongo-connector.The details below. I have submitterd an issue in Mongo-conenctor forum,just trying at the solr forum too just in case anybody has encountered the same :) or why does the log state No uncommitted changes. Skipping

Re: Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Erick Erickson
At this point details matter a lot. What exactly are you doing when you update? What happens if you issue an explicit update command? i.e. http://blahlbah/solr/collection/update?commit=true? Are you sure you aren't seeing, say, browser caching? Best, Erick On Wed, Oct 1, 2014 at 9:04 AM, Sujat

Re: Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Sujatha Arun
Thanks, BookId is the unique key, the issue is resolved with respect to delete .Its the update that causing the issue On Wed, Oct 1, 2014 at 8:51 PM, Erick Erickson wrote: > I'd add only one thing to Angel's comments: > you're deleting by "id", but querying by "BookId". This > _should_ work (on

Re: Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Erick Erickson
I'd add only one thing to Angel's comments: you're deleting by "id", but querying by "BookId". This _should_ work (on a quick glance at the code) iff your is "BookId"... I took a quick glance at the code and "id" should delete by , so is your "BookId" the in your schema? On Wed, Oct 1, 2014 a

Re: Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Angel Tchorbadjiiski
Hello Sujatha, have you tried to leave the quotes out? :-) Alternatively try using 'id:1.0' to see if the same error arises. A bit more information on the Update issue (exact query sent and all the log corresponding entries) would be needed to help you with your problem. Cheers Angel On 0

Solr 4.7 .0 Issues with Update and Delete

2014-10-01 Thread Sujatha Arun
I am having the following issue on delete and update in solr 4.7.0 *Delete Issue* I am using the following Curl command to delete a document from index curl http://localhost:8080/solr/bf/update?commit=true -H "Content-Type: text/xml" --data-binary '"1.0"' 07 This is what I see in logs I