Tagged Questions

14
votes
4answers
3k views

From what Linux kernel/libc version is Java Runtime.exec() safe with regards to memory?

At work one of our target platforms is a resource constrained mini-server running Linux (kernel 2.6.13, custom distribution based on an old Fedora Core). The application is written in Java (Sun JDK ...
5
votes
6answers
4k views

How to avoid OOM (Out of memory) error when retrieving all records from huge table?

I am given a task to convert a huge table to custom XML file. I will be using Java for this job. If I simply issue a "SELECT * FROM customer", it may return huge amount of data that eventually ...
5
votes
7answers
2k views

How can I see what is in my heap in Java?

I've managed to get a memory 'leak' in a java application I'm developing. When running my JUnit test suite I randomly get out of memory exceptions (java.lang.OutOfMemoryError). What tools can I use ...
4
votes
9answers
3k views

How to detect Out Of Memory condition?

I have an application running on Websphere Application Server 6.0 and it crashes nearly every day because of Out-Of-Memory. From verbose GC is certain there are the memory leaks(many of them) ...
0
votes
6answers
98 views

Java heap space error while reading file in byte array

I am getting java out of heap error while using following code. Can someone tell me what I am doing wrong here ? On debugging I see taht value of length is 709582875 In main function File file = ...
0
votes
1answer
217 views

Using SoftReference to cache Bitmap on Android cause OOM

I'm developing an application that need to load Bitmap. And using a SoftReference for the cache. I relate every soft reference with a ReferenceQueue and using a hash map to access the SoftReference . ...
0
votes
1answer
41 views

Cannot open HPROF file

I'm using Eclipse Indigo and I'm following this tutorial, after I run the example project and get my HPROF file, I tried to open it (see 3.3 Use MAT in the link I gave), I just keep receiving 'Out of ...
0
votes
2answers
149 views

Java XmX = Do I have to set it to prevent Linux OOM

just my complete Linux box crashed with OOM (OOM Killer Process killed the wrong processes), due to a java application consumed too much memory and there was no memroy left. My question is, if I use ...
0
votes
1answer
82 views

Stack trace for thread causing an OOM

I have a java application which is getting an OutOfMemoryError, for heap space. I've enabled -XX:HeapDumpOnOutOfMemoryError, and have the resultant hprof file. The dump, however, shows that there is ...
0
votes
2answers
172 views

What is the possible causes of “java.lang.OutofMemoryError” in a executing thread?

I have met a Out of Memory problem in my application. In one of my threads execution, there is a sudden java.lang.OutofMemoryError and make that threads die. I have already select the memory heap ...
0
votes
1answer
190 views

excessive memory use by java

In a project of mine I constantly compress little blocks of data. Now I find out that the jvm then grows to 6GB of ram (resident (RES) RAM, not shared or virtual or so) and then die because of out of ...
0
votes
2answers
116 views

communicate with server and android client through XML

I am communication with server through XML. The XML gone soo much huge that I am now getting OOM error on my Android phone. I am using URLConnection. while(null != (xmlResponse = ...