JVM не хватает памяти на Centos7 VM - PullRequest
0 голосов
/ 21 апреля 2020

Я очень часто получаю две ошибки в приложениях или, скорее, в командах, которые выполняются - одна - PenthaoDI, а другая - некоторые сценарии оболочки, которые обращаются к метрикам kafka ...

PDI дает мне:

#######################################################################
WARNING:  no libwebkitgtk-1.0 detected, some features will be unavailable
    Consider installing the package with apt-get or yum.
    e.g. 'sudo apt-get install libwebkitgtk-1.0-0'
#######################################################################
OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
Error occurred during initialization of VM
java.lang.OutOfMemoryError: unable to create new native thread

Мой скрипт оболочки kafka дает:

# There is insufficient memory for the Java Runtime Environment to continue.
# Cannot create worker GC thread. Out of system resources.
# Possible reasons:
#   The system is out of physical RAM or swap space
#   The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
#   Reduce memory load on the system
#   Increase physical memory or swap space
#   Check if swap backing store is full
#   Decrease Java heap size (-Xmx/-Xms)
#   Decrease number of Java threads
#   Decrease Java thread stack sizes (-Xss)
#   Set larger code cache with -XX:ReservedCodeCacheSize=
# This output file may be truncated or incomplete.
#
#  Out of Memory Error (workgroup.cpp:99), pid=8296, tid=0x00007f383b03d700
#
# JRE version:  (8.0_242-b08) (build )
# Java VM: OpenJDK 64-Bit Server VM (25.242-b08 mixed mode linux-amd64 compressed oops)
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again

free -m

             total        used        free      shared  buff/cache   available
Mem:          32010        9250        1338        1629       21421       20738
Swap:             0           0           0
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...