RE: Problem with well-formed XML docs

2006-07-31 Thread Andre Basse
Updated to the latest build. - Problem solved. Thanks for your help!!! -Original Message- From: Chris Hostetter [mailto:[EMAIL PROTECTED] Sent: Friday, 28 July 2006 5:42 PM To: solr-user@lucene.apache.org Subject: Re: Problem with well-formed XML docs Andre, which Appserver are you

Re: Doc add limit

2006-07-31 Thread sangraal aiken
Just an update, I changed my doUpdate method to use the HTTPClient API and have the exact same problem... the update hangs at exactly the same point... 6,144. private String doUpdate(String sw) { StringBuffer updateResult = new StringBuffer(); try { // open connection log.info("C

Re: Doc add limit

2006-07-31 Thread sangraal aiken
Very interesting... thanks Thom. I haven't given HttpClient a shot yet, but will be soon. -S On 7/31/06, Thom Nelson <[EMAIL PROTECTED]> wrote: I had a similar problem and was able to fix it in Solr by manually buffering the responses to a StringWriter before sending it to Tomcat. Essentially,

Re: Doc add limit

2006-07-31 Thread sangraal aiken
Chris, my response is below each of your paragraphs... I don't have the means to try out this code right now ... but i can't see any obvious problems with it (there may be somewhere that you are opening a stream or reader and not closing it, but i didn't see one) ... i notice you are running th

Re: Doc add limit

2006-07-31 Thread Thom Nelson
I had a similar problem and was able to fix it in Solr by manually buffering the responses to a StringWriter before sending it to Tomcat. Essentially, Tomcat's buffer will only hold so much and at that point it blocks (thus it always hangs at a constant number of documents). However, a better solu

Re: Doc add limit

2006-07-31 Thread sangraal aiken
Those are some great ideas Chris... I'm going to try some of them out. I'll post the results when I get a chance to do more testing. Thanks. At this point I can work around the problem by ignoring Solr's response but this is obviously not ideal. I would feel better knowing what is causing the is