I'm using solr 1.4.1 and I've got about 280,000 docs in the index. I'm using
a multi core setup (if that makes any difference) with 2 cores.

When I check the stats from the JSP my updateHandler reports 3 deletes;
cumulative_deletesById : 3 

When I search from the admin page the docs are still found;

<?xml version="1.0" encoding="UTF-8"?>
<response>

<lst name="responseHeader">
 <int name="status">0</int>
 <int name="QTime">16</int>
 <lst name="params">
  <str name="q">FKWEBITM:33252</str>
  <str name="start">0</str>
  <str name="indent">on</str>
  <str name="explainOther"/>
  <str name="wt">standard</str>
  <str name="hl.fl"/>
  <str name="fq"/>
  <str name="version">2.2</str>
  <str name="qt">standard</str>
  <str name="fl">FKWEBITM</str>
  <str name="rows">10</str>
 </lst>
</lst>
<result name="response" numFound="1" start="0">
 <doc>
  <str name="FKWEBITM">33252</str>
 </doc>
</result>
</response>

My unique key in my schema.xml is FKWEBITM;
<uniqueKey>FKWEBITM</uniqueKey>
-- 
View this message in context: 
http://lucene.472066.n3.nabble.com/Deleting-with-the-DIH-sometimes-doesn-t-delete-tp1113098p1130054.html
Sent from the Solr - User mailing list archive at Nabble.com.

Reply via email to