bbejeck commented on code in PR #23144:
URL: https://github.com/apache/kafka/pull/23144#discussion_r3785903214


##########
streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBStore.java:
##########
@@ -1251,6 +1280,23 @@ public void deleteRange(final ColumnFamilyHandle 
columnFamily, final byte[] from
             buffer.stageDeleteRange(columnFamily, Bytes.wrap(from), 
Bytes.wrap(to));
         }
 
+        @Override
+        public void putAll(final ColumnFamilyAccessor cfAccessor,
+                           final List<KeyValue<Bytes, byte[]>> entries) {
+            // Batch writes must be staged like single-key puts, or they would 
land in the store
+            // uncommitted: visible at READ_COMMITTED, surviving a rollback, 
and uncounted by

Review Comment:
   comments were unclear before, I've updated them 



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to