Is it possibly to set a Memory-Limit of a Docker-Container?

When running KeyCloak in a container, it is recommended to set a memory limit. See here: https://github.com/keycloak/keycloak/issues/28729 If I don't set a limit, the memory consumption continues to grow, probably up to 70% of the available RAM. That would be around 22GB RAM (70% of 32GB) Is there any way to set the memory limit of a Docker container?
GitHub
Emphasize the need for setting container limit · Issue #28729 · key...
Description After providing changes[1] to memory settings for the container deployments in Keycloak 24, we've faced some issues related to increased memory utilization. The JVM Heap setting has...
Solution:
I used now follow Configuration "ENV JAVA_OPTS_KC_HEAP="-Xms512m -Xmx1g" Its not recommended to use Xms and Xmx but i dont want to use some relative Percantages. This is more controlable. In the Metrics Tab of Railway its shows 620MB Ram Usage. The KeyCloak Dashboard says following:...
No description
Jump to solution
30 Replies
Percy
Percy7mo ago
Project ID: N/A
Collectors Comet
N/A
Brody
Brody7mo ago
it's not possible as that would just end up with keycloak crashing when it tries to use memory that isn't available, instead you want to tweak the jvm options. Maybe a service variable like this would work? -
JAVA_TOOL_OPTIONS=-Xms128m -Xmx256m
JAVA_TOOL_OPTIONS=-Xms128m -Xmx256m
Though it's untested.
Collectors Comet
First of all: Thank you for the response and your time Brody! The Java-Options Xms and Xmx was the solution in the older version of KeyCloak: "Instead of specifying hardcoded values for the initial and maximum heap size, Keycloak uses relative values to the total memory of a container. The JVM options -Xms, and -Xmx were replaced by -XX:InitialRAMPercentage, and -XX:MaxRAMPercentage." see here: https://www.keycloak.org/2024/03/keycloak-2400-released And the new variables are relative to the container Memory of 32 GB To set the container-Memory-Limit is the recommended way of configuration for KeyCloaks-Memory
Brody
Brody7mo ago
the app in the container sees this -
No description
Brody
Brody7mo ago
your plan allows you to use 32gb of that, and at this time the app needs to be responsible for keeping its own memory in check.
Collectors Comet
"The Keycloak container, instead of specifying hardcoded values for the initial and maximum heap size, uses relative values to the total memory of a container. This behavior is achieved by JVM options -XX:MaxRAMPercentage=70, and -XX:InitialRAMPercentage=50. The -XX:MaxRAMPercentage option represents the maximum heap size as 70% of the total container memory. The -XX:InitialRAMPercentage option represents the initial heap size as 50% of the total container memory. These values were chosen based on a deeper analysis of Keycloak memory management." https://www.keycloak.org/server/containers Than i will try to choose a MaxRAMPercentage Value thats is small enough to not use to much Ram
Brody
Brody7mo ago
So would you want to set a service variable JAVA_OPTS_KC_HEAP to something like -XX:MaxHeapFreeRatio=30 -XX:MaxRAMPercentage=65 ?
Collectors Comet
Not a good Solution, but the only one i can find now Yeah, that would be the solution now
Brody
Brody7mo ago
where does keycloak recommend restricting the containers memory?
Collectors Comet
Here: https://github.com/keycloak/keycloak/pull/28812/files Its really new, so the public documentation does not have it now *"As the heap size is dynamically calculated based on the total container memory, you should always set the memory limit for the container. Previously, the maximum heap size was set to 512 MB, and in order to approach similar values, you should set the memory limit to at least 750 MB. For smaller production-ready deployments, the recommended memory limit is 2 GB."*
Brody
Brody7mo ago
gotcha
Collectors Comet
I spend many hours today to analyse the problem 😅
Brody
Brody7mo ago
yeah the problem is that keycloak sees a whopping 252 gb without any config, how much memory was keycloak using?
Collectors Comet
It begins at 1,4Gb and goes no stop up. At 3GB i removed the pod because of the cost
Brody
Brody7mo ago
oh wow
Collectors Comet
From the Admin-Dashboard of KeyCloak
Brody
Brody7mo ago
after the JAVA_OPTS_KC_HEAP variable?
Collectors Comet
Before. I will try the Variable now
Solution
Collectors Comet
I used now follow Configuration "ENV JAVA_OPTS_KC_HEAP="-Xms512m -Xmx1g" Its not recommended to use Xms and Xmx but i dont want to use some relative Percantages. This is more controlable. In the Metrics Tab of Railway its shows 620MB Ram Usage. The KeyCloak Dashboard says following:
No description
Collectors Comet
I will try it with this configuration.
Brody
Brody7mo ago
thats much better, what do the service metrics say?
Collectors Comet
620MB Ram Usage
Brody
Brody7mo ago
not bad
Collectors Comet
Thats a good usage for a keycloak (Keycloak need much (:)
Brody
Brody7mo ago
thats java for you
Collectors Comet
yeah (: how can i mark this comment with the config i used as the solution?
Collectors Comet
Thank you! Bought you a small coffee as a thank you👍
Brody
Brody7mo ago
thank you very much
Want results from more Discord servers?
Add your server