This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.
  • 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
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
Bartenders:

Memory Problem

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

Our functional requirement is to fetch around 50,000 records from the Database, form an xml of these records
and flush it through an outputstream using the servlet.
The data is then displayed in an Excel sheet.

We are using Websphere 5.0 .In the server side we have a session bean which fetch the records and holds them in a value object.
This works fine for around 15000 records.

But if the data exceeeds,

But while returning from the EJB , we get the following exception.
[10/7/04 15:41:07:969 IST] 732afa74 SystemErr R java.rmi.RemoteException: CORBA NO_MEMORY 0x4942f984 No; nested exception is:
org.omg.CORBA.NO_MEMORY: Unable to write value : null minor code: 4942F984 completed: No


We are aware of the fact that this is because of huge data.We tried retrieving chunks of data, instead of retrieving full, at a time.But this doen't help.

Any idea, regarding the above problem would be of great help.
 
Ranch Hand
Posts: 1087
Oracle Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
try increasing heap memory size of websphere.
hope this will solve your problem.
Already a very good thread is going on heap memory in this forum
 
neha gowda
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I tried increasing the heap memory , but, It did not solve the problem. :-(



regards
Neha
 
Shailesh Chandra
Ranch Hand
Posts: 1087
Oracle Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have no idea about your prob ..

but 15000 is for value object is too much.

did you try cacherowset..............its recommendation in j2ee design patterns if data trasfer is high try to use cacherowset.

any way try to look other forums also for your problem.

regards...............
 
neha gowda
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We could solve this problem by changing the JVM settings.
We have used the following settings now.

Java VM arguments (Generic JVM Arguments)
-Xms256m -Xmx1024m

Also by setting the Initial HeapSize = 256
And Max Heap Size = 1024
 
Shailesh Chandra
Ranch Hand
Posts: 1087
Oracle Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
but as u said change in heap memory was not working earlier.

is there something additional ??

any way atleast your problem is solved
 
neha gowda
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

There was some mistake in setting the Heap.
One of the team members crossed checked and rectified it.
Nothing additional.
Thanks for the Help Mr. Shailesh.

Have a great day!

Neha
 
Greenhorn
Posts: 22
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
we cannot say anything: use Tivoli performance viewer or launch your server with -verbosegc and analyze the log.
If you have a stack overflow error in your trace, try increasing max thread stack size with -Xss=1 or 2M
Mouloud
 
Shailesh Chandra
Ranch Hand
Posts: 1087
Oracle Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I agree Tivoli helps lot to analyse various aspect in application...
 
This is awkward. I've grown a second evil head. I'm going to need a machete and a tiny ad ...
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic