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 has been archived by the owner on Dec 3, 2019. It is now read-only.
This is a follow up to #4 since the solution proposed there isn't ideal for us. Our keys are generally small and the values are big which matches OFFHEAP_VALUES best so OFFHEAP_TIERED isn't ideal for us. We also use a 2 day retention policy.
Our issue in particular is that we exceed our memory capacity and are being killed by the system.
Ideally, we'd like to see a way to set a max memory usage so that we aren't being killed by the system.
The text was updated successfully, but these errors were encountered:
@dhaval2025 Thanks. Though, that change does not seem to address the max memory usage issue that @cwoodwar6 is dealing with. Unless I'm missing something... ? offHeapStorageSize does not seem to make a difference.
@wirehat when you use cacheMemoryMode= OFFHEAP_VALUES, according to ignite documentaion offHeapStorageSize will not be respected. You need to change the mode to either ONHEAP_TIERED or OFFHEAP_TIERED.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This is a follow up to #4 since the solution proposed there isn't ideal for us. Our keys are generally small and the values are big which matches
OFFHEAP_VALUES
best soOFFHEAP_TIERED
isn't ideal for us. We also use a 2 day retention policy.Our issue in particular is that we exceed our memory capacity and are being killed by the system.
Ideally, we'd like to see a way to set a max memory usage so that we aren't being killed by the system.
The text was updated successfully, but these errors were encountered: