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
kvcoord: set ResumeSpan on unprocessed point requests
Previously, if batch execution was stopped early in dist sender because
of MaxSpanRequestKeys or TargetBytes, the returned batch could have
non-Get point-requests requests that were not processed but which didn't
have a resume-span sent.
The resume span was not set since SQL does not create batches with a mix
of read and write requests with MaxSpanRequestKeys or TargetBytes set;
however, KVNemesis will soon create such batches, so we'd like to handle
them correctly. Further, setting the ResumeSpan allows the
txnWriteBuffer to double-check that all writes were processed just in
case a bug results in the write buffer producing a batch that is
partially processed.
Fixes#153357
Release note: None
0 commit comments