diff --git a/scouter/worker/worker.py b/scouter/worker/worker.py index 7f43896..b36b295 100644 --- a/scouter/worker/worker.py +++ b/scouter/worker/worker.py @@ -76,7 +76,12 @@ async def main(): activities.group_and_hold_data, activities.export_data_to_postgres, activities.store_data_package - ] + ], + max_concurrent_workflow_tasks=100, + max_concurrent_activities=100, + max_concurrent_local_activities=100, + max_concurrent_workflow_task_polls=100, + max_cached_workflows=50, ), Worker( temporal_client, diff --git a/values.yaml b/values.yaml index ded30e4..66e2cb2 100644 --- a/values.yaml +++ b/values.yaml @@ -3,7 +3,7 @@ # Declare variables to be passed into your templates. # This will set the replicaset count more information can be found here: https://kubernetes.io/docs/concepts/workloads/controllers/replicaset/ -replicaCount: 1 +replicaCount: 5 # This sets the container image more information can be found here: https://kubernetes.io/docs/concepts/containers/images/ image: @@ -123,7 +123,7 @@ env: - name: GITHUB_REPO_URL value: "git@github.com:Aignosi/sientia-dataops-scouter_temporal.git" - name: GITHUB_BRANCH - value: "SIENTIAPDE-1110-criar-testes-e-2-e" + value: "SIENTIAPDE-1141-criar-testes-de-carga" - name: PYTHON_APP value: "scouter.worker.worker"