• V
    New API to get all merge operands for a Key (#5604) · d150e014
    Vijay Nadimpalli 提交于
    Summary:
    This is a new API added to db.h to allow for fetching all merge operands associated with a Key. The main motivation for this API is to support use cases where doing a full online merge is not necessary as it is performance sensitive. Example use-cases:
    1. Update subset of columns and read subset of columns -
    Imagine a SQL Table, a row is encoded as a K/V pair (as it is done in MyRocks). If there are many columns and users only updated one of them, we can use merge operator to reduce write amplification. While users only read one or two columns in the read query, this feature can avoid a full merging of the whole row, and save some CPU.
    2. Updating very few attributes in a value which is a JSON-like document -
    Updating one attribute can be done efficiently using merge operator, while reading back one attribute can be done more efficiently if we don't need to do a full merge.
    ----------------------------------------------------------------------------------------------------
    API :
    Status GetMergeOperands(
          const ReadOptions& options, ColumnFamilyHandle* column_family,
          const Slice& key, PinnableSlice* merge_operands,
          GetMergeOperandsOptions* get_merge_operands_options,
          int* number_of_operands)
    
    Example usage :
    int size = 100;
    int number_of_operands = 0;
    std::vector<PinnableSlice> values(size);
    GetMergeOperandsOptions merge_operands_info;
    db_->GetMergeOperands(ReadOptions(), db_->DefaultColumnFamily(), "k1", values.data(), merge_operands_info, &number_of_operands);
    
    Description :
    Returns all the merge operands corresponding to the key. If the number of merge operands in DB is greater than merge_operands_options.expected_max_number_of_operands no merge operands are returned and status is Incomplete. Merge operands returned are in the order of insertion.
    merge_operands-> Points to an array of at-least merge_operands_options.expected_max_number_of_operands and the caller is responsible for allocating it. If the status returned is Incomplete then number_of_operands will contain the total number of merge operands found in DB for key.
    Pull Request resolved: https://github.com/facebook/rocksdb/pull/5604
    
    Test Plan:
    Added unit test and perf test in db_bench that can be run using the command:
    ./db_bench -benchmarks=getmergeoperands --merge_operator=sortlist
    
    Differential Revision: D16657366
    
    Pulled By: vjnadimpalli
    
    fbshipit-source-id: 0faadd752351745224ee12d4ae9ef3cb529951bf
    d150e014
db_impl.cc 148.0 KB