diff --git a/CHANGELOG.md b/CHANGELOG.md index fea3c3b0d..0d1f5ece6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,10 @@ For changes to the BPDM Helm charts please consult the [changelog](charts/bpdm/C - BPDM Gate: Fixed Gate not resending business partner data to the golden record process on error sharing state when member sends the exact same business partner again +### Changed + +- BPDM Pool & Gate: Reduce standard batch size for golden record task processing ([#1032](https://github.com/eclipse-tractusx/bpdm/pull/1032)) + ## [6.1.0] - [2024-07-15] ### Added 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: '*'