1. 14 9月, 2016 2 次提交
  2. 13 9月, 2016 5 次提交
  3. 10 9月, 2016 1 次提交
  4. 09 9月, 2016 3 次提交
  5. 08 9月, 2016 3 次提交
  6. 07 9月, 2016 6 次提交
  7. 06 9月, 2016 1 次提交
  8. 03 9月, 2016 6 次提交
  9. 02 9月, 2016 9 次提交
  10. 01 9月, 2016 4 次提交
    • I
      Fix Travis on Mac · 8ce1b844
      Islam AbdelRahman 提交于
      Summary: not sure why travis complain about this line, works fine on my mac
      
      Test Plan: run on my mac
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D63045
      8ce1b844
    • K
      Fix Mac build failure (#1309) · 380e651a
      Kien-hung Li 提交于
      380e651a
    • A
      Thread-specific histogram statistics · 1613fa94
      Andrew Kryczka 提交于
      Summary:
      To reduce contention for atomics when HistogramStats are shared across
      threads, this diff makes them thread-specific so updates are faster. This comes
      at the expense of slower reads (much less frequent), which now require merging
      all histograms. In this diff,
      
      - Thread-specific HistogramImpl is created upon the thread's first measureTime()
      - Thread-specific HistogramImpl are merged and deleted upon thread termination or ThreadLocalPtr destruction, whichever comes first
      - getHistogramString() and histogramData() merge all histograms, both thread-specific and previously merged ones
      
      Test Plan:
      unit tests, ran db_bench and verified histograms look similar
      
      before:
      
        $ TEST_TMPDIR=/dev/shm/ perf record -g ./db_bench --benchmarks=readwhilewriting --statistics --num=1000000 --use_existing_db --threads=64 --cache_size=250000000 --compression_type=lz4
        ...
        +    7.63%  db_bench     db_bench             [.] rocksdb::HistogramStat::Add
      
      after:
      
        $ TEST_TMPDIR=/dev/shm/ perf record -g ./db_bench --benchmarks=readwhilewriting --statistics --num=1000000 --use_existing_db --threads=64 --cache_size=250000000 --compression_type=lz4
        ...
        +    0.98%  db_bench     db_bench             [.] rocksdb::HistogramStat::Add
      
      Reviewers: sdong, MarkCallaghan, kradhakrishnan, IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D62649
      1613fa94
    • A
      add prefix_seek_mode to db_iter_test · 6a14d55b
      Aaron Gao 提交于
      Summary: add prefix_seek_mode to db_iter_test to enable data race test for iterator when prefix_extractor != nullptr
      
      Test Plan: make all check -j64
      
      Reviewers: andrewkr, IslamAbdelRahman, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D63027
      6a14d55b