Re: Solrj - when a request fails

2011-09-24 Thread Erick Erickson
Hmmm. I'm a little confused. Are you sure your log is going somewhere and that you are NOT seeing any stack traces? Because it looks like you *are* seeing them. In which case re-throwing an error breaks your file fetch loop and stops your processing. I'd actually expect that you're losing

RE: Solrj - when a request fails

2011-09-23 Thread Gunther, Andrew
All the solr methods look like they should throw those 2 exceptions. Have you tried the DirectXmlRequest method? up.process(solrServer); public UpdateResponse process( SolrServer server ) throws SolrServerException, IOException { long startTime = System.currentTimeMillis();

Re: Solrj - when a request fails

2011-09-23 Thread Walter Closenfleight
I tried that with the same results. You would think I would get the exception back from Solr so I could trap it, instead I lose all other requests after it. On Fri, Sep 23, 2011 at 8:33 AM, Gunther, Andrew gunth...@si.edu wrote: All the solr methods look like they should throw those 2