-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add comments relating memory sizing. #88
base: develop
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,28 @@ Configuration Parameters | |
|
||
The default values are specified in `values.yaml` as well as the required values for the ZooKeeper chart. | ||
|
||
Memory Parameters | ||
----------------- | ||
|
||
Memory settings are part of both javaArgs and resources within | ||
values.yaml. The settings must be coordinated. | ||
|
||
Stardog will aggressive use all memory allocated to it via the | ||
javaArgs settings of -Xmx and -XX:MaxDirectMemorySize. The total | ||
memory used by Stardog is the sum of -Xmx and -XX:MaxDirectMemorySize. | ||
|
||
The resources settings of requests:memory and optional limits:memory | ||
must account for the javaArgs settings. requests:memory should be at | ||
least 1g larger than -Xms and -XX:MaxDirectMemorySize total. 2g larger is | ||
preferred. If you chose to establish resourse:limits, limits:memory | ||
must be at least 1g larger than -Xmx and -XX:MaxDirectMemorySize total. A | ||
too small limits:memory setting will likely result in a system crash. | ||
|
||
Network based disk storage is not recommended. If used, the | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you clarify with some examples here vs block storage There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rewrote the network storage section completely differently. And remembered we used a different approach with Disney and Windows SMB. |
||
limits:memory should be at least 4g larger than -Xmx and | ||
-XX:MaxDirectMemorySize total. Network storage often caches large | ||
writes related to data loads and db optimizations. | ||
|
||
Upgrades | ||
-------- | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/aggressive/aggressively
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done. Thank you.