1. 15 11月, 2014 22 次提交
  2. 14 11月, 2014 11 次提交
    • L
      Relax the block count check on deallocation in env_test · 746cfaac
      Lukáš Lalinský 提交于
      It seems that on some FS we get more blocks than we ask for. This is
      already handled when checking the allocated number of blocks, but
      after the file is closed it checks for an exact number of blocks,
      which fails on my machine.
      
      I changed the test to add one full page to the size, then calculate
      the expected number of blocks and check if the actual number of blocks
      is less or equal to that.
      746cfaac
    • S
      Add a unit test for behavior when merge operator and compaction filter co-exist. · f822129b
      sdong 提交于
      Summary: Add a unit test in db_test to verify the behavior when both of merge operator and compaction filter apply to a key when merging.
      
      Test Plan: Run the new test
      
      Reviewers: ljin, yhchiang, rven, igor
      
      Reviewed By: igor
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28455
      f822129b
    • Y
      Fix SIGSEGV · 4161de92
      Yueh-Hsuan Chiang 提交于
      Summary: As a short-term fix, let's go back to previous way of calculating NeedsCompaction(). SIGSEGV happens because NeedsCompaction() can happen before super_version (and thus MutableCFOptions) is initialized.
      
      Test Plan: make check
      
      Reviewers: ljin, sdong, rven, yhchiang
      
      Reviewed By: yhchiang
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28875
      4161de92
    • H
      Fix broken test in 31b02d. · 373c665e
      Hasnain Lakhani 提交于
      Summary:
      CorruptionTest for backupable_db_test did not call
      GarbageCollect() after deleting a corrupt backup,
      which sometimes lead to test failures as the newly created backup
      would reuse the same backup ID and files and fail the consistency
      check.
      
      Moved around some of the test logic to ensure that GarbageCollect()
      is called at the right time.
      
      Test Plan:
      Run backupable_db_test eight times and make sure
      it passes repeatedly. Also run make check to make sure other
      tests don't fail.
      
      Reviewers: igor
      
      Reviewed By: igor
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28863
      373c665e
    • I
      No CompactFiles in ROCKSDB_LITE · 772bc97f
      Igor Canadi 提交于
      Summary: It adds lots of code.
      
      Test Plan: compile for iOS, compile for mac. works.
      
      Reviewers: rven, sdong, ljin, yhchiang
      
      Reviewed By: yhchiang
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28857
      772bc97f
    • Y
      Move NeedsCompaction() from VersionStorageInfo to CompactionPicker · 1d1a64f5
      Yueh-Hsuan Chiang 提交于
      Summary:
      Move NeedsCompaction() from VersionStorageInfo to CompactionPicker
      to allow different compaction strategy to have their own way to
      determine whether doing compaction is necessary.
      
      When compaction style is set to kCompactionStyleNone, then
      NeedsCompaction() will always return false.
      
      Test Plan:
      export ROCKSDB_TESTS=Compact
      ./db_test
      
      Reviewers: ljin, sdong, igor
      
      Reviewed By: igor
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28719
      1d1a64f5
    • I
      Add concurrency to compacting SpatialDB · cd098015
      Igor Canadi 提交于
      Summary: This will speed up our import times
      
      Test Plan: Added simple unit test just to get code coverage
      
      Reviewers: sdong, ljin, yhchiang, rven, mohaps
      
      Reviewed By: mohaps
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28869
      cd098015
    • I
      Fix include · 3c92e523
      Igor Canadi 提交于
      3c92e523
    • I
      Fix iOS compile with -Wshorten-64-to-32 · 25f27302
      Igor Canadi 提交于
      Summary: So iOS size_t is 32-bit, so we need to static_cast<size_t> any uint64_t :(
      
      Test Plan: TARGET_OS=IOS make static_lib
      
      Reviewers: dhruba, ljin, yhchiang, rven, sdong
      
      Reviewed By: sdong
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28743
      25f27302
    • S
      Fix bug of reading from empty DB. · fa50abb7
      sdong 提交于
      Summary: I found that db_stress sometimes segfault on my machine. Fix the bug.
      
      Test Plan: make all check. Run db_stress
      
      Reviewers: ljin, yhchiang, rven, igor
      
      Reviewed By: igor
      
      Subscribers: leveldb, dhruba
      
      Differential Revision: https://reviews.facebook.net/D28803
      fa50abb7
    • H
      Improve Backup Engine. · 31b02dc2
      Hasnain Lakhani 提交于
      Summary:
      Improve the backup engine by not deleting the corrupted
      backup when it is detected; instead leaving it to the client
      to delete the corrupted backup.
      
      Also add a BackupEngine::Open() call.
      
      Test Plan:
      Add check to CorruptionTest inside backupable_db_test
      to check that the corrupt backups are not deleted. The previous
      version of the code failed this test as backups were deleted,
      but after the changes in this commit, this test passes.
      
      Run make check to ensure that no other tests fail.
      
      Reviewers: sdong, benj, sanketh, sumeet, igor
      
      Reviewed By: igor
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D28521
      31b02dc2
  3. 13 11月, 2014 7 次提交