-
Notifications
You must be signed in to change notification settings - Fork 2
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
Lower memory usage of commons-operator #154
Comments
After some investigation, this largely comes down to two sources:
|
There are some docs on this now from kube in https://kube.rs/controllers/optimization/. in particular;
should all help reduce the memory contribution of cached objects - although it will still generally scale with num_objects in your stores. |
kube 0.92.0 also seems to have nice memory improvements: https://kube.rs/blog/2024/06/11/watcher-memory-improvements/ :) |
Currently the memory required by the commons-operator scales with the amount of Pods in a K8s cluster.
This can lead to more or less unbounded memory usage.
We need to investigate how we can limit this.
One possibility to limits this is by leveraging the work that will be done in stackabletech/issues#188
The text was updated successfully, but these errors were encountered: