Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(config): lower the standard batch sizes #1032

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ For changes to the BPDM Helm charts please consult the [changelog](charts/bpdm/C

### Added

-BPDM Pool: Post endpoint to create a site for LegalAndSiteMainAddress addressType.([#739](https://github.com/eclipse-tractusx/sig-release/issues/739))
- BPDM Pool: Post endpoint to create a site for LegalAndSiteMainAddress addressType.([#739](https://github.com/eclipse-tractusx/sig-release/issues/739))


### 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
Expand Down
6 changes: 3 additions & 3 deletions bpdm-gate/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion bpdm-pool/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: '*'
Expand Down