1. 25 7月, 2017 4 次提交
  2. 22 7月, 2017 4 次提交
    • A
      Fix caching of compaction picker's next index · a34b2e38
      Andrew Kryczka 提交于
      Summary:
      The previous implementation of caching `file_size` index made no sense. It only remembered the original span of locked files starting from beginning of `file_size`. We should remember the index after all compactions that have been considered but rejected. This will reduce the work we do while holding the db mutex.
      Closes https://github.com/facebook/rocksdb/pull/2624
      
      Differential Revision: D5468152
      
      Pulled By: ajkr
      
      fbshipit-source-id: ab92a4bffe76f9f174d861bb5812b974d1013400
      a34b2e38
    • S
      Revert "comment out unused parameters" · 72502cf2
      Sagar Vemuri 提交于
      Summary:
      This reverts the previous commit 1d7048c5, which broke the build.
      
      Did a `git revert 1d7048c5`.
      Closes https://github.com/facebook/rocksdb/pull/2627
      
      Differential Revision: D5476473
      
      Pulled By: sagar0
      
      fbshipit-source-id: 4756ff5c0dfc88c17eceb00e02c36176de728d06
      72502cf2
    • V
      comment out unused parameters · 1d7048c5
      Victor Gao 提交于
      Summary: This uses `clang-tidy` to comment out unused parameters (in functions, methods and lambdas) in fbcode. Cases that the tool failed to handle are fixed manually.
      
      Reviewed By: igorsugak
      
      Differential Revision: D5454343
      
      fbshipit-source-id: 5dee339b4334e25e963891b519a5aa81fbf627b2
      1d7048c5
    • P
      Cassandra compaction filter for purge expired columns and rows · 534c255c
      Pengchao Wang 提交于
      Summary:
      Major changes in this PR:
      * Implement CassandraCompactionFilter to remove expired columns and rows (if all column expired)
      * Move cassandra related code from utilities/merge_operators/cassandra to utilities/cassandra/*
      * Switch to use shared_ptr<> from uniqu_ptr for Column membership management in RowValue. Since columns do have multiple owners in Merge and GC process, use shared_ptr helps make RowValue immutable.
      * Rename cassandra_merge_test to cassandra_functional_test and add two TTL compaction related tests there.
      Closes https://github.com/facebook/rocksdb/pull/2588
      
      Differential Revision: D5430010
      
      Pulled By: wpc
      
      fbshipit-source-id: 9566c21e06de17491d486a68c70f52d501f27687
      534c255c
  3. 21 7月, 2017 3 次提交
    • Y
      Remove make_new_version.sh · 63163a8c
      Yi Wu 提交于
      Summary:
      Seems the only function of the script is to create a new branch, which can be done easily. I'm removing it.
      Closes https://github.com/facebook/rocksdb/pull/2623
      
      Differential Revision: D5468681
      
      Pulled By: yiwu-arbug
      
      fbshipit-source-id: 87dea5ecc4c85e06941ccbc36993f7f589063878
      63163a8c
    • Y
      Reduce blob db noisy logging · 0302da47
      Yi Wu 提交于
      Summary:
      Remove some of the per-key logging by blob db to reduce noise.
      Closes https://github.com/facebook/rocksdb/pull/2587
      
      Differential Revision: D5429115
      
      Pulled By: yiwu-arbug
      
      fbshipit-source-id: b89328282fb8b3c64923ce48738c16017ce7feaf
      0302da47
    • I
      Fix Flaky DeleteSchedulerTest::ImmediateDeleteOn25PercDBSize · 3e5ea29a
      Islam AbdelRahman 提交于
      Summary:
      In this test we are deleting 100 files, and we are expecting DeleteScheduler to delete 26 files in the background and 74 files immediately in the foreground
      
      The main purpose of the test is to make sure that we delete files in foreground thread, which is verified in line 546
      
      But sometimes we may end up with 26 files or 25 files in the trash directory because the background thread may be slow and not be able to delete the first file fast enough, so sometimes this test fail.
      
      Remove
      ```
      ASSERT_EQ(CountFilesInDir(trash_dir_), 25);
      ```
      Since it does not have any benefit any way
      Closes https://github.com/facebook/rocksdb/pull/2618
      
      Differential Revision: D5458674
      
      Pulled By: IslamAbdelRahman
      
      fbshipit-source-id: 5556a9edfa049db71dce80b8e6ae0fdd25e1e74e
      3e5ea29a
  4. 20 7月, 2017 3 次提交
    • A
      overlapping endpoint fixes in level compaction picker · a22b9cc6
      Andrew Kryczka 提交于
      Summary:
      This diff addresses two problems. Both problems cause us to miss scheduling desirable compactions. One side effect is compaction picking can spam logs, as there's no delay after failed attempts to pick compactions.
      
      1. If a compaction pulled in a locked input-level file due to user-key overlap, we would not consider picking another file from the same input level.
      2. If a compaction pulled in a locked output-level file due to user-key overlap, we would not consider picking any other compaction on any level.
      
      The code changes are dependent, which is why I solved both problems in a single diff.
      
      - Moved input-level `ExpandInputsToCleanCut` into the loop inside `PickFileToCompact`. This gives two benefits: (1) if it fails, we will try the next-largest file on the same input level; (2) we get the fully-expanded input-level key-range with which we can check for pending compactions in output level.
      - Added another call to `ExpandInputsToCleanCut` inside `PickFileToCompact`'s to check for compaction conflicts in output level.
      - Deleted call to `IsRangeInCompaction` in `PickFileToCompact`, as `ExpandInputsToCleanCut` also correctly handles the case where original output-level files (i.e., ones not pulled in due to user-key overlap) are pending compaction.
      Closes https://github.com/facebook/rocksdb/pull/2615
      
      Differential Revision: D5454643
      
      Pulled By: ajkr
      
      fbshipit-source-id: ea3fb5477d83e97148951af3fd4558d2039e9872
      a22b9cc6
    • A
      delete ExpandInputsToCleanCut failure log · ffd2a2ee
      Andrew Kryczka 提交于
      Summary:
      I decided not even to keep it as an INFO-level log as it is too normal for compactions to be skipped due to locked input files. Removing logging here makes us consistent with how we treat locked files that weren't pulled in due to overlap.
      
      We may want some error handling on line 422, which should never happen when called by `LevelCompactionBuilder::PickCompaction`, as `SetupInitialFiles` skips compactions where overlap causes the output level to pull in locked files.
      Closes https://github.com/facebook/rocksdb/pull/2617
      
      Differential Revision: D5458502
      
      Pulled By: ajkr
      
      fbshipit-source-id: c2e5f867c0a77c1812ce4242ab3e085b3eee0bae
      ffd2a2ee
    • I
      Remove arcanist_util directory · 3e6e863b
      Islam AbdelRahman 提交于
      3e6e863b
  5. 19 7月, 2017 6 次提交
  6. 18 7月, 2017 7 次提交
    • M
      avoid collision with master branch in check format · ddb22ac5
      Maysam Yabandeh 提交于
      Summary:
      The new local branch specified with -b cannot be called master. Use tmp prefix to avoid name collision.
      Closes https://github.com/facebook/rocksdb/pull/2600
      
      Differential Revision: D5442944
      
      Pulled By: maysamyabandeh
      
      fbshipit-source-id: 4a623d9b21d6cc01bee812b2799790315bdf5f6e
      ddb22ac5
    • M
      set the remote for git checkout · 0c03a7f1
      Maysam Yabandeh 提交于
      Summary:
      This will fix the error: "error: pathspec '2.2.fb.branch' did not match any file(s) known to git."
      
      Tested by manually sshing to sandcastle and running the command.
      Closes https://github.com/facebook/rocksdb/pull/2599
      
      Differential Revision: D5441130
      
      Pulled By: maysamyabandeh
      
      fbshipit-source-id: a22fd6a52221471bafbba8990394b499535e5812
      0c03a7f1
    • A
      Revert cmake -DNDEBUG for non-MSVC · 7ac184c6
      Andrew Kryczka 提交于
      Summary:
      Unfortunately we can't use -DNDEBUG yet since we don't properly exclude the test libraries/executables from the non-debug builds on non-MSVC platforms. Previously this was failing on Linux for every build type except `CMAKE_BUILD_TYPE=Debug`.
      
      Reverts a48a62d5
      Closes https://github.com/facebook/rocksdb/pull/2595
      
      Differential Revision: D5436182
      
      Pulled By: ajkr
      
      fbshipit-source-id: 062f07cc9ce06a073b66054722b27bac1890dca3
      7ac184c6
    • S
      enable PinnableSlice for RowCache · 0655b585
      Sushma Devendrappa 提交于
      Summary:
      This patch enables using PinnableSlice for RowCache, changes include
      not releasing the cache handle immediately after lookup in TableCache::Get, instead pass a Cleanble function which does Cache::RleaseHandle.
      Closes https://github.com/facebook/rocksdb/pull/2492
      
      Differential Revision: D5316216
      
      Pulled By: maysamyabandeh
      
      fbshipit-source-id: d2a684bd7e4ba73772f762e58a82b5f4fbd5d362
      0655b585
    • Y
      Fix column_family_test with LITE build · 00464a31
      Yi Wu 提交于
      Summary:
      Fix column_family_test with LITE build. I need this patch to fix 5.6 branch.
      Closes https://github.com/facebook/rocksdb/pull/2597
      
      Differential Revision: D5437171
      
      Pulled By: yiwu-arbug
      
      fbshipit-source-id: 88b9dc5925a6b47af10c1b41bc5b07c4251a84b5
      00464a31
    • C
      tools/write_stress.cc: Correct "1204" typos. · b2dd192f
      Chris Lamb 提交于
      Summary:
      Should be 1024, obviously :)
      Closes https://github.com/facebook/rocksdb/pull/2592
      
      Differential Revision: D5435269
      
      Pulled By: ajkr
      
      fbshipit-source-id: c59338a3900798a4733f0b205e534f21215cf049
      b2dd192f
    • D
      table/block.h: change memset · cbaab304
      Daniel Black 提交于
      Summary:
      In gcc-7 the following is an error identified by -Werror=class-memaccess
      
      In file included from ./table/get_context.h:14:0,
                       from db/version_set.cc:43:
      ./table/block.h: In constructor ‘rocksdb::BlockReadAmpBitmap::BlockReadAmpBitmap(size_t, size_t, rocksdb::Statistics*)’:
      ./table/block.h:73:53: error: ‘void* memset(void*, int, size_t)’ clearing an object of type ‘struct std::atomic<unsigned int>’ with no trivial copy-assignment; use value-initialization instead [-Werror=class-memaccess]
           memset(bitmap_, 0, bitmap_size * kBytesPersEntry);
                                                           ^
      In file included from ./db/version_set.h:23:0,
                       from db/version_set.cc:12:
      /toolchain/include/c++/8.0.0/atomic:684:12: note: ‘struct std::atomic<unsigned int>’ declared here
           struct atomic<unsigned int> : __atomic_base<unsigned int>
                  ^~~~~~~~~~~~~~~~~~~~
      
      As a solution the default initializer can be applied in list context.
      Signed-off-by: NDaniel Black <daniel.black@au.ibm.com>
      Closes https://github.com/facebook/rocksdb/pull/2561
      
      Differential Revision: D5398714
      
      Pulled By: siying
      
      fbshipit-source-id: d883fb88ec7535eee60d551038fe91f14488be36
      cbaab304
  7. 17 7月, 2017 3 次提交
  8. 16 7月, 2017 1 次提交
  9. 15 7月, 2017 3 次提交
    • I
      Make TARGETS file portable · 13201336
      Islam AbdelRahman 提交于
      Summary:
      Instead of hard coding the path of the internal repo.
      Make TARGETS file work anywhere in fbcode
      Closes https://github.com/facebook/rocksdb/pull/2586
      
      Differential Revision: D5428122
      
      Pulled By: IslamAbdelRahman
      
      fbshipit-source-id: 21adec82bfbff14ea93532bee789b5f5bbee5b01
      13201336
    • D
      Set CACHE_LINE_SIZE for s390, PPC, ARM64 · ccf5f08f
      Daniel Black 提交于
      Summary: Closes https://github.com/facebook/rocksdb/pull/2579
      
      Differential Revision: D5427667
      
      Pulled By: maysamyabandeh
      
      fbshipit-source-id: cd0b076aa0cd38d3554516f01723c548713ece61
      ccf5f08f
    • D
      db_crashtest.py: remove need for shell · 67510eef
      Daniel Black 提交于
      Summary:
      Before:
      $ ps -ef
      
      build     1713    16  0 Jul11 ?        00:00:00 make crash_test
      build     3437  1713  0 Jul11 ?        00:00:00 python -u tools/db_crashtest.py --simple blackbox
      build     3438  3437  0 Jul11 ?        00:00:00 [sh] <defunct>
      build     3440     1 99 Jul11 ?        5-03:01:25 ./db_stress --max_background_compactions=1 --max_write_buffer_number=3 --sync=0 --reopen=20 --write_buffer_size=33554432 --delpercent=5 --block_size=16384 --allow_concurrent_me
      
      After:
      
      build      1706     16  0 02:52 ?        00:00:01 make crash_test
      build      3432   1706  0 02:55 ?        00:00:00 python -u tools/db_crashtest.py --simple blackbox
      build      4452   3432 99 04:35 ?        00:01:42 ./db_stress --max_background_compactions=1 --max_write_buffer_number=3 --sync=0 --reopen=20 --write_buffer_size=33554432 --delpercent=5 --block_size=16384 --allow_concurr
      Closes https://github.com/facebook/rocksdb/pull/2571
      
      Differential Revision: D5421580
      
      Pulled By: maysamyabandeh
      
      fbshipit-source-id: d6c3970c38ea0fa23da653f4385e8e25d83f5c9f
      67510eef
  10. 14 7月, 2017 5 次提交
  11. 13 7月, 2017 1 次提交