Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/kv/kvclient/kvstreamer/streamer.go
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ func (s *Streamer) Enqueue(ctx context.Context, reqs []kvpb.RequestUnion) (retEr
}
totalReqsMemUsage += r.reqsReservedBytes + r.overheadAccountedFor

if s.mode == OutOfOrder {
if s.mode == OutOfOrder && len(r.reqs) > 1 {
// Sort all single-range requests to be in the key order.
// TODO(yuzefovich): we should be able to sort not head-of-the-line
// request in the InOrder mode too; however, there would be
Expand Down
Loading