Skip to content

Commit

Permalink
feat(api): increase task count
Browse files Browse the repository at this point in the history
Ref: #1040
Signed-off-by: Thomas Yopes <[email protected]>
  • Loading branch information
Thomas Yopes authored and Thomas Yopes committed Jun 25, 2024
1 parent 1797b45 commit 54ea7ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions infra/lib/fhir-server-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ export function settings() {
return {
cpu: isLarge ? 2 * vCPU : 1 * vCPU,
memoryLimitMiB: isLarge ? 4096 : 2048,
taskCountMin: isLarge ? 4 : 1,
taskCountMax: isLarge ? 10 : 5,
taskCountMin: isLarge ? 6 : 1,
taskCountMax: isLarge ? 15 : 5,
minDBCap: isLarge ? 4 : 1,
maxDBCap: isLarge ? 32 : 8,
minSlowLogDurationInMs: 600, // https://www.postgresql.org/docs/current/runtime-config-logging.html#GUC-LOG-MIN-DURATION-STATEMENT
Expand Down

0 comments on commit 54ea7ee

Please sign in to comment.