Results 1 to 3 of 3
- 02-17-2009, 04:03 PM #1
Member
- Join Date
- Feb 2009
- Posts
- 1
- Rep Power
- 0
java.lang.Error: Cleaner terminated abnormally
Hi Guys/Gals,
We've been experiencing the following error lately and were wondering if anyone could enlighten us about what's happening:
The heap size is 4096M, and looking at the GC output, It looks like an oom situation situation.
But why are we getting a Cleaner terminated error? As far as I can tell there are no oom exceptions of any kind thrown.
What are usual causes for an error like this?
Here are our settings:
debian Linux 4.0 @ 2x quad core Xeon L5420 w/ 8gb ram
sun-jdk 1.6.0.11 (x64 server vm) w/ following options:
-XX:+UseConcMarkSweepGC
-XX:+UseParNewGC
-XX:+CMSIncrementalMode
-Xms4096M
-Xmx4096M
-Xss128k
-XX:PermSize=256M
-XX:MaxPermSize=256M
-Dsun.net.inetaddr.ttl=60
-Dfile.encoding=UTF-8
---- error snippet ----
[GC 4060616K->3924100K(4177280K), 0.1517880 secs]
[GC 4060420K->3926867K(4177280K), 0.0883940 secs]
[GC 4062488K->3931589K(4177280K), 0.1008470 secs]
[GC 4067906K->3935097K(4177280K), 0.0931530 secs]
[GC 4071417K->3934946K(4177280K), 0.0787300 secs]
[GC 4029027K(4177280K), 0.1941170 secs]
java.lang.Error: Cleaner terminated abnormally
at sun.misc.Cleaner$1.run(Cleaner.java:130)
at java.security.AccessController.doPrivileged(Native Method)
at sun.misc.Cleaner.clean(Cleaner.java:127)
at java.lang.ref.Reference$ReferenceHandler.run(Refer ence.java:124)
Caused by: java.lang.Error: java.io.IOException: Broken pipe
at sun.nio.ch.Util$SelectorWrapper$Closer.run(Util.ja va:97)
at sun.misc.Cleaner.clean(Cleaner.java:125)
... 1 more
Caused by: java.io.IOException: Broken pipe
at sun.nio.ch.EPollArrayWrapper.interrupt(Native Method)
at sun.nio.ch.EPollArrayWrapper.interrupt(EPollArrayW rapper.java:242)
at sun.nio.ch.EPollSelectorImpl.wakeup(EPollSelectorI mpl.java:170)
at sun.nio.ch.SelectorImpl.implCloseSelector(Selector Impl.java:92)
at java.nio.channels.spi.AbstractSelector.close(Abstr actSelector.java:91)
at sun.nio.ch.Util$SelectorWrapper$Closer.run(Util.ja va:95)
... 2 more
The only thing I could find remotely relevant is Bug ID: 4938372 (fs) Overlapping mapped files cannot be unmapped (windows), which is from 2003.
- 02-18-2009, 06:22 AM #2
Senior Member
- Join Date
- Jan 2009
- Posts
- 671
- Rep Power
- 5
I don't see anything here that suggests a oom error except your printed GC statements.
It's throwing an IOException, not a memory error. However, you can download the source code from Sun and see what Cleaner line 125 is to see if it might be related to an oom error. More than once I've had to dig through the java source code to figure out a problem. (I actually had to do this earlier today...oddly enough)
- 02-18-2009, 03:19 PM #3
Similar Threads
-
java.lang.NullPointerException Error
By Manfizy in forum NetBeansReplies: 3Last Post: 02-24-2011, 06:27 AM -
Error Message:java.lang.UnsupportedClassVersionError:
By Deepa in forum New To JavaReplies: 2Last Post: 12-02-2008, 11:01 AM -
How to over come java.lang.out of memory error
By Chaitra_gm in forum New To JavaReplies: 5Last Post: 09-28-2008, 10:33 AM -
Error: cannot resolve symbol' on Person (java.lang.String, java.lang.String)
By baltimore in forum New To JavaReplies: 2Last Post: 09-18-2008, 07:30 AM -
Error: java.lang.ArrayIndexOutOfBoundsException
By fernando in forum Java 2DReplies: 1Last Post: 07-31-2007, 11:47 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks