1. 24 9月, 2016 2 次提交
    • Y
      Split DBOptions into ImmutableDBOptions and MutableDBOptions · 9ed928e7
      Yi Wu 提交于
      Summary: Use ImmutableDBOptions/MutableDBOptions internally and DBOptions only for user-facing APIs. MutableDBOptions is barely a placeholder for now. I'll start to move options to MutableDBOptions in following diffs.
      
      Test Plan:
        make all check
      
      Reviewers: yhchiang, IslamAbdelRahman, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D64065
      9ed928e7
    • Y
      Recover same sequence id from WAL (#1350) · 4bc8c88e
      yiwu-arbug 提交于
      Summary:
      Revert the behavior where we don't read sequence id from WAL, but increase it as we replay the log. We still keep the behave for 2PC for now but will fix later.
      
      This change fixes github issue 1339, where some writes come with WAL disabled and we may recover records with wrong sequence id.
      
      Test Plan: Added unit test.
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D64275
      4bc8c88e
  2. 23 9月, 2016 1 次提交
    • A
      add cfh deletion started listener · 0a1bd9c5
      Aaron Gao 提交于
      Summary: add ColumnFamilyHandleDeletionStarted listener which can be called when user deletes handler.
      
      Test Plan: ./listener_test
      
      Reviewers: yiwu, IslamAbdelRahman, sdong, andrewkr
      
      Reviewed By: andrewkr
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D60717
      0a1bd9c5
  3. 22 9月, 2016 4 次提交
  4. 21 9月, 2016 4 次提交
  5. 20 9月, 2016 3 次提交
    • S
      DBImpl::GetWalPreallocateBlockSize() should return size_t · d78a4401
      sdong 提交于
      Summary: WritableFile::SetPreallocationBlockSize() requires parameter as size_t, and options used in DBImpl::GetWalPreallocateBlockSize() are all size_t. WritableFile::SetPreallocationBlockSize() should return size_t to avoid build break if size_t is not uint64_t.
      
      Test Plan: Run existing tests.
      
      Reviewers: andrewkr, IslamAbdelRahman, yiwu
      
      Reviewed By: yiwu
      
      Subscribers: leveldb, andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D64137
      d78a4401
    • I
      Retry getting arcanist token on failure · 42ac9c5f
      Islam AbdelRahman 提交于
      Summary:
      Many of our diffs dont have sandcastle tests because we failed to load arcanist token file (loaded over the network)
      this diff try for at least 5 seconds (once every 0.2 second) to load the file instead of failing the first time the file is not found
      This will make it less probable that diffs are submitted without sandcastle tests
      
      Test Plan: arc diff --preview
      
      Reviewers: kradhakrishnan, gunnarku, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D63951
      42ac9c5f
    • S
      Consider more factors when determining preallocation size of WAL files · b666f854
      sdong 提交于
      Summary: Currently the WAL file preallocation size is 1.1 * write_buffer_size. This, however, will be over-estimated if options.db_write_buffer_size or options.max_total_wal_size is set and is much smaller.
      
      Test Plan: Add a unit test.
      
      Reviewers: andrewkr, yiwu
      
      Reviewed By: yiwu
      
      Subscribers: leveldb, andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D63957
      b666f854
  6. 18 9月, 2016 1 次提交
  7. 17 9月, 2016 3 次提交
  8. 16 9月, 2016 4 次提交
    • Y
      Fix DBOptionsTest.GetLatestOptions · 8d9bf5c4
      Yi Wu 提交于
      Summary: RandomInitCFOptions will allocate a new compaction filter, which we have to delete afterward.
      
      Test Plan: valgrind against the test
      
      Reviewers: IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D64011
      8d9bf5c4
    • Y
      Fix DBWALTest.RecoveryWithLogDataForSomeCFs with mac · 40cfa3e0
      Yi Wu 提交于
      Summary: Seems there's no std::array on mac+clang. Use raw array instead.
      
      Test Plan: run ./db_wal_test on mac.
      
      Reviewers: andrewkr
      
      Reviewed By: andrewkr
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D64005
      40cfa3e0
    • A
      Fix recovery for WALs without data for all CFs · 06b4785f
      Andrew Kryczka 提交于
      Summary:
      if one or more CFs had no data in the WAL, the log number that's used
      by FindObsoleteFiles() wasn't updated. We need to treat this case the same as
      if the data for that WAL had been flushed.
      
      Test Plan: new unit test
      
      Reviewers: IslamAbdelRahman, yiwu, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D63963
      06b4785f
    • A
      Fix GetSortedWalFiles when log recycling enabled · d7242ff4
      Andrew Kryczka 提交于
      Summary:
      Previously the sequence number was mistakenly passed in an argument
      where the log number should go. This caused the reader to assume the old WAL
      format was used, which is incompatible with the WAL recycling format.
      
      Test Plan:
      new unit test, verified it fails before this change and passes
      afterwards.
      
      Reviewers: yiwu, lightmark, IslamAbdelRahman, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D63987
      d7242ff4
  9. 15 9月, 2016 5 次提交
  10. 14 9月, 2016 6 次提交
    • Y
      Refactor GetMutableOptionsFromStrings · 8e061f97
      Yi Wu 提交于
      Summary: Add mutable options info into `OptionsTypeInfo` and use it to parse mutable options map. Also support `max_bytes_for_level_multiplier_additional` in option file.
      
      Test Plan: unit test
      
      Reviewers: yhchiang, IslamAbdelRahman, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D63843
      8e061f97
    • Y
      Refactor MutableCFOptions · 81747f1b
      Yi Wu 提交于
      Summary:
      * Change constructor of MutableCFOptions to depends only on ColumnFamilyOptions.
      * Move `max_subcompactions`, `compaction_options_fifo` and `compaction_pri` to ImmutableCFOptions to make it clear that they are immutable.
      
      Test Plan: existing unit tests.
      
      Reviewers: yhchiang, IslamAbdelRahman, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D63945
      81747f1b
    • I
      Support POSIX RandomRWFile · ba65c816
      Islam AbdelRahman 提交于
      Summary:
      Add Env::RandomRWFile in env.h and implement it for POSIX
      RandomRWFile is a file that allow us to read from / write to random offsets in the file
      
      I will implement it for other Envs later after finishing the whole task for AddFile()
      
      Test Plan: unit tests
      
      Reviewers: andrewkr, kradhakrishnan, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba
      
      Differential Revision: https://reviews.facebook.net/D62433
      ba65c816
    • J
      Create CNAME · 1d980a8e
      Joel Marcey 提交于
      1d980a8e
    • J
      Add API links to the header bar · 2adab1dd
      Joel Marcey 提交于
      Summary:
      Until we get new API infra for gh-pages, this will point to the C++ headers and Java
      files, respectively for API information.
      
      Test Plan:
      Visual
      
      https://www.facebook.com/pxlcld/pwzQ
      
      Reviewers: lgalanis, sdong
      
      Reviewed By: sdong
      
      Subscribers: andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D63771
      2adab1dd
    • J
      Preserve blog comments in markdown · a182b298
      Joel Marcey 提交于
      Summary:
      While we won't have new comments when we move to gh-pages (for now), this preserves
      the current comments in markdown format.
      
      Test Plan:
      Visual
      
      https://www.facebook.com/pxlcld/pwCR
      
      Reviewers: lgalanis, sdong
      
      Reviewed By: sdong
      
      Subscribers: jamesgpearce, andrewkr, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D63783
      a182b298
  11. 13 9月, 2016 5 次提交
  12. 10 9月, 2016 1 次提交
  13. 09 9月, 2016 1 次提交