On a solr instance with

 <!-- field to use to determine and enforce document uniqueness. -->
 <uniqueKey>id</uniqueKey>

This is happening:

http://solr..../select?q=id:abc123&fl=id

<doc>
<str name="id">abc123</str>
</doc>
<doc>
<str name="id">abc123</str>
</doc>

Lots of weird stuff is writing to this index: solrj code, python solr.py, curl, etc. -- many things at the same time. Autocommit is at 30m.

4500 of the ca. 1.5m docs in this index are doubled like this.

What can get past the doc uniqueness constraint? Has anyone seen this before?


Reply via email to