Maximum bytes of overlaps in grandparent (i.e., level+2) before we stop building a single file in a level->level+1 compaction.
| 29 | // Maximum bytes of overlaps in grandparent (i.e., level+2) before we |
| 30 | // stop building a single file in a level->level+1 compaction. |
| 31 | static int64_t MaxGrandParentOverlapBytes(const Options* options) { |
| 32 | return 10 * TargetFileSize(options); |
| 33 | } |
| 34 | |
| 35 | // Maximum number of bytes in all compacted files. We avoid expanding |
| 36 | // the lower level file set of a compaction if it would make the |
no test coverage detected