Skip to content

Commit 0b84998

Browse files
HDDS-11594. Update batchPut buffer log for rocksdb. (apache#7356)
1 parent c013516 commit 0b84998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hadoop-hdds/framework/src/main/java/org/apache/hadoop/hdds/utils/db/RocksDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public void batchPut(ManagedWriteBatch writeBatch, ByteBuffer key,
306306
ByteBuffer value) throws IOException {
307307
if (LOG.isDebugEnabled()) {
308308
LOG.debug("batchPut buffer key {}", bytes2String(key.duplicate()));
309-
LOG.debug("batchPut buffer value {}", bytes2String(value.duplicate()));
309+
LOG.debug("batchPut buffer value size {}", value.remaining());
310310
}
311311

312312
try (UncheckedAutoCloseable ignored = acquire()) {

0 commit comments

Comments
 (0)