• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Failover for stateful session and entity beans

 
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How good is WLS6.1 and 7.0 for handling
failover of stateful and entity beans?
I was told that they could not handle stateful
bean failover well.
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
WebLogic handles Stateful Session Bean clustering in the same fashion as they handle HttpSession clustering. They use passive replication to determine a primary and secondary server and if the primary fails the secondary takes over and choses a new secondary. This strategy is sufficient in all cases except when the primary and secondary fail at the same moment. WebLogic trys to minimize this risk by choosing secondary servers based on configurable replication groups. The idea is that the primary and secondary servers should never be on the same physical machine (where a hardware crash would affect both instances).
I am not sure who told WebLogic does not handle this very well... I find their implementation works fine. Maybe you should go back and ask them for a detailed why.
[ October 13, 2002: Message edited by: Chris Mathews ]
 
Glen Cai
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Chirs.
How many Secondary servers I can have for
one Primary server? Does it has to be one
to one?
Is the concept of primary-secondary the
same as the master-slave?
 
There are no more "hours", it's centi-days. They say it's better, but this tiny ad says it's stupid:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic