vpapavas commented on a change in pull request #11513: URL: https://github.com/apache/kafka/pull/11513#discussion_r761141392
########## File path: streams/src/main/java/org/apache/kafka/streams/state/internals/RocksDBStore.java ########## @@ -312,6 +318,11 @@ public synchronized void put(final Bytes key, public void putAll(final List<KeyValue<Bytes, byte[]>> entries) { try (final WriteBatch batch = new WriteBatch()) { dbAccessor.prepareBatch(entries, batch); + // FIXME Will the recordMetadata be the offset of the last record in the batch? Review comment: @vvcephei What the comment is asking basically: What is the recordMetadata when there is a batch of records? -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org