-
Notifications
You must be signed in to change notification settings - Fork 83
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: batch entry retry #1918
fix: batch entry retry #1918
Conversation
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. 🗂️ Base branches to auto review (2)
Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## hotfix/revert-sanitization #1918 +/- ##
=============================================================
Coverage ? 57.52%
=============================================================
Files ? 485
Lines ? 16505
Branches ? 3310
=============================================================
Hits ? 9494
Misses ? 5742
Partials ? 1269 ☔ View full report in Codecov by Sentry. |
size-limit report 📦
|
Quality Gate passedIssues Measures |
PR Description
This PR fixes, #1917.
When a batch request fails and is retryable, as part of the requeue action, the entry which is an array of individual events is added to the "batch" queue in the batching mode.
The batch queue should only contain single event items and when it is time to dispatch a batch, we generate a queue item out of all those events.
Since an array of events is added to the batch queue, it fails at the next processing step.
I've updated the RetryQueue module to mark the entries explicitly as batch and single. This way, only single event items are added to the batch queue preventing this issue and successful retries of those entries.
Moreover, while reclaiming stale queues that may not contain this item-type parameter, we temporarily determine it based on the contents of the item.
This will not be needed in the long run.
Linear task (optional)
https://linear.app/rudderstack/issue/SDK-2606/fix-retry-of-batched-requests
Cross Browser Tests
Please confirm you have tested for the following browsers:
Sanity Suite
Security