Hello all.
I have a Java web application that works a lot with file conventions.
I am using Tomcat 6 as my servlet container. When many requests are submitted, Tomcat becomes very memory hungry. I wonder how I can fine-tune tomcat to reduce the memory consumption.
I am also considering changing my servlet container.
What do you suggest?
|
1
|
|
|||
|
|
|
You can limit the accepted/operational connection numbers in the Have
and
or
in the config file and this should brake you. Edit: Based on your comment you could move the processing into dedicated thread pool sized according to your CPU count ( Edit 2: Added links to the classes. There you find some samples. Edit 3: A sample method I used in a project.
And you could use it this way:
And in your servlet
|
|||
|
|
|
I suggest you look at the Tomcat instance with jvisualvm or jconsole. This is very helpful in getting a mental image of what is actually going on. You need to elaborate on what exactly your application do, and why the large memory usage is not as expected under load :) |
||||
|
|
|
Try LambdaProbe |
||
|
|
|
|
Hi there, In my application I'm using Tomcat5.5 and there are only 2 users, due that I'm trying to reduce the number of active threads, it seems the following is going to work for me:
However, I also would like to turn off modules that come enabled by defauld. How can I do that, meaning, where do I verify the modules enabled and then disable the ones I want. Thanks |
||
|
|
