I want to test my J2EE application under high load of sessions accessing different pages.
This web application uses Log4J to log bunch of errors,warnings and infos. I want to test what is the side effect of this load on writing log files, especially concurrent I/O writing actions.
I found that Log4j deadlock under high load conditions.
The question is does OS (linux) has any limitation on concurrent I/O file writing or does Log4j handle this concurrency?
How can I monitor any I/O process delays (Because of high load) or any deadlock happens?
Thanks