Closed CassOnMars closed 2 months ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
hub-monorepo | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Sep 17, 2024 5:34am |
Latest commit: f71136fc42ba9fe57dbc84ca6ce9c69f465e1c60
The changes in this PR will be included in the next version bump.
Not sure what this means? Click here to learn what changesets are.
Click here if you're a maintainer who wants to add another changeset to this PR
Why is this change needed?
Reconciliation of messages historically from off-hub sources is achieved via
submitMessage
, which incurs a performance penalty when many of these calls are made in rapid succession. This change introduces a newsubmitBulkMessages
RPC which allows many of the to-be reconciled messages to be submitted at once and handle via the more efficient rustmergeMany
underlying call.Merge Checklist
Choose all relevant options below by adding an
x
now or at any time before submitting for reviewPR-Codex overview
This PR adds a new gRPC method
SubmitBulkMessages
for submitting multiple messages at once and updates related proto files and service implementations.Detailed summary
SubmitBulkMessages
gRPC methodSubmitBulkMessagesRequest
,MessageError
,BulkMessageResponse
,SubmitBulkMessagesResponse
SubmitBulkMessages