You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 19, 2019. It is now read-only.
Currently, the SupportFiles/agent-userscript.ps1 file statically sets -Xmx to 256MiB. It may make more sense to derive a value based on the agent-host's available memory configuration (or leave wholly unset to accept the agent-defaults).
Similarly, vendor recommendations for heap-size are to set -Xms to half -Xmx. In current script, -Xms does not appear to be set at all.
Expected Behavior:
JVM will be tuned to align well with hosting-instance's available memory
Review vendor guidance on agent-software's memory-configuration (e.g., this document - mostly relevant to master nodes but may have relevance to agent-nodes)
Problem Description:
Currently, the
SupportFiles/agent-userscript.ps1file statically sets-Xmxto 256MiB. It may make more sense to derive a value based on the agent-host's available memory configuration (or leave wholly unset to accept the agent-defaults).Similarly, vendor recommendations for heap-size are to set
-Xmsto half-Xmx. In current script,-Xmsdoes not appear to be set at all.Expected Behavior:
JVM will be tuned to align well with hosting-instance's available memory
Actual Behavior:
JVM is statically-set
Reference/Related Links:
Review: