HBASE-24336 [Metrics] FSDataInputStream's localBytesRead is wrong (#1667)
Signed-off-by: binlijin <binlijin@gmail.com>
This commit is contained in:
parent
294c228c67
commit
c32d18d4fb
|
@ -256,7 +256,7 @@ public class FSDataInputStreamWrapper implements Closeable {
|
|||
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