• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Weblogic Clustering

 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In our project we are making multiple copies of the same application code and then deploying it on different application servers on diferent machines. We are creating a thread pool in which the number of threads are equal to the number of copies of the code on different machines. Then we run a batch job which utilises these thread pool and calls the same webservice(code) on different machines.
But I have few doubts about this architecture.
1. Is making multiple copies if the same code causing redundancy.
2. I heard using weblogic clustering can solve the problem , but I am not sure How to use it.

Can somebody suggest a better way?. How to solve this problem using weblogic clustering
Thanks
 
Ranch Hand
Posts: 245
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Weblogic clustering is handled in much the same way as other app servers like Tomcat. Basically a server of some sort sits in front of a cluster of "real" servers and distributes work based on a variety of parameters. The server in front can be something like Apache, IIS or another instance of WLS.

The BEA clustering documentation is very complete.

I think you'd be well off to do something like this. It sounds like it would be easier to maintain than what you're doing.
 
Ranch Hand
Posts: 1491
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Which clustering feature(LoadBalancing / FailOver) going to use?
 
Rohit Dhodapkar
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you Scott for your help.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic