RE: SOLR 4.0 Beta documents being duplicated

2012-10-05 Thread David Quarterman
15:40 To: solr-user@lucene.apache.org Subject: Re: SOLR 4.0 Beta documents being duplicated How are you indexing? There was a problem with indexing from SolrJ if you indexed documents in batches, server.add(doclist) that's fixed in 4.0 RC#. The work-around is to add docs singly, server.add(doc)

Re: SOLR 4.0 Beta documents being duplicated

2012-10-05 Thread Erick Erickson
How are you indexing? There was a problem with indexing from SolrJ if you indexed documents in batches, server.add(doclist) that's fixed in 4.0 RC#. The work-around is to add docs singly, server.add(doc) Second thing. Bad Things Happen if you don't have a _version_ field in your schema.xml. Solr 4