Tagged Questions
7
votes
2answers
146 views
Java Heap Space - How does -Xmx work exactly?
I have encountered the infamous OutOfMemoryException in my application and instead of simply increasing the amount of Heap Space available I tried to look into what the problem was, just in case, ...
4
votes
1answer
788 views
Neo4j OutOfMemory problem
This is my source code of Main.java. It was grabbed from neo4j-apoc-1.0 examples. The goal of modification to store 1M records of 2 nodes and 1 relation:
package javaapplication2;
import ...
3
votes
4answers
3k views
JVM throws OutOfMemory during gc though there are plenty memory left
I have my java application configured to use 5G memory. I got an OutOfMemory out of blue. I inspected the gc log and found plenty of memory left: young generation occupies 4% allocated space, tenure ...
2
votes
2answers
109 views
Java/MySQL Insert causing OutofMemory Exception
I have been designing a Java server, connected via PHP, that accepts a series of protein chains and performs computations on each of them. The computations are handled by external Perl scripts which ...
2
votes
1answer
128 views
OutOfMemory error while Encrypting
First off, this is the error I am getting
java.lang.OutOfMemoryError
at coderaustin.com.FileEncryptor.encryptFile(FileEncryptor.java:56)
at coderaustin.com.Main.onCreate(Main.java:41)
at ...
2
votes
5answers
484 views
decode large base64 from xml in java: OutOfMemory
I need to write a base64 encoded element of an xml file into a separate file. Problem: the file could easily reach the size of 100 MB. Every solution I tried ended with the ...
2
votes
1answer
101 views
Dealing with memory making Swing animations
It's my first time writting there but after reading and searching a lot about the subject I'm going to explain, I didn't found anything useful for me (I've checked a post of a guy explaining something ...
1
vote
4answers
141 views
Java OutOfMemory in app with Hibernate, Quartz and and JavaMail
I have a web application running on Tomcat 6, that I created with Netbeans 6.9.1 and its wizzards for Entity classes and persistence. It uses Hibernate, MySQL as database, Quartz for running a task ...
1
vote
1answer
85 views
Eclipse isn't using allotted heap; I get an out of memory error?
I am using Eclipse (newly installed) to run some Java code, and for some reason I get an outOfMemoryError: Java heap space, however I set the -Xms and -Xmx to 1gb each and when I run the code, the ...
1
vote
0answers
705 views
FrameBuffer Objects for Dynamic Cubemaps in GLES 2.0 on Android
Update: Turns out this is a driver issue with the powerVR SGX in my Nexus S. Code works fluidly on all other devices I've tested it on.
I'll be making a smaller test case and submitting a bug ...
1
vote
1answer
213 views
OutOfMemory Java
I have system make to monitoring a multiport hardware and camera, those camera's thread receive data to save images.
This system having problem with OutOfMemory, he going allocate memory and have a ...
1
vote
1answer
261 views
JHAT cannot analyze a memory dump
I have a Memory Dump file and JHAT gives the following message and I cannot analyze anything (as no data is displayed.
Resolving 0 objects...
WARNING: hprof file does not include ...
1
vote
2answers
2k views
Java native memory usage
Is there any tool to know how many native memory has been used from my java application ?
I've experienced outofmemory from my application :
Current setting is :
-Xmx900m
Computer, Windows 2003 ...
1
vote
1answer
9k views
IBM Websphere on Windows- OutOfMemoryError: Failed to create a thread
I have a J2EE application running on an IBM Websphere Application Server on a Windows Operating System.
Occasionally I see an OutOfMemoryError Exception with the following information in the javacore ...
0
votes
3answers
80 views
Is it wise to catch OutofMemoryError in run() of thread?
I suspect in my application that an outofmemoryerror is causing a a run() to exit, however because there were no logs, the error wasn't visible.
What should i do in this case?
0
votes
4answers
86 views
Will OutOfMemoryError cause a thread to die?
Does an OutOfMemoryError cause a spawned thread to die?
As in will it exit from run()?
0
votes
8answers
371 views
hashmap put performance issue
i have a hashmap in my application. The map is in a singleton and access to update or read it is protected using synchronized methods.
My problem occurs when testing with large numbers(20000+) of ...
0
votes
1answer
442 views
Apache Axis 1.4 OutOfMemoryError
I have a peculiar problem that have suddenly appeared on the client side that uses Apache Axis 1.4 to make SOAP requests to a webservice. Everything has been running smoothly for a year. The size of ...
0
votes
2answers
318 views
java OutOfMemory problem - heap dump 800 Mb smaller than max heap configured
I have a web application deployed in Oracle App Server 10.1.3, in an oc4j started with 1Gb initial heap and 2 Gb max heap, on an RHEL on 32 bit, configured to see 32 Gb of RAM.
Lately I have ...