1. 24 5月, 2016 5 次提交
    • O
      Update CMakeLists.txt for added test · d379d110
      omegaga 提交于
      Summary: Update CMakeLists.txt for added db_io_failure_test. Depends on D58341
      
      Test Plan: Run make check to see if the tests are working properly.
      
      Reviewers: sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D58671
      d379d110
    • K
      Direct IO fix for Mac · 21f847ed
      krad 提交于
      Summary:
      O_DIRECT is not available in Mac as a flag for open. The fix is to make
      use of fctl after the file is opened
      
      Test Plan: Run the tests on mac and Linux
      
      Reviewers: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D58665
      21f847ed
    • A
      Clean up the ComputeCompactionScore() API · 99765ed8
      Ashish Shenoy 提交于
      Summary: Make CompactionOptionsFIFO a part of mutable_cf_options
      
      Test Plan: UT
      
      Reviewers: sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, lgalanis, dhruba
      
      Differential Revision: https://reviews.facebook.net/D58653
      99765ed8
    • S
      Expose report_bg_io_stats option in the C API. (#1131) · def2f7bd
      Shen Li 提交于
      def2f7bd
    • K
      Direct IO capability for RocksDB · f89caa12
      krad 提交于
      Summary:
      This patch adds direct IO capability to RocksDB Env.
      
      The direct IO capability is required for persistent cache since NVM is best
      accessed as 4K direct IO. SSDs can leverage direct IO for reading.
      
      Direct IO requires the offset and size be sector size aligned, and memory to
      be kernel page aligned. Since neither RocksDB/Persistent read cache data
      layout is aligned to sector size, the code can accommodate reading unaligned IO size
      (or unaligned memory) at the cost of an alloc/copy.
      
      The write code path expects the size and memory to be aligned.
      
      Test Plan: Run RocksDB unit tests
      
      Reviewers: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D57393
      f89caa12
  2. 23 5月, 2016 7 次提交
  3. 21 5月, 2016 2 次提交
  4. 20 5月, 2016 7 次提交
    • A
      Eliminate use of 'using namespace std'. Also remove a number of ADL references to std functions. · 2073cf37
      Aaron Orenstein 提交于
      Summary: Reduce use of argument-dependent name lookup in RocksDB.
      
      Test Plan: 'make check' passed.
      
      Reviewers: andrewkr
      
      Reviewed By: andrewkr
      
      Subscribers: leveldb, andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D58203
      2073cf37
    • D
      Split WinEnv into separate classes. (#1128) · 26adaad4
      Dmitri Smirnov 提交于
      For ease of reuse and customization as a library
        without wrapping.
        WinEnvThreads is a class for replacement.
        WintEnvIO is a class for reuse and behavior override.
        Added private virtual functions for custom override
        of fallocate pread for io classes.
      26adaad4
    • K
      Implement GetUniqueId for Mac · bb98ca3c
      krad 提交于
      Summary:
      Persistent read cache relies on the accuracy of the GetUniqueIdFromFile
      to generate a unique key for a given block of data. Currently we don't have an
      implementation for Mac.
      
      This patch adds an implementation.
      
      Test Plan: Run unit tests
      
      Reviewers: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D58413
      bb98ca3c
    • I
      Add MaxOperator to utilities/merge_operators/ · 1f2dca0e
      Islam AbdelRahman 提交于
      Summary:
      Introduce MaxOperator a simple merge operator that return the max of all operands.
      This merge operand help me in benchmarking
      
      Test Plan: Add new unitttests
      
      Reviewers: sdong, andrewkr, yhchiang
      
      Reviewed By: yhchiang
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D57873
      1f2dca0e
    • R
      Added "number of merge operands" to statistics in ssts. · f6e404c2
      Richard Cairns Jr 提交于
      Summary:
      A couple of notes from the diff:
        - The namespace block I added at the top of table_properties_collector.cc was in reaction to an issue i was having with PutVarint64 and reusing the "val" string.  I'm not sure this is the cleanest way of doing this, but abstracting this out at least results in the correct behavior.
        - I chose "rocksdb.merge.operands" as the property name.  I am open to suggestions for better names.
        - The change to sst_dump_tool.cc seems a bit inelegant to me.  Is there a better way to do the if-else block?
      
      Test Plan:
      I added a test case in table_properties_collector_test.cc.  It adds two merge operands and checks to make sure that both of them are reflected by GetMergeOperands.  It also checks to make sure the wasPropertyPresent bool is properly set in the method.
      
      Running both of these tests should pass:
      ./table_properties_collector_test
      ./sst_dump_test
      
      Reviewers: IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D58119
      f6e404c2
    • E
      Fix formatting of HISTORY.md (#1126) · 7383b64b
      Evan Shaw 提交于
      A couple "New Features" headers needed a blank line before them.
      7383b64b
    • D
      Disable long running GroupCommitTest (#1125) · 0e665c39
      Dmitri Smirnov 提交于
      Add db_test2
      0e665c39
  5. 19 5月, 2016 3 次提交
  6. 18 5月, 2016 5 次提交
    • I
      Fix build · 05c5c39a
      Islam AbdelRahman 提交于
      05c5c39a
    • R
      Long outstanding prepare test · a6254f2b
      Reid Horuff 提交于
      Summary: This tests that a prepared transaction is not lost after several crashes, restarts, and memtable flushes.
      
      Test Plan: TwoPhaseLongPrepareTest
      
      Reviewers: sdong
      
      Subscribers: hermanlee4, andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D58185
      a6254f2b
    • I
      Fix TransactionTest.TwoPhaseMultiThreadTest under TSAN · 2ead1151
      Islam AbdelRahman 提交于
      Summary:
      TransactionTest.TwoPhaseMultiThreadTest runs forever under TSAN and our CI builds time out
      looks like the reason is that some threads keep running and other threads dont get a chance to increment the counter
      
      Test Plan: run the test under TSAN
      
      Reviewers: sdong, horuff
      
      Reviewed By: horuff
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D58359
      2ead1151
    • K
      Persistent Read Cache (Part 2) Data structure for building persistent read cache index · 1f0142ce
      krad 提交于
      Summary:
      We expect the persistent read cache to perform at speeds upto 8 GB/s. In order
      to accomplish that, we need build a index mechanism which operate in the order
      of multiple millions per sec rate.
      
      This patch provide the basic data structure to accomplish that:
      
      (1) Hash table implementation with lock contention spread
          It is based on the StripedHashSet<T> implementation in
          The Art of multiprocessor programming by Maurice Henry & Nir Shavit
      (2) LRU implementation
          Place holder algorithm for further optimizing
      (3) Evictable Hash Table implementation
          Building block for building index data structure that evicts data like files
          etc
      
      TODO:
      (1) Figure if the sharded hash table and LRU can be used instead
      (2) Figure if we need to support configurable eviction algorithm for
      EvictableHashTable
      
      Test Plan: Run unit tests
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D55785
      1f0142ce
    • A
      [rocksdb] make more options dynamic · 43afd72b
      Aaron Gao 提交于
      Summary:
      make more ColumnFamilyOptions dynamic:
      - compression
      - soft_pending_compaction_bytes_limit
      - hard_pending_compaction_bytes_limit
      - min_partial_merge_operands
      - report_bg_io_stats
      - paranoid_file_checks
      
      Test Plan:
      Add sanity check in `db_test.cc` for all above options except for soft_pending_compaction_bytes_limit and hard_pending_compaction_bytes_limit.
      All passed.
      
      Reviewers: andrewkr, sdong, IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D57519
      43afd72b
  7. 17 5月, 2016 2 次提交
  8. 16 5月, 2016 1 次提交
    • K
      Added PersistentCache abstraction · a08c8c85
      krad 提交于
      Summary:
      Added a new abstraction to cache page to RocksDB designed for the read
      cache use.
      
      RocksDB current block cache is more of an object cache. For the persistent read cache
      project, what we need is a page cache equivalent. This changes adds a cache
      abstraction to RocksDB to cache pages called PersistentCache. PersistentCache can cache
      uncompressed pages or raw pages (content as in filesystem). The user can
      choose to operate PersistentCache either in  COMPRESSED or UNCOMPRESSED mode.
      
      Blame Rev:
      
      Test Plan: Run unit tests
      
      Reviewers: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D55707
      a08c8c85
  9. 14 5月, 2016 1 次提交
    • A
      [ldb] Templatize the Selector · 5c06e081
      Arun Sharma 提交于
      Summary:
      So a customized ldb tool can pass it's own Selector.
      Such a selector is expected to call LDBCommand::SelectCommand
      and then add some of its own customized commands
      
      Test Plan: make ldb
      
      Reviewers: sdong, IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D57249
      5c06e081
  10. 13 5月, 2016 3 次提交
  11. 12 5月, 2016 3 次提交
  12. 11 5月, 2016 1 次提交
    • A
      Isolate db env and backup Env in unit tests · e61ba052
      Andrew Kryczka 提交于
      Summary:
      - Used ChrootEnv so the database and backup Envs are isolated in the filesystem.
      - Removed DifferentEnvs test since now every test uses different Envs
      
      Depends on D57543
      
      Test Plan:
      - ran backupable_db_test
      - verified backupable_db_test now catches the bug when D57159 is backed out (this bug previously passed through the test cases, which motivated this change)
      
      Reviewers: sdong, lightmark, IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D57615
      e61ba052