Details
Description
In a cluster where there is replication going on, I've noticed that this is always 0:
"source.shippedKBs" : 0,
Looking at the source reveals why:
metrics.shipBatch(currentNbOperations, currentSize / 1024, currentNbHFiles);
It is always undercounting because we discard remaining bytes after KB boundary. This is specially a problem when we are always shipping small batches <1KB.