----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
>
> Thank to Ian for the makefile, it's working fine.
>
> But I got strange behaviour with load balancing :
> On a bi-pro pentium 550, 500Meg, i installed Apache 1.3.9 + 2 Apache
> jserv 1.1b3 (from CVS repository).
> If i simulate 100 users, I get results which distributions are not
> gaussian, instead I get three pics :
> * One really fast around 100~200 ms
> * A second at 5 seconds
> * And a third a 10 seconds
>
> The global average is 6 seconds.
>
> Has anyone tested the load balancing in Winnt ? I know the document
> says not to rely yet on this platform, but I also read some fixes have
> been done in this area, is it true ?
>
> Thank for any reply
my 0,02 euros :
The disttribution you get is typical from what you can expect from JVMs
(what I have already seen).
Some threads are not blocked, run very fast. Some threads are waiting
for CPU cycles, some others maybe by synchronized mutexes, others for
garbage collector, other for network IOs (or disk)
I don't think the problem is coming from the Apache side.
Remember that all your processes's threads (Apache, + 2 JServs) have to
share 2 processors. So there is no waranty that a thread ended on a
JServ will immediately send its results back to the client.
Where is your bencher (client side) running on ? same PC ?
Jean-Luc
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]