Skip to content

Commit ae372e9

Browse files
committed
infra: increase concurrency
1 parent 6240197 commit ae372e9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

infra/main.bicep

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ resource containerApp 'Microsoft.App/containerApps@2025-01-01' = {
8686
memory: '4Gi'
8787
}
8888
env: [
89-
{ name: 'OPTIMIZER_TIME_LIMIT', value: '18' }
90-
{ name: 'OPTIMIZER_NUM_THREADS', value: '2' }
89+
{ name: 'OPTIMIZER_TIME_LIMIT', value: '20' }
90+
{ name: 'OPTIMIZER_NUM_THREADS', value: '1' }
9191
{
9292
name: 'GUNICORN_CMD_ARGS'
93-
value: '--workers 2 --timeout 40 --max-requests 5000 --max-requests-jitter 500'
93+
value: '--workers 3 --timeout 40 --max-requests 5000 --max-requests-jitter 500'
9494
}
9595
{ name: 'JWT_TOKEN_SECRET', secretRef: 'jwt-token-secret' }
9696
]
@@ -114,7 +114,7 @@ resource containerApp 'Microsoft.App/containerApps@2025-01-01' = {
114114
name: 'http-scaling'
115115
http: {
116116
metadata: {
117-
concurrentRequests: '4'
117+
concurrentRequests: '6'
118118
}
119119
}
120120
}

0 commit comments

Comments
 (0)