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().
|
readStatistics.totalBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||||
getTotalBytesRead();
|
getTotalBytesRead();
|
||||||
readStatistics.totalLocalBytesRead += hdfsDataInputStream.getReadStatistics().
|
readStatistics.totalLocalBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||||
getTotalBytesRead();
|
getTotalLocalBytesRead();
|
||||||
readStatistics.totalShortCircuitBytesRead += hdfsDataInputStream.getReadStatistics().
|
readStatistics.totalShortCircuitBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||||
getTotalShortCircuitBytesRead();
|
getTotalShortCircuitBytesRead();
|
||||||
readStatistics.totalZeroCopyBytesRead += hdfsDataInputStream.getReadStatistics().
|
readStatistics.totalZeroCopyBytesRead += hdfsDataInputStream.getReadStatistics().
|
||||||
|
|
Loading…
Reference in New Issue