Tomcat MAX Thread VS sessions

332 Views Asked by At

We are using protocol="org.apache.coyote.http11.Http11NioProtocol" and I have a question as to what the max concurrent sessions Tomcat can handle?

As per my understanding http11.Http11NioProtocol Tomcat can handle 10000 connection with 200 Threads.

Looking below, can I consider my Tomcat will handle around 70000 Sessions at a time?

    <Connector executor="tomcatThreadPool"
               port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol"
               connectionTimeout="20000"
               maxThreads="1500"
               clientAuth="false"
               SSLEnabled="false"
               scheme="https"
               secure="true"
               proxyPort="443"
               maxHttpHeaderSize="65536"
               sessionCacheSize="16384"
               sessionTimeout="120"
               proxyName="test.com"
               redirectPort="443" />
0

There are 0 best solutions below