Why old gen memory reduced without Full GC run The 2019 Stack Overflow Developer Survey...
How are presidential pardons supposed to be used?
What information about me do stores get via my credit card?
Can the DM override racial traits?
Road tyres vs "Street" tyres for charity ride on MTB Tandem
How many people can fit inside Mordenkainen's Magnificent Mansion?
What is special about square numbers here?
How to split my screen on my Macbook Air?
Working through the single responsibility principle (SRP) in Python when calls are expensive
Why did all the guest students take carriages to the Yule Ball?
Did the new image of black hole confirm the general theory of relativity?
Is every episode of "Where are my Pants?" identical?
In horse breeding, what is the female equivalent of putting a horse out "to stud"?
Cooking pasta in a water boiler
First use of “packing” as in carrying a gun
Change bounding box of math glyphs in LuaTeX
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
Why can't wing-mounted spoilers be used to steepen approaches?
How is simplicity better than precision and clarity in prose?
How does ice melt when immersed in water?
Scientific Reports - Significant Figures
University's motivation for having tenure-track positions
Can the prologue be the backstory of your main character?
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
Single author papers against my advisor's will?
Why old gen memory reduced without Full GC run
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Why are the failing addresses in Memtest86+ higher than my total memory?ECC memory on 2nd Gen Intel i3What hardware device eats up 1.4GB of my 4GB RAM?Memory Update for an old laptopLinux server swapping before memory is completely fullwhy does `udev` consume full memory in ubuntu?Keep Getting memory full Windows 8.1Why would new ram run substantially faster than old ram with identical stats after failed sticks?Why does partially full RAM cause lag?CPU-Z reports two memory modules in dual mode and 2 modules in single mode
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
I am doing memory profiling using yourkit.
I see the old gen memory first increases from 200MB to 490MB. Then It suddenly came down to 250MB again.
In between that the full GC never ran. It was always the youngGC run.
My questions is, if full GC didnt happen, how the old gen memory got reduced?
Also, the GC time is increasing. In last 12 hours it increased from 50ms to 150ms.
Here are the GC config:
Picked up JAVA_TOOL_OPTIONS: -XX:ConcGCThreads=4 -XX:ParallelGCThreads=4 -XX:CICompilerCount=4 -Xmx512M -Dio.netty.eventLoopThreads=4
-XX:CICompilerCount=4 -XX:ConcGCThreads=4 -XX:InitialHeapSize=536870912 -XX:MaxHeapSize=536870912 -XX:ParallelGCThreads=4 -XX:+PrintCommandLineFlags -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:+UseParallelGC
NOTE: the traffic to the application was consistent.
linux memory java profiling
New contributor
add a comment |
I am doing memory profiling using yourkit.
I see the old gen memory first increases from 200MB to 490MB. Then It suddenly came down to 250MB again.
In between that the full GC never ran. It was always the youngGC run.
My questions is, if full GC didnt happen, how the old gen memory got reduced?
Also, the GC time is increasing. In last 12 hours it increased from 50ms to 150ms.
Here are the GC config:
Picked up JAVA_TOOL_OPTIONS: -XX:ConcGCThreads=4 -XX:ParallelGCThreads=4 -XX:CICompilerCount=4 -Xmx512M -Dio.netty.eventLoopThreads=4
-XX:CICompilerCount=4 -XX:ConcGCThreads=4 -XX:InitialHeapSize=536870912 -XX:MaxHeapSize=536870912 -XX:ParallelGCThreads=4 -XX:+PrintCommandLineFlags -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:+UseParallelGC
NOTE: the traffic to the application was consistent.
linux memory java profiling
New contributor
What's a GC, full or young or otherwise? Some kind of java setting apparently, but for what?
– Xen2050
yesterday
add a comment |
I am doing memory profiling using yourkit.
I see the old gen memory first increases from 200MB to 490MB. Then It suddenly came down to 250MB again.
In between that the full GC never ran. It was always the youngGC run.
My questions is, if full GC didnt happen, how the old gen memory got reduced?
Also, the GC time is increasing. In last 12 hours it increased from 50ms to 150ms.
Here are the GC config:
Picked up JAVA_TOOL_OPTIONS: -XX:ConcGCThreads=4 -XX:ParallelGCThreads=4 -XX:CICompilerCount=4 -Xmx512M -Dio.netty.eventLoopThreads=4
-XX:CICompilerCount=4 -XX:ConcGCThreads=4 -XX:InitialHeapSize=536870912 -XX:MaxHeapSize=536870912 -XX:ParallelGCThreads=4 -XX:+PrintCommandLineFlags -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:+UseParallelGC
NOTE: the traffic to the application was consistent.
linux memory java profiling
New contributor
I am doing memory profiling using yourkit.
I see the old gen memory first increases from 200MB to 490MB. Then It suddenly came down to 250MB again.
In between that the full GC never ran. It was always the youngGC run.
My questions is, if full GC didnt happen, how the old gen memory got reduced?
Also, the GC time is increasing. In last 12 hours it increased from 50ms to 150ms.
Here are the GC config:
Picked up JAVA_TOOL_OPTIONS: -XX:ConcGCThreads=4 -XX:ParallelGCThreads=4 -XX:CICompilerCount=4 -Xmx512M -Dio.netty.eventLoopThreads=4
-XX:CICompilerCount=4 -XX:ConcGCThreads=4 -XX:InitialHeapSize=536870912 -XX:MaxHeapSize=536870912 -XX:ParallelGCThreads=4 -XX:+PrintCommandLineFlags -XX:+UseCompressedClassPointers -XX:+UseCompressedOops -XX:+UseParallelGC
NOTE: the traffic to the application was consistent.
linux memory java profiling
linux memory java profiling
New contributor
New contributor
edited yesterday
Xen2050
11.6k31738
11.6k31738
New contributor
asked yesterday
PriyankaPriyanka
1
1
New contributor
New contributor
What's a GC, full or young or otherwise? Some kind of java setting apparently, but for what?
– Xen2050
yesterday
add a comment |
What's a GC, full or young or otherwise? Some kind of java setting apparently, but for what?
– Xen2050
yesterday
What's a GC, full or young or otherwise? Some kind of java setting apparently, but for what?
– Xen2050
yesterday
What's a GC, full or young or otherwise? Some kind of java setting apparently, but for what?
– Xen2050
yesterday
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Priyanka is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1424585%2fwhy-old-gen-memory-reduced-without-full-gc-run%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Priyanka is a new contributor. Be nice, and check out our Code of Conduct.
Priyanka is a new contributor. Be nice, and check out our Code of Conduct.
Priyanka is a new contributor. Be nice, and check out our Code of Conduct.
Priyanka is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1424585%2fwhy-old-gen-memory-reduced-without-full-gc-run%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What's a GC, full or young or otherwise? Some kind of java setting apparently, but for what?
– Xen2050
yesterday