Skip to content

Commit

Permalink
Reduce CPU and memory
Browse files Browse the repository at this point in the history
As the expensive operations have now been offloaded to celery we can reduce the CPU and memory of this service.
  • Loading branch information
gidsg authored Sep 24, 2024
1 parent 1f3bc2e commit 90fad9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions copilot/post-award/manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ image:
# Port exposed through your container to route traffic to it.
port: 4001

cpu: 2048 # Number of CPU units for the task.
memory: 4096 # Amount of memory in MiB used by the task.
cpu: 1024 # Number of CPU units for the task.
memory: 2048 # Amount of memory in MiB used by the task.
platform: linux/x86_64 # See https://aws.github.io/copilot-cli/docs/manifest/backend-service/#platform
count: 1 # Number of tasks that should be running in your service.
exec: true # Enable running commands in your container.
Expand Down

0 comments on commit 90fad9d

Please sign in to comment.