-
Notifications
You must be signed in to change notification settings - Fork 87
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
Enhance storing events in batches in Azure provider #1561
Conversation
PR Summary
|
/integration sha=ae2952361626cfc63601e6bdcba56d6191a14ace |
⌛ Integration tests are running... Check their status here 👈 |
✅ Integration tests have finished successfully! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
PR #1436 added the ability to store events in batches. However, there are times when one might want to store events individually due to cost or performance reasons. This PR adds the ability to enable or disable batching events via configuration. It also adds more options for the batch inserts, such as setting the size of the chunks.
Changes
azureConfiguration
property to theBoosterConfig
object to set options for batch storage of events.storeEvents
method into two to handle batch and non-batch scenarios.Checks