tikv / rocksdb

A library that provides an embeddable, persistent key-value store for fast storage.
http://rocksdb.org
GNU General Public License v2.0
120 stars 93 forks source link

exclude uninitialized files when estimating compression ratio #335

Closed tabokie closed 1 year ago

tabokie commented 1 year ago

Raw key value size is stored in table properties. They may not be read out immediately after compaction. This is why after compaction (or restart) the compression ratio is always wrong.

This PR excludes those files without a meaningful table property.