Для продолжения среды выполнения Java недостаточно памяти: couchbase - PullRequest
0 голосов
/ 27 апреля 2020

У меня есть JSON размер документа 5 МБ. Но когда я gzip это стало 144KB. Этот 5-мегабайтный документ, который я сохранил в базе данных, не sql DB. Я выставляю это как REST API. Когда приложение выбирает контент в стиле java RAM, я получил ошибку ниже. Я получил 16 ГБ ОЗУ, но все же, только для одного запроса я иногда получал эту ошибку. Не могли бы вы, пожалуйста, гильдии меня? Каковы решения?

#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 470810624 bytes for committing reserved memory.
# An error report file with more information is saved as:
# /home/sanka/IdeaProjects/i/yyy/hs_err_pid3235.log
Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x00000006ec600000, 470810624, 0) failed; error='Cannot allocate memory' (errno=12)

файл журнала

#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 538443776 bytes for committing reserved memory.
# Possible reasons:
#   The system is out of physical RAM or swap space
#   In 32 bit mode, the process size limit was hit
# Possible solutions:
#   Reduce memory load on the system
#   Increase physical memory or swap space
#   Check if swap backing store is full
#   Use 64 bit Java on a 64 bit OS
#   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 (os_linux.cpp:2640), pid=30646, tid=0x00007f0f1b8f8700
#
# JRE version: Java(TM) SE Runtime Environment (8.0_181-b13) (build 1.8.0_181-b13)
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.181-b13 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
#
...