10 Ocak 2020 Cuma

java komutu OutOfMemoryError Seçenekleri

Giriş
Memory Leak şöyle görünür. Burada Heap memory usage düzenli olarak artmakta. Artışın sebebiyse Tenured Space'in sürekli artması


Hangi Seçenek İle Başlamalı
1. OutOfMemoryError hatasının sebebi JVM'deki şu alanlardan herhangi birisinin bitmesi olabilir.
JVM memory has the following regions: 

Young generation
Old generation
Metaspace
Others region
HeapDump almadan önce "GC Log" ları etkinleştirilmeli ve GC döngüsü incelenmeli. 
G1 Garbage Collector - Loglama Seçenekleri yazısına bakabilirsiniz. 
Bazen bu alanlardan herhangi birisinin bittiğini görmek çok daha kolay oluyor. 

2. Eğer problem heap'te ise bence problemi çözmek için kullanılması gereken yöntem XX:+HeapDumpOnOutOfMemoryError seçeneği. Diğer seçeneklere daha sonra bakılabilir.

-XX:CrashOnOfMemoryError
Açıklaması şöyle. Bu seçenek ile hs_err_pid (örneğin hs_err_pid26064.log) dosyası oluşturulur. Bu dosya içindeki bilgi çok basittir ve genellikle problemi çözmek için işe yaramıyor.
When you pass this argument, the JVM will exit right when it OutOfMemoryError is thrown. Besides exiting, JVM produces text and binary crash files (if core files are enabled).
-XX:ExitOnOfMemoryError
Açıklaması şöyle. Bu seçenek herhangi bir text/binary dosya oluşturmaz.
When you enable this option, the JVM exits on the first occurrence of an out-of-memory error. It can be used if you prefer restarting an instance of the JVM rather than handling out of memory errors.
XX:HeapDumpPath seçeneği
Açıklaması şöyle.
This will create a dump which can be analysed afterwards. The dump will be located at the location given at -XX:HeapDumpPath=some_path.

-XX:+HeapDumpOnOutOfMemoryError seçeneği
Bu seçenek genellikle -XX:HeapDumpPath seçeneği ile birlikte kullanılır.
This will create a dump which can be analysed afterwards. The dump will be located at the location given at -XX:HeapDumpPath=some_path.
Açıklaması şöyle.
Heap dump is basically a snapshot of memory. It contains details about objects that present in memory, actual data that is present within those objects, and references originating of those objects. A heap dump is a vital artifact to troubleshoot memory problems.

In order to diagnose OutOfMemoryError , or any memory-related problem, one would have to capture heap dump right at the moment or few moments before the application starts to experience OutOfMemoryError. It’s hard to do capture heap dump at the right moment manually because we will not know when OutOfMemoryError is going to be thrown. However, capturing heap dumps can be automated by passing following JVM arguments when you launch the application in the command line:
Örnek
Şöyle yaparız. Uygulamanın çalıştığı dizinde java_pid.hprof şeklinde bir dosya oluşturur.
-XX:+HeapDumpOnOutOfMemoryError writes heap dump on OutOfMemoryError (recommended)
Örnek
Şöyle yaparız. Belirtilen dizinde java_pid.hprof şeklinde bir dosya oluşturur.
java -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=<file-or-dir-path>
Örnek
Şöyle yaparız
java -agentlib:hprof=cpu=samples,interval=20,depth=20 -jar target.jar
-XX:OnOutOfMemoryError=path_to_some_script.sh

Açıklaması şöyle.
This will run a script (it must be runnable by the same user which runs the application) when the application returns an error as an OutOfMemory
Açıklaması şöyle. Uygulamayı tekrar başlatmak iyi olabilir.
Most of the time, OutOfMemoryError doesn’t crash the application. However, it’s better to restart the application, once OutOfMemoryError happens. Because OutOfMemoryError can potentially leave an application in an unstable state, requests served from an unstable application instance can lead to an erroneous result.
İmzası şöyle.
-XX:OnOutOfMemoryError="<cmd args>; <cmd args>"

Hiç yorum yok:

Yorum Gönder