Skip to content

Commit

Permalink
chore(parser): bump minimum tasks to 12 (#1030)
Browse files Browse the repository at this point in the history
The parser-graphql-wrapper is causing latency issues
on graphql requests; bump minimum tasks to handle load.
Scaling on cpu and memory does not correlate with increasing
request latency.
  • Loading branch information
kschelonka authored Jan 17, 2025
1 parent 82acd9f commit b11cb7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion infrastructure/parser-graphql-wrapper/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ class ParserGraphQLWrapper extends TerraformStack {
},

autoscalingConfig: {
targetMinCapacity: config.environment === 'Prod' ? 8 : 1,
targetMinCapacity: config.environment === 'Prod' ? 12 : 1,
targetMaxCapacity: config.environment === 'Prod' ? 20 : 10,
},
alarms: {
Expand Down

0 comments on commit b11cb7e

Please sign in to comment.