Java server performance - jeety  
Author Message
saila





PostPosted: 2006-4-23 21:39:00 Top

java-programmer, Java server performance - jeety Hi All,

I am working on an application where a servlet need to handle min 600
request / sec(which will keep on increasing in future)
So I am not able to decide which application server I should use.

As I go through some benchmarks I came to know that Jetty's performance
is better but
I don't know how much load it can handle.

Is there any who has used Jetty on heavy traffic application?

or is there any another servlet container / HTTP Server which can
handle such a load

Plz suggest me.

Thanks in Advance.

Rajiv Girdhar

 
Wibble





PostPosted: 2006-4-24 1:26:00 Top

java-programmer >> Java server performance - jeety saila wrote:
> Hi All,
>
> I am working on an application where a servlet need to handle min 600
> request / sec(which will keep on increasing in future)
> So I am not able to decide which application server I should use.
>
> As I go through some benchmarks I came to know that Jetty's performance
> is better but
> I don't know how much load it can handle.
>
> Is there any who has used Jetty on heavy traffic application?
>
> or is there any another servlet container / HTTP Server which can
> handle such a load
>
> Plz suggest me.
>
> Thanks in Advance.
>
> Rajiv Girdhar
>
Tomcat seems to do a little better than Jetty but its all good.

http://www.webperformanceinc.com/library/reports/ServletReport/

I think that the servlet engine doesn't make that big a difference,
rather than the clustering and load balancing of the containing
app server. At 600 transactions per second, your database may
also be significant bottleneck. Depending on your database, it
may be alot easier to throw CPU's at the middle tier than the
DB.