@@ -140,10 +140,10 @@ mcpIndexerHttp:
140140 # -- Resource requests and limits
141141 resources :
142142 requests :
143- cpu : 250m
143+ cpu : 500m
144144 memory : 8Gi
145145 limits :
146- cpu : " 1 "
146+ cpu : " 2 "
147147 memory : 16Gi
148148 # -- Liveness probe
149149 livenessProbe :
@@ -167,7 +167,7 @@ mcpIndexerHttp:
167167 autoscaling :
168168 enabled : true
169169 minReplicas : 1
170- maxReplicas : 4
170+ maxReplicas : 2
171171 targetCPUUtilizationPercentage : 70
172172 targetMemoryUtilizationPercentage : 80
173173 # -- Topology spread constraints
@@ -207,11 +207,11 @@ mcpMemoryHttp:
207207 # -- Resource requests and limits
208208 resources :
209209 requests :
210- cpu : 250m
211- memory : 512Mi
210+ cpu : 500m
211+ memory : 1Gi
212212 limits :
213- cpu : " 1 "
214- memory : 2Gi
213+ cpu : " 1500m "
214+ memory : 3Gi
215215 # -- Liveness probe
216216 livenessProbe :
217217 httpGet :
@@ -230,7 +230,7 @@ mcpMemoryHttp:
230230 autoscaling :
231231 enabled : true
232232 minReplicas : 1
233- maxReplicas : 3
233+ maxReplicas : 1
234234 targetCPUUtilizationPercentage : 70
235235 targetMemoryUtilizationPercentage : 80
236236 # -- Topology spread constraints
@@ -273,10 +273,10 @@ uploadService:
273273 resources :
274274 requests :
275275 cpu : 250m
276- memory : 512Mi
276+ memory : 1Gi
277277 limits :
278- cpu : " 1 "
279- memory : 2Gi
278+ cpu : " 1500m "
279+ memory : 3Gi
280280 # -- Environment variables
281281 env :
282282 UPLOAD_SERVICE_HOST : " 0.0.0.0"
@@ -288,7 +288,7 @@ uploadService:
288288 autoscaling :
289289 enabled : true
290290 minReplicas : 1
291- maxReplicas : 3
291+ maxReplicas : 2
292292 targetCPUUtilizationPercentage : 70
293293 targetMemoryUtilizationPercentage : 80
294294 # -- Topology spread constraints
@@ -305,7 +305,7 @@ watcher:
305305 # -- Enable Watcher
306306 enabled : true
307307 # -- Number of replicas
308- replicas : 1
308+ replicas : 2
309309 # -- Command to run
310310 command :
311311 - python
@@ -316,10 +316,10 @@ watcher:
316316 resources :
317317 requests :
318318 cpu : 500m
319- memory : 2Gi
319+ memory : 3Gi
320320 limits :
321- cpu : " 2 "
322- memory : 8Gi
321+ cpu : " 2500m "
322+ memory : 10Gi
323323 # -- Environment variables (in addition to configmap)
324324 env :
325325 WATCH_ROOT : /work
@@ -343,7 +343,7 @@ watcher:
343343learningRerankerWorker :
344344 # -- Enable Learning Reranker Worker
345345 enabled : true
346- # -- Number of replicas
346+ # -- Number of replicas (singleton worker with leader election - only 1 can run)
347347 replicas : 1
348348 # -- Command to run
349349 command :
@@ -358,11 +358,11 @@ learningRerankerWorker:
358358 limits :
359359 cpu : " 1"
360360 memory : 2Gi
361- # -- HPA configuration
361+ # -- HPA configuration (capped at 1 - singleton worker)
362362 autoscaling :
363363 enabled : true
364364 minReplicas : 1
365- maxReplicas : 3
365+ maxReplicas : 1
366366 targetCPUUtilizationPercentage : 70
367367 targetMemoryUtilizationPercentage : 80
368368 # -- Topology spread constraints
0 commit comments