From 95697c9e4b6de9f327ee33395773f06b95122959 Mon Sep 17 00:00:00 2001 From: Nico Koprowski Date: Wed, 14 Aug 2024 14:50:49 +0800 Subject: [PATCH] fix(config): lower the standard batch sizes for Gate and Pool golden record task processing --- bpdm-gate/src/main/resources/application.yml | 6 +++--- bpdm-pool/src/main/resources/application.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bpdm-gate/src/main/resources/application.yml b/bpdm-gate/src/main/resources/application.yml index 3f995ffd8..ce2b6b373 100644 --- a/bpdm-gate/src/main/resources/application.yml +++ b/bpdm-gate/src/main/resources/application.yml @@ -48,14 +48,14 @@ bpdm: # When and how often the Gate checks for new business partner data to be shared cron: '*/30 * * * * *' # Up to how many golden record tasks can be created when checking - batchSize: 100 + batchSize: 20 fromPool: # Up to how many golden record tasks can be created when checking - batchSize: 100 + batchSize: 20 # When and how often the Gate checks for golden record updates from the Pool cron: '*/30 * * * * *' check: - batchSize: 100 + batchSize: 20 cron: '*/30 * * * * *' # Connection to the pool and orchestrator client: diff --git a/bpdm-pool/src/main/resources/application.yml b/bpdm-pool/src/main/resources/application.yml index 64e149875..f875da5a1 100644 --- a/bpdm-pool/src/main/resources/application.yml +++ b/bpdm-pool/src/main/resources/application.yml @@ -82,7 +82,7 @@ bpdm: # When and how often the Pool should poll for golden record tasks in the orchestrator cron: '*/30 * * * * *' # Up to how many tasks can be requested at the same time - batchSize: 100 + batchSize: 20 security: # Allowed origins for CORS cors-origins: '*'