What is [Full GC (Distribution Failure)

I see a failure on failure when a Full GC message is logged. What is distribution rejection with full GC? Is it safe to ignore?

+4
source share
2 answers

Distribution failure means that the heap did not have enough contiguous memory to distribute the request. GC operates as a result of distribution failure. If after completing the GC enough free space is completed, everything will be fine. Failure highlighting is different from GC failure. A GC crashes when even after the GC completes, there is not enough space to assign to the process.

+5
source

, , . GC , , GC , (, , ).

0

Source: https://habr.com/ru/post/1613256/


All Articles