• L
    Add a blob file builder class that can be used in background jobs (#7306) · 50439606
    Levi Tamasi 提交于
    Summary:
    The patch adds a class called `BlobFileBuilder` that can be used to build
    and cut blob files in background jobs (flushes/compactions). The class
    enforces a value size threshold (`min_blob_size`; smaller blobs will be inlined
    in the LSM tree itself), and supports specifying a blob file size limit (`blob_file_size`),
    as well as compression (`blob_compression_type`) and checksums for blob files.
    It also keeps track of the generated blob files and their associated `BlobFileAddition`
    metadata, which can be applied as part of the background job's `VersionEdit`.
    
    Pull Request resolved: https://github.com/facebook/rocksdb/pull/7306
    
    Test Plan: `make check`
    
    Reviewed By: riversand963
    
    Differential Revision: D23298817
    
    Pulled By: ltamasi
    
    fbshipit-source-id: 38f35d81dab1ba81f15236240612ec173d7f21b5
    50439606
Makefile 81.6 KB