--
You received this message because you are subscribed to the Google Groups "dcm4che" group.
To unsubscribe from this group and stop receiving emails from it, send an email to dcm4che+u...@googlegroups.com.
To post to this group, send email to dcm...@googlegroups.com.
Visit this group at http://groups.google.com/group/dcm4che.
For more options, visit https://groups.google.com/d/optout.
No compression is disabled
You received this message because you are subscribed to a topic in the Google Groups "dcm4che" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/dcm4che/tFnyGVAttEU/unsubscribe.
To unsubscribe from this group and all its topics, send an email to dcm4che+u...@googlegroups.com.
Jpeg2000 compression on JAIIO has a memory leak, so, it eats and eats memory slowly on your system until it fails...
I had that problem on some clients and finally had to switch to jpeg loseless (not jpeg LS).
I had some documents abut that but I cannot remember where... I should check the list archives, I've said it before...
Try adding parallel garbage collection parameter in run.conf that should resolve the issue
Add JAVA_OPTS="$JAVA_OPTS -XX:+UseParallelGC" below line you printed above and restart service or server, for long term resolution you need enable java hot spot in run.conf, that can be done by un-commenting and adding right path to parameters below
#JAVA_HOME="/opt/java/jdk"
#
# Specify the exact Java VM executable to use.
#
#JAVA=""
Thanks
Dhaval Joshi
There is no leak send me your run.conf
On Apr 15, 2014 7:45 AM, "Aaron Boxer" <box...@gmail.com> wrote:
-XX:PermSize -XX:MaxPermSize are used to set size for Permanent Generation.
Permanent Generation: The Permanent Generation is where class files are kept. These are the result of compiled classes and jsp pages. If this space is full, it triggers a Full Garbage Collection. If the Full Garbage Collection cannot clean out old unreferenced classes and there is no room left to expand the Permanent Space, an Out‐of‐ Memory error (OOME) is thrown and the JVM will crash.
Hope this will help you.