HBASE-24336 [Metrics] FSDataInputStream's localBytesRead is wrong (#1667)
Signed-off-by: binlijin <binlijin@gmail.com>
This commit is contained in:
parent
e4dbfe9bed
commit
febf15f1ea
|
@ -238,7 +238,7 @@ public class FSDataInputStreamWrapper {
|
|||
readStatistics.totalBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||
getTotalBytesRead();
|
||||
readStatistics.totalLocalBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||
getTotalBytesRead();
|
||||
getTotalLocalBytesRead();
|
||||
readStatistics.totalShortCircuitBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||
getTotalShortCircuitBytesRead();
|
||||
readStatistics.totalZeroCopyBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||
|
|
Loading…
Reference in New Issue