Skip to content

Commit

Permalink
Bump the memory limits for metrics and queue workers
Browse files Browse the repository at this point in the history
It has been seen when running in containers that the reported memory
usage is a little higher than RSS which is a little higher than PSS.

This means that if we are on the edge on an appliance the same usage
will be over the limit on pods.
  • Loading branch information
agrare committed Jul 23, 2020
1 parent 74842fd commit 7085adc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1121,19 +1121,19 @@
:queue_worker_base:
:defaults:
:dequeue_method: :drb
:memory_threshold: 500.megabytes
:memory_threshold: 600.megabytes
:poll_method: :normal
:queue_timeout: 10.minutes
:ems_metrics_collector_worker:
:defaults:
:count: 2
:memory_threshold: 400.megabytes
:memory_threshold: 600.megabytes
:nice_delta: 3
:poll_method: :escalate
:ems_metrics_collector_worker_google: {}
:ems_metrics_processor_worker:
:count: 2
:memory_threshold: 600.megabytes
:memory_threshold: 800.megabytes
:nice_delta: 7
:poll_method: :escalate
:ems_operations_worker: {}
Expand Down

0 comments on commit 7085adc

Please sign in to comment.