chore: set defaults for fields projections (#8311)

# Which Problems Are Solved

Bigger systems need to process many events during the initialisation
phase of the `eventstore.fields`-table. During setup these calls can
time out.

# How the Problems Are Solved

Changed the default behaviour of these projections to not time out and
increased the bulk limit.

(cherry picked from commit 6c1df83071)
This commit is contained in:
Silvan
2024-07-17 07:23:29 +02:00
committed by Livio Spring
parent 6a97be7bde
commit 8f300f0a96

View File

@@ -231,6 +231,13 @@ Projections:
custom_texts: custom_texts:
TransactionDuration: 2s TransactionDuration: 2s
BulkLimit: 400 BulkLimit: 400
project_grant_fields:
TransactionDuration: 0s
BulkLimit: 2000
org_domain_verified_fields:
TransactionDuration: 0s
BulkLimit: 2000
# The Notifications projection is used for sending emails and SMS to users # The Notifications projection is used for sending emails and SMS to users
Notifications: Notifications:
# As notification projections don't result in database statements, retries don't have an effect # As notification projections don't result in database statements, retries don't have an effect