Hello,
We're encountering delays of 10+ minutes when trying to delete from our Solr
3.4 instance. We have 335k documents indexed and interface using SolrJ. Our
schema basically consists of a parent object with multiple child objects.
Every object is indexed as a separate document with the child documents
referencing parents via a 'parentId' field. When any part of a parent object
is updated solrServer.deleteByQuery() is called to delete the parent and all
the child documents, then solrServer.add() is called to reindex them. We
currently rely on autocommit, with maxDocs set to 100 and maxTime set to 30s.
Deletes work fine on another Solr test instance with 22k documents.
Any thoughts? Is this sort of delay common when deleting against this many
documents?
Thanks,Mike