1. 23 3月, 2017 1 次提交
  2. 21 3月, 2017 1 次提交
  3. 14 3月, 2017 1 次提交
  4. 10 3月, 2017 1 次提交
  5. 24 2月, 2017 2 次提交
  6. 22 2月, 2017 1 次提交
  7. 18 2月, 2017 2 次提交
  8. 14 2月, 2017 1 次提交
    • S
      Remove disableDataSync option · eb912a92
      Sagar Vemuri 提交于
      Summary:
      Remove disableDataSync, and another similarly named disable_data_sync options.
      This is being done to simplify options, and also because the performance gains of this feature can be achieved by other methods.
      Closes https://github.com/facebook/rocksdb/pull/1859
      
      Differential Revision: D4541292
      
      Pulled By: sagar0
      
      fbshipit-source-id: 5b3a6ca
      eb912a92
  9. 11 2月, 2017 1 次提交
  10. 09 2月, 2017 1 次提交
  11. 07 2月, 2017 1 次提交
  12. 02 2月, 2017 1 次提交
  13. 27 1月, 2017 1 次提交
  14. 21 1月, 2017 1 次提交
  15. 29 12月, 2016 2 次提交
  16. 13 12月, 2016 1 次提交
  17. 07 12月, 2016 1 次提交
  18. 06 12月, 2016 3 次提交
  19. 02 12月, 2016 1 次提交
  20. 01 12月, 2016 1 次提交
    • M
      Support for range skips in compaction filter · 247d0979
      Mike Kolupaev 提交于
      Summary:
      This adds the ability for compaction filter to say "drop this key-value, and also drop everything up to key x". This will cause the compaction to seek input iterator to x, without reading the data. This can make compaction much faster when large consecutive chunks of data are filtered out. See the changes in include/rocksdb/compaction_filter.h for the new API.
      
      Along the way this diff also adds ability for compaction filter changing merge operands, similar to how it can change values; we're not going to use this feature, it just seemed easier and cleaner to implement it than to document that it's not implemented :)
      
      The diff is not as big as it may seem, about half of the lines are a test.
      Closes https://github.com/facebook/rocksdb/pull/1599
      
      Differential Revision: D4252092
      
      Pulled By: al13n321
      
      fbshipit-source-id: 41e1e48
      247d0979
  21. 24 11月, 2016 1 次提交
    • S
      Improve Write Stalling System · cd7c4143
      Siying Dong 提交于
      Summary:
      Current write stalling system has the problem of lacking of positive feedback if the restricted rate is already too low. Users sometimes stack in very low slowdown value. With the diff, we add a positive feedback (increasing the slowdown value) if we recover from slowdown state back to normal. To avoid the positive feedback to keep the slowdown value to be to high, we add issue a negative feedback every time we are close to the stop condition. Experiments show it is easier to reach a relative balance than before.
      
      Also increase level0_stop_writes_trigger default from 24 to 32. Since level0_slowdown_writes_trigger default is 20, stop trigger 24 only gives four files as the buffer time to slowdown writes. In order to avoid stop in four files while 20 files have been accumulated, the slowdown value must be very low, which is amost the same as stop. It also doesn't give enough time for the slowdown value to converge. Increase it to 32 will smooth out the system.
      Closes https://github.com/facebook/rocksdb/pull/1562
      
      Differential Revision: D4218519
      
      Pulled By: siying
      
      fbshipit-source-id: 95e4088
      cd7c4143
  22. 18 11月, 2016 1 次提交
  23. 17 11月, 2016 4 次提交
  24. 16 11月, 2016 1 次提交
  25. 15 11月, 2016 1 次提交
  26. 14 11月, 2016 1 次提交
    • Y
      Optimize sequential insert into memtable - Part 1: Interface · 1ea79a78
      Yi Wu 提交于
      Summary:
      Currently our skip-list have an optimization to speedup sequential
      inserts from a single stream, by remembering the last insert position.
      We extend the idea to support sequential inserts from multiple streams,
      and even tolerate small reordering wihtin each stream.
      
      This PR is the interface part adding the following:
      - Add `memtable_insert_prefix_extractor` to allow specifying prefix for each key.
      - Add `InsertWithHint()` interface to memtable, to allow underlying
        implementation to return a hint of insert position, which can be later
        pass back to optimize inserts.
      - Memtable will maintain a map from prefix to hints and pass the hint
        via `InsertWithHint()` if `memtable_insert_prefix_extractor` is non-null.
      Closes https://github.com/facebook/rocksdb/pull/1419
      
      Differential Revision: D4079367
      
      Pulled By: yiwu-arbug
      
      fbshipit-source-id: 3555326
      1ea79a78
  27. 13 11月, 2016 1 次提交
  28. 03 11月, 2016 1 次提交
  29. 02 11月, 2016 1 次提交
  30. 19 10月, 2016 1 次提交
  31. 18 10月, 2016 1 次提交
  32. 15 10月, 2016 1 次提交