Replies: 1 comment
-
I think it's possible to add a parameter to the page: jvmArgs, so that users can fine-tune the jvm parameters |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
in datax:
I want to adjust the jvm parameter : -Xmn. Is there any way to adjust the size of the Eden in the JVM heap?
I would like to explain why it is necessary to adjust the size of the Eden :
My datax task JVM STAT as follows:
We can find that YGC occurred 104 times, while FGC only occurred once;
As of the end of the task, the old only used 4% of memory, while the other 96% of memory was wasted.
so,I want to increase the size of the Eden memory
But, It was found in the source code that only Xms and Xmx can be adjusted,How to adjust -Xmn ?
Beta Was this translation helpful? Give feedback.
All reactions