• 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

out of memory error

 
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
we were doing some test on the cluster we had , the cluster is runing and round robin is working well. when we get up to 21000 requests the server goes down and gave us this error :
Start server stack trace:
java.lang.OutOfMemoryError:
Start server side trace:
java.lang.OutOfMemoryError
<<no stack trace available>>
end server side stack trace.

are we missing any special configuration on the cluster setup ? or do you think it is a system (kernel) setup on the system? where can i find the system configuration requirement for the cluster if there is any?
thanks a lot for your help.
 
Ranch Hand
Posts: 532
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I would check out this document.
http://e-docs.bea.com/wls/docs61/adminguide/config.html
OutOfMemory means there either is a memory leak in your application or you need to allocate more memory to the VM running your app. Check how much memory you are allocating to each VM in the cluster (-Xms -Xmx args). Also, if you think there is ample memory, for the host that is reporting the OutOfMemory try running your application standalone (without the cluster) and if you have a profiler like JProbe, use it.
 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You may want to check this article
http://www.idg.net/ic_788847_1794_9-10000.html
 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I'm very new to Weblogic application server. Few days bach I received the same error when I tried to run two instances the server in different ports.
Probabbly the error is due to the fact that the system fails to allocate enough memory for your cluster to get going with increased number of requests beyond a certain point.
Thanx.
 
This cake looks terrible, but it tastes great! Now take a bite out of this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic