-
Notifications
You must be signed in to change notification settings - Fork 58
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
chore: increase cpu/mem for live-mainnet history-provider #1465
Conversation
|
resources.limits = mkPodResources "500Mi" "2000m"; | ||
resources.requests = mkPodResources "150Mi" "1000m"; |
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.
I think you need mkForce
for this. Also has this been tested? We might need to remove limit altogether to resolve this issue
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.
Probably we will end up with something like this. Also please check grafana memory usage, 150m feels low
resources.limits = mkPodResources "500Mi" "2000m"; | |
resources.requests = mkPodResources "150Mi" "1000m"; | |
resources = lib.mkForce { | |
requests = mkPodResources "150Mi" "1000m"; | |
}; |
Replaced by planned removal of CPU limits from all providers. |
I see we have been getting cpu throttled with the 1.2 cores so I bumped it up to 2 full cores to see if that helps resolve the issue