Little hint for: java.net.SocketException: Too many open files

2012-02-13 Thread Gerke, Axel
Hi together, We're running several instances of SOLR (3.5) on Apache Tomcat (6.0) on Ubuntu 10.xx. After adding another instance (maybe the 14th or 15th for the developers sandboxes), tomcat rise the exception "java.net.SocketException: Too many open files" . After reading som

Re: java.net.SocketException: Too many open files

2012-01-24 Thread Sethi, Parampreet
d maxTotalConnections >>> to 100. There should be room enough. >>> >>> Sorry that I can't help you, we still have not solved tghe problem on >>> our own. >>> >>> Greetings, >>> Kuli >>> >>> Am 25.10.2011 22:03, schrieb Jo

Re: java.net.SocketException: Too many open files

2012-01-24 Thread Michael Kuhlmann
that after few minutes it start throwing exception java.net.SocketException: Too many open files. It seems that it related to instance of the HttpClient. How to resolved the instances to a certain no. Like connection pool in dbcp etc.. I am not experienced on java so please help to resolved this problem. solr version: 3.4 regards Jonty

Re: java.net.SocketException: Too many open files

2012-01-23 Thread Jonty Rhods
t; SolrServer server = new CommonsHttpSolrServer(" > > http://localhost:8080/solr/core0";); > > > > I noticed that after few minutes it start throwing exception > > java.net.SocketException: Too many open files. > > It seems that it related to instance of the H

Re: java.net.SocketException: Too many open files

2011-10-26 Thread Michael Kuhlmann
w CommonsHttpSolrServer(" > http://localhost:8080/solr/core0";); > > I noticed that after few minutes it start throwing exception > java.net.SocketException: Too many open files. > It seems that it related to instance of the HttpClient. How to resolved the > instances to a ce

Re: java.net.SocketException: Too many open files

2011-10-25 Thread Jonty Rhods
you reusing the server object for all of your requests? > By default, Solr and SolrJ use persistent connections, meaning that > sockets are reused and new ones are not opened for every request. > > -Yonik > http://www.lucidimagination.com > > > > I noticed that after

Re: java.net.SocketException: Too many open files

2011-10-25 Thread Bui Van Quy
ject for all of your requests? By default, Solr and SolrJ use persistent connections, meaning that sockets are reused and new ones are not opened for every request. -Yonik http://www.lucidimagination.com I noticed that after few minutes it start throwing exception java.net.SocketException: Too

Re: java.net.SocketException: Too many open files

2011-10-25 Thread Péter Király
lhost:8080/solr/core0";); >> >> I noticed that after few minutes it start throwing exception >> java.net.SocketException: Too many open files. >> It seems that it related to instance of the HttpClient. How to resolved the >> instances to a certain no. Lik

Re: java.net.SocketException: Too many open files

2011-10-25 Thread Markus Jelsma
gt; I noticed that after few minutes it start throwing exception > java.net.SocketException: Too many open files. > It seems that it related to instance of the HttpClient. How to resolved the > instances to a certain no. Like connection pool in dbcp etc.. > > I am not experienced on jav

Re: java.net.SocketException: Too many open files

2011-10-25 Thread Yonik Seeley
e server object for all of your requests? By default, Solr and SolrJ use persistent connections, meaning that sockets are reused and new ones are not opened for every request. -Yonik http://www.lucidimagination.com > I noticed that after few minutes it start throwing exception > java.net.Socke

java.net.SocketException: Too many open files

2011-10-25 Thread Jonty Rhods
Hi, I am using solrj and for connection to server I am using instance of the solr server: SolrServer server = new CommonsHttpSolrServer(" http://localhost:8080/solr/core0";); I noticed that after few minutes it start throwing exception java.net.SocketException: Too many open files