Re: Broken pipe error

2016-11-29 Thread Shawn Heisey
On 11/29/2016 4:47 AM, Srinivas Kashyap wrote: > Can somebody guide me how to resolve this issue? > > Some of the parameters for Tomcat set are : > > maxWait="15000" maxActive="1000" maxIdle="50". A broken pipe error usually means that the TCP connection was broken, but you didn't include enough o

RE: Broken pipe error

2012-07-03 Thread Petersen, Robert
worried until I realized the source of the problem. Robi -Original Message- From: alx...@aim.com [mailto:alx...@aim.com] Sent: Tuesday, July 03, 2012 10:38 AM To: solr-user@lucene.apache.org Subject: Re: Broken pipe error I had the same problem with jetty. It turned out that broken pipe

Re: Broken pipe error

2012-07-03 Thread alxsss
I had the same problem with jetty. It turned out that broken pipe happens when application disconnects from jetty. In my case I was using php client and it had 10 sec restriction in curl request. When solr takes more than 10 sec to respond, curl automatically disconnected from jetty. Hope this