You shouldn't be losing errors with HttpSolrServer. Are you seeing evidence that you are or is this mostly a curiosity question?
Do not it's better to batch up docs, your throughput will increase a LOT. That said, when you do batch (e.g. send 500 docs per update or whatever) and you get an error back, you're not quite sure what doc failed. So what people do is retry a failed batch one document at a time when the batch has errors and rely on Solr overwriting any docs in the batch that were indexed the first time. Best, Erick On Mon, Sep 28, 2015 at 2:27 PM, Matteo Grolla <[email protected]> wrote: > Hi, > if I need fine grained error reporting I use Http Solr server and send > 1 doc per request using the add method. > I report errors on exceptions of the add method, > I'm using autocommit so I'm not seing errors related to commit. > Am I loosing some errors? Is there a better way? > > Thanks
