Scenario: A server group with two clones on the same node,
each clone using the same servlet.
For the same servlet request, the response time differs for each clone
because the same stdout file is set for both clones.
The application generates debug and error messages to standard output.
During start up, the first clone locks the stdout file while writing to
disk. The second clone starts and cannot write to disk because the file is
locked by the first clone.
Solution : Configure each clone with its own unique stdout and stderr
files. This will allow for standard output and standard error to be logged
to the respective files simultaneously.
|