Skip to content

Commit

Permalink
Revert "Reduce resource usage even more on staging"
Browse files Browse the repository at this point in the history
This reverts commit 40deeae.

Resources are _too_ constrainted now, and we're tripping timeouts.
I guess we could raise timeouts, but since it's been confirmed we were
not using too much resources, let's make this run faster.
  • Loading branch information
yrodiere committed Jan 14, 2025
1 parent fdb5be7 commit 1f84bf8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/helm/values.staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@ app:
QUARKUS_PROFILE: 'staging'
# Avoid overloading the rather resource-constrained Search backend instance
INDEXING_QUEUE_COUNT: '4'
INDEXING_BULK_SIZE: '5'
INDEXING_BULK_SIZE: '10'
resources:
limits:
cpu: 1000m
memory: 750Mi
memory: 1Gi
requests:
cpu: 250m
memory: 400Mi
memory: 500Mi
elasticsearch:
envs:
ES_JAVA_OPTS: ' -Xms350m -Xmx350m '
ES_JAVA_OPTS: ' -Xms500m -Xmx500m '
resources:
limits:
cpu: 500m
memory: 1.0Gi
requests:
cpu: 250m
memory: 500Mi
memory: 750Mi

0 comments on commit 1f84bf8

Please sign in to comment.