Increase default worker-high resourcing #80
Merged
+4
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bump default opslevel.workerHigh.resources from small (200m CPU / 500Mi memory requests) to medium (1 CPU / 2Gi memory requests) so high-priority Sidekiq workers have enough CPU and memory to avoid restarts and degraded deployments on typical self-hosted installs.
Problem
We are seeing degraded performance of one customer's
worker-highdeployment.Solution
We already use
resourcesMediumfor ourworker-lowdeployment, there's no reason we should be allocating less to our high priority workloads. Bumps resourcing from small (200m CPU / 500Mi memory requests) to medium (1 CPU / 2Gi memory requests).I had AI help outline our current resource requests:
Comparing this back to our documented Resource Requirements:
It seems like our recommended minimums have been well below the current requirements. Am I missing something here, or do the docs need updated?