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

about weblogic container

 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
what is the maximum request at a time the weblogic server can server, if the requests are more than that of weblogic server can server, how can we solve this problem
 
Bartender
Posts: 10336
Hibernate Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Not an ORM question Moving...
 
drifter
Posts: 1364
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This depends on the version you are using.

Check the documentation at http://edocs.bea.com

Here's a pointer to get started:
Understanding How WebLogic Server Uses Thread Pools
 
Ranch Hand
Posts: 33
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
>> what is the maximum request at a time the weblogic server can server, if the requests are more than that of weblogic server can server, how can we solve this problem.


Not really an easy question even with the edoc in hand. It all depends on what the Weblogic server is doing. if all you request are short lasting low resource request (ie, get data, store data) it is easier to estimate. If your processes involver longer processes that depends on other resources, it is tougher to answer.

You can change the settings to better optimize your environment, and I would suggest you find someone who has experience in this. BEA has some suggestions for this on their support site.

But the real answer is, only by profiling, or running your HTTP Server in a stress test can you effectively answer that question, how much can your environment support. I suggest JMeter from the Jakarta Apache project as a starting point.

NOW: The way to solve the problem is by clustering. adding more servers to service the requests. This is a common answer to all Application Servers.

Tony
Sun Certified Web Business Component Developer
Sun Certified Web Components Developer
Sun Certified Programmer for the Java 2 Platform
 
You can thank my dental hygienist for my untimely aliveness. So tiny:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic