|
The "compressed" and "decompressed" parts of the names are misleading as the bytes referred to are not necessarily, as the names imply, compressed or decompressed bytes, i.e.:
network.compression.snappy.compressed.bytesIn *** these bytes are not in fact compressed ***
|
network.compression.snappy.compressed.bytesOut
|
network.compression.snappy.decompressed.bytesIn *** these bytes are not in fact decompressed ***
|
network.compression.snappy.decompressed.bytesOut
|
This is because these are actually bytes input to and output from the compressor or decompressor, not compressed or decompressed bytes, so it would make sense for the names of the sections to be "compressor" and "decompressor", i.e. change the above names to
network.compression.snappy.compressor.bytesIn
|
network.compression.snappy.compressor.bytesOut
|
network.compression.snappy.decompressor.bytesIn
|
network.compression.snappy.decompressor.bytesOut
|
|