Skip to content

Commit

Permalink
#3869 - Increase memory and CPU limits of queue consumers to handle j…
Browse files Browse the repository at this point in the history
…obs with more resource demand (#4184)

## Issue

While running the federal restrictions file with bulk volume of data
(139MB File), we noticed that the required resource limit is going
beyond that maximum limit for both CPU and Memory.


![image](https://github.com/user-attachments/assets/6fa5174b-d2d2-41e7-9531-296f78f390e7)


![image](https://github.com/user-attachments/assets/ebf10fea-5a8c-40d2-9d4e-32272b592011)

## Solution

Hence to meet the demand for job(s) requiring more resources(Currently
federal restrictions is the only one such job), CPU and Memory limits
and requested have been bumped up a little.

## Outcome (Federal Restrictions file 139MB)


![image](https://github.com/user-attachments/assets/7d9be43a-f1d9-4b34-8eb8-8472af561555)
  • Loading branch information
dheepak-aot authored Dec 27, 2024
1 parent c0f253c commit e8eece7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions devops/openshift/queue-consumers-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -366,13 +366,13 @@ parameters:
- name: SERVICE_NAME
value: queue-consumers
- name: CPU_LIMIT
value: "0.2"
value: "0.4"
- name: MEMORY_LIMIT
value: "768M"
value: "1024M"
- name: CPU_REQUEST
value: "0.1"
value: "0.2"
- name: MEMORY_REQUEST
value: "512M"
value: "768M"
- name: REPLICAS
value: "2"
- name: DB_SERVICE_KEY
Expand Down

0 comments on commit e8eece7

Please sign in to comment.