J
James Arsenault
Guest
Archana, I expect this is tied to the appserver you are using, not Corticon per-se. For example if you are using the bundled Tomcat appserver you could be hitting it’s set maxConnections limit. By tomcat defaults this to maxThreads which in turn defaults to 300. For Tomcat, the parameters are documented here: http://tomcat.apache.org/tomcat-7.0-doc/config/http.html Where you have a high number of concurrent connections you need to consider the connector strategy of the appserver. In tomcat 7 there were BIO and NIO connectors which you could configure, the main difference is one is one follows a thread per connection model (BIO – the default) and the other pools threads (NIO). In Tomcat 8.5 the BIO connector was dropped in favor of non-blocking websockets. Hope that helps, Jim
Continue reading...
Continue reading...