You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Batching logic has a max instruction set of 65535, and with 4 instructions per INSERT the batch has a max messages of 64435/4. We need to optimize splitting the batch inserts while continuing to obey the upsert time.
Acceptance Criteria
New logic splits up inserts so there isnt any 1 item inserts
Proposed Solution
Split the items up using a division, where remainder is attached to one message, guarranteeing data over the limit wont be used.
Mocks
No response
The text was updated successfully, but these errors were encountered:
Description
Batching logic has a max instruction set of 65535, and with 4 instructions per INSERT the batch has a max messages of 64435/4. We need to optimize splitting the batch inserts while continuing to obey the upsert time.
Acceptance Criteria
Proposed Solution
Split the items up using a division, where remainder is attached to one message, guarranteeing data over the limit wont be used.
Mocks
No response
The text was updated successfully, but these errors were encountered: