Skip to content

Commit 9fccc95

Browse files
authored
RocksDBStorePartition: log a number of bytes written (#890)
1 parent e46b9fd commit 9fccc95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

quixstreams/state/rocksdb/partition.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ def write(
126126
logger.debug(
127127
f"Flushing state changes to the disk "
128128
f'path="{self.path}" '
129-
f"changelog_offset={changelog_offset}"
129+
f"changelog_offset={changelog_offset} "
130+
f"bytes_total={batch.size_in_bytes()}"
130131
)
131132

132133
self._write(batch)

0 commit comments

Comments
 (0)