Hi,
I think the reason was indeed maxPendingDeletes which was configured to
1000.
After having updated to a solr nightly build with Lucene 2.4, the issue
seems to have disappeared.
Thanks for your advices.
--
Renaud Delbru
Mike Klaas wrote:
On 1-Jul-08, at 10:44 PM, Chris Hostetter wrote:
>
> : Yes, updating to a newer version of nightly Solr build could solve
> the
> : problem, but I am a little afraid to do it since solr-trunk has
> switched to
> : lucene 2.4-dev.
>
> but did you check wether or not you have maxPendingDeletes
> configured as
> yonik asked?
>
> That would explain exactly waht you are seeing ... after a certain
> number
> of deletes have passed, the next one would automaticly force a
> commit (and
> a newSearcher) and (i believe) subsequent deletes would block until
> the
> commit is done ... which sounds like exactly what you describe.
It shouldn't cause a commit, just a flushing of deletes. However,
deletes count toward both maxDocs and maxTime for <autocommit>
purposes, so that is the likely explanation.
-Mike