Conceptually how does load-balancing on the EJB tier work in Glassfish/any ejb container

Posted by Benju on Stack Overflow See other posts from Stack Overflow or by Benju
Published on 2010-03-12T19:33:13Z Indexed on 2010/03/13 2:07 UTC
Read the original article Hit count: 740

Filed under:
|
|
|

I am wondering conceptually how load-balancing works on the EJB-level (not web session replication) with Java EE containers like Glassfish. From what I have gleaned your remote interface is a proxy that delegates your call to one of many servers you may have in an environment.

If things fail are they supposed to be able to "finish" on another server? I want to understand the basic theory behind this load balancing, why is it better than a bunch of servers all running a plain web application with session affinity on a load-balancer?

© Stack Overflow or respective owner

Related posts about ejb

Related posts about java-ee