Sidebar

Should I be worried that my Survivor Space or Eden Space is red in the QIE Server-Server Resources?

0 votes
355 views
asked Dec 14, 2017 by amanda-w-3695 (4,840 points)
edited Dec 14, 2017 by amanda-w-3695

1 Answer

0 votes
No, when a message is processed it remains in memory until a Minor Garbage Collection is run. This happens automatically when Eden Space fills up. Java will then move the messages that are still processing to Survivor Space. Once that fills, Java will do another check to see what messages are still being processed and put those messages into Tenured Gen. When that queue fills, Java will run a Major Garbage Collection. If after running a Major Garbage Collection there is still not enough room for a message in memory, a Java Memory Exception is thrown.
answered Dec 14, 2017 by amanda-w-3695 (4,840 points)
...