Tagged Questions
The Java `Error` thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no more memory could be made available by the garbage collector.
65
votes
4answers
62k views
What does the error-message 'java.lang.OutOfMemoryError: GC overhead limit exceeded' mean in Java?
I get this error message as I execute my JUnit tests:
java.lang.OutOfMemoryError: GC overhead limit exceeded
I know what an OutOfMemoryError is, but what does GC overhead limit mean? How can I ...
52
votes
13answers
128k views
How to deal with “java.lang.OutOfMemoryError: Java heap space” error (64MB heap size)
I am writing a client-side Swing application (graphical font designer) on Java 5. Recently, I am running into "java.lang.OutOfMemoryError: Java heap space" error because I am not being conservative on ...
17
votes
3answers
12k views
Android: OutofMemoryError: bitmap size exceeds VM budget with no reason I can see
I am having an OutOfMemory exception with a gallery over 600x800 pixels JPEG's.
The environment
I've been using Gallery with JPG images around 600x800 pixels.
Since my content may be a bit more ...
17
votes
6answers
2k views
JVM OutOfMemory error “death spiral” (not memory leak)
We have recently been migrating a number of applications from running under RedHat linux JDK1.6.0_03 to Solaris 10u8 JDK1.6.0_16 (much higher spec machines) and we have noticed what seems to be a ...
14
votes
12answers
4k views
Catching java.lang.OutOfMemoryError?
Documentation for java.lang.Error says:
An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch
But as java.lang.Error is a ...
12
votes
3answers
133 views
What is the difference between the Clojure function (nth [coll index]) and the composition (last (take index coll))
I'm trying to work through Stuart Halloway's book Programming Clojure. This whole functional stuff is very new to me.
I understand how
(defn fibo[]
(map first (iterate (fn [[a b]] [b (+ a ...
12
votes
6answers
16k views
OutOfMemoryError: bitmap size exceeds VM budget :- Android
i am downloading images from Url and displaying them. At download time it is giving out of memory error : bitmap size exceeds VM budget. I am using drawable. Code is below:
HttpClient httpclient= new ...
11
votes
3answers
119 views
When exactly is the JVM throwing an OutOfMemoryError
We are running a Java application that sometimes "freezes" because some thread is using almost all the heap.
Despite the JVM doing Full GC that last more than 60 seconds the application never dies ...
11
votes
3answers
423 views
Understanding php “Out of memory” error
I can find lots of tutorials on how to overcome the out-of-memory error. The solution is: To increase the memory in the php.ini or in the .htaccess - what a surprise...
I actually don't understand ...
11
votes
6answers
978 views
Can the JVM recover from an OutOfMemoryError without a restart
Can the JVM recover from an OutOfMemoryError without a restart if it gets a chance to run the GC before more object allocation requests come in?
Do the various JVM implementations differ in this ...
10
votes
9answers
1k views
Android app out of memory issues - tried everything and still at a loss
I spent 4 full days trying everything I can to figure out the memory leak in an app I'm developing, but things stopped making sense a long time ago.
The app I'm developing is of social nature, so ...
10
votes
3answers
342 views
what, besides Class objects, is stored in Perm Gen Space (sun 1.6 VM)?
I am seeing 'java.lang.OutOfMemoryError: PermGen space' while running ~300 JUnit tests and using Spring context. Having a tough time figuring out what's eating up PermGen since:
in steady state the ...
9
votes
4answers
1k views
Coping with, and minimizing, memory usage in Common Lisp (SBCL)
I have a VPS with not very much memory (256Mb) which I am trying to use for Common Lisp development with SBCL+Hunchentoot to write some simple web-apps. A large amount of memory appears to be getting ...
8
votes
4answers
116 views
Is it possible to get OutOfMemoryError because garbage collection too slow?
In java, is it possible that you get a OutOfMemoryError exception, even when there should have enough memory should garbage collection freed more memory? In other words, if there is not enough memory ...
8
votes
4answers
782 views
Tomcat on production server, PermGen and redeploys
It looks like
MemoryError: PermGen space
java.lang.OutOfMemoryError: PermGen space
is a common problem. You can Increase the size of your perm space, but after 100 or 200 redeploys it will be ...
8
votes
3answers
526 views
Strange GC behaviour of Scala actors application
I have an application which uses rather a lot of actors: 25,000 to be precise. It uses Scala 2.7.7 and is running on jdk6_u18. It basically listens to and processes market data and has very little ...
7
votes
3answers
3k views
Processing large xlsx file in Java
I need to auto-fit all rows in large (30k+ rows) xlsx file.
The following code via apache poi works on small files, but goes out with OutOfMemoryError on large ones:
Workbook workbook = ...
7
votes
2answers
4k views
java.lang.OutOfMemoryError: bitmap size exceeds VM budget
So I've got a lazy image loader for my ListView. I also use this tutorial for better memory management and have SoftReference Bitmap images stored in my ArrayList.
My ListView works loads 8 images ...
7
votes
2answers
5k views
Duration of Excessive GC Time in “java.lang.OutOfMemoryError: GC overhead limit exceeded”
Occasionally, somewhere between once every 2 days to once every 2 weeks, my application crashes in a seemingly random location in the code with: java.lang.OutOfMemoryError: GC overhead limit exceeded. ...
6
votes
6answers
136 views
In Java, is there a way to randomize a file too large to fit into memory?
What I would like to do is shuffle the rows (read from CSV), then print out the first randomized 10,000 rows to one csv and the remainder to a separate csv. With a smaller file I can do something ...
6
votes
5answers
119 views
Is it such a bad idea to capture OutOfMemoryError? [closed]
Possible Duplicate:
Catching java.lang.OutOfMemoryError
OutOfMemoryError are:
Thrown when the Java Virtual Machine cannot allocate an object because
it is out of memory, and no more ...
6
votes
3answers
328 views
Printing rows, Java heap space
I want to print each line from a huge textfile (more than 600 000 MB).
But when I try the code below I get "...OutOfMemoryError: Java heap space" right before reaching line number 1 000 000.
Is ...
6
votes
9answers
723 views
Out of memory error
Is there any point catching an out of memory error (java.lang.OutOfMemoryError) in Java?
6
votes
3answers
685 views
Immutable Map implementation for huge maps
If I have an immutable Map which I might expect (over a very short period of time - like a few seconds) to be adding/removing hundreds of thousands of items from, is the standard HashMap a bad idea? ...
6
votes
5answers
6k views
Java heap space in netbeans.. but I've increased the heap size already!
I'm having an issue with netbeans and Java. My program needs to be able to cope with large files being uploaded via an arraylist. So I used -Xmx512m to increase the maximum heap size via the ...
6
votes
4answers
7k views
Java Heap Space error in glassfish
I am using a fresh Glassfish install with very little customizations.
I have a Message Driven Bean (ObjectUpdateMDB) that listens to a topic, then updates the object it receives in a database. There ...
5
votes
4answers
97 views
Java: OutOfMemoryError Exception and freeMemory()
I have the following test program:
public static void main(String[] args)
{
HashMap<Integer, String> hm = new HashMap<Integer,String>();
int i = 1;
while(true)
...
5
votes
3answers
119 views
Behavior of a java process in case of OutOfMemoryError
What would be the behavior of a java program on getting OutOfMemoryError. Is there any defined behavior? Will the process crash or would it go into wait/sleep state?[Update] if i am not handling it in ...
5
votes
1answer
155 views
OutOfMemoryError on BigInteger
I'm writing a polish notation calculator for BigIntegers (just *, ^ and !) and I'm getting an OutOfMemoryError on the line where I'm subtracting BigInteger.ONE to get the factorial to work, why?
...
5
votes
2answers
945 views
how to fix error in bitmap size exceeds VM budget
i am working one application image uploading to sdcard i am scaling that sdcard saved into database some times one error is occurs bitmap size exceeds vm budget
ouput :
01-11 15:39:51.809: ...
5
votes
7answers
3k views
Force full garbage collection when memory occupation goes beyond a certain threshold
I have a server application that, in rare occasions, can allocate large chunks of memory.
It's not a memory leak, as these chunks can be claimed back by the garbage collector by executing a full ...
5
votes
2answers
3k views
JDBC Batch Insert OutOfMemoryError
I have written a method insert() in which I am trying to use JDBC Batch for inserting half a million records into a MySQL database:
public void insert(int nameListId, String[] names) {
String ...
5
votes
4answers
2k views
How to simulate the Out Of memory : Requested array size exceeds VM limit
I used the Out Of Memory help from sun's site. Where it is quoted as
Out Of Memory : Requested array size exceeds VM limit
This indicates that the application attempted to allocate an array ...
5
votes
10answers
7k views
Why do I get an OutOfMemoryError when inserting 50,000 objects into HashMap?
I am trying to insert about 50,000 objects (and therefore 50,000 keys) into a java.util.HashMap<java.awt.Point, Segment>. However, I keep getting an OutOfMemory exception. (Segment is my own ...
4
votes
2answers
78 views
Will I encounter java.lang.OutOfMemoryError even with no lack of memory?
I was reading Unveiling the java.lang.Out OfMemoryError and I was wondering if I've understood it correctly. Is it true that if the Java VM throws a
java.lang.OutOfMemoryError: Requested array ...
4
votes
2answers
101 views
Java OutOfMemory on Mac, working on Windows
I have an application that loads data from a .csv file and shows it in a table. The application works correctly for all files (no matter what size it has) in windows, but it only works with the files ...
4
votes
5answers
455 views
Java String Memory Leak
I am not java expert.
My code is reading a file into a String. This code gets executed every 5 minutes.
The size of file varies. Sometimes it is 100 sometimes it is 1000 lines.
I am experience Out ...
4
votes
5answers
664 views
android MapView always causes an OutOfMemoryError in nested elements
I am trying to create a MapView (currently without any overlays) inside some nested elements.
It is basically something like ScrollView -> RelativeLayout -> RelativeLayout -> MapView
...
4
votes
2answers
2k views
Problem with downloading multiple files using AsyncTask
I'm using the following script based on the tutorial Android Series: Download files with Progress Dialog to download multiple video files from the internet to the SD card. It displays a progress bar ...
4
votes
2answers
616 views
Google API MapView OutOfMemoryError Problems
I'm using a Google API MapView in my Android application and I've discovered it often runs into this error when I scroll around and zoom the map. They tend to happen quite quickly (20seconds of using ...
4
votes
1answer
113 views
Is exec a good programming solution to ant OutOfMemory issues?
This question requires a bit of backstory... At my company, we produce a set of PDF and HTML files. A very large set. The current build process (which I designed, in haste) is a Perl script that reads ...
4
votes
1answer
2k views
android java.lang.OutOfMemoryError
all,
when i download large data from website, i got this error information:
I/global (20094): Default buffer size used in BufferedInputStream constructor.
It would be better to be explicit if an 8k ...
4
votes
1answer
143 views
Newbie OutOfMemory problem
I am trying to create a producer/consumer type Scala app.
The LoopControl just sends a message to the MessageReceiver continually.
The MessageReceiver then delegates work to the MessageCreatorActor ...
4
votes
1answer
1k views
How can I avoid OutOfMemoryErrors when using Commons FileUpload's DiskFileItem to upload large files?
I am getting OutOfMemoryErrors when uploading large (>300MB) files to
a servlet utilizing Commons FileUpload 1.2.1. It seems odd, because
the entire point of using DiskFileItem is to prevent the ...
4
votes
7answers
993 views
OutOfMemoryError - why can a waiting Thread not be garbage collected?
This simple sample code demonstrates the problem. I create an ArrayBlockingQueue, and a thread that waits for data on this queue using take(). After the loop is over, in theory both the queue and the ...
4
votes
5answers
10k views
Why does heap space run out only when running JUnit tests?
When running JUnit tests, I always seem to run into this error:
eclipse outOfMemoryError: heap space
I have monitored Eclipse with JConsole and heap memory peaks at about 150MB. I have set heap ...
3
votes
10answers
196 views
getting Java OutOfMemoryError: Java heap space error that I can't debug
I am struggling to figure out what's causing this OutofMemory Error. Making more memory available isn't the solution, because my system doesn't have enough memory. Instead I have to figure out a way ...
3
votes
1answer
181 views
Comparing two large files in Clojure (i.e.; finding unmapped reads in a tophat alignment)
Problem: find ids that are in one file but not in another. Each file is about 6.5 GB. Specifically (for those in the bioinformatics domain), one file is a fastq file of sequencing reads and the ...
3
votes
1answer
530 views
java.lang.OutOfMemoryError during android 2.1 build on Mac OS X 10.6.8
Here's a build issue that I am struggling with. I am trying to build Android 2.1 on Mac OS X 10.6.8 with jdk 1.5. The "make" command runs for a while and at the end, it says:
The system is out of ...
3
votes
2answers
210 views
Is there a way to have an Android process produce a heap dump on an OutOfMemoryError?
The sun JVM supports a -XX:+HeapDumpOnOutOfMemoryError option to dump heap whenever a java process runs out of heap.
Is there a similar option on Android that will make an android app dump heap on an ...