web applications - Tomcat Thread pool per webapp -
does tomcat supports thread pool configuration each webapp. think webapps share pool configured connector in tomcat.
let's have webapps , b, , more critical webapp. let's connector's pool size 100, , there 100 concurrent requests destined , b each (so total 200 requests here). allocate 70 threads process a's requests, , 30 b's.
note : dont want use multiple tomcat instances running,or run applications on different ports need same container config except thread configuration per webapp..
is there example config /link same.
tomcat not support it. thread pool setting specified @ executor or connector level in server.xml , cannot specified @ application level (in context.xml).
see also: https://serverfault.com/questions/351830/tomcat-configure-maxthreads-per-webapp
Comments
Post a Comment