1. 29 10月, 2013 7 次提交
    • S
      Make "Table" pluggable · d4eec30e
      Siying Dong 提交于
      Summary: This patch makes Table and TableBuilder a abstract class and make all the implementation of the current table into BlockedBasedTable and BlockedBasedTable Builder.
      
      Test Plan: Make db_test.cc to work with block based table. Add a new test simple_table_db_test.cc where a different simple table format is implemented.
      
      Reviewers: dhruba, haobo, kailiu, emayanke, vamsi
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13521
      d4eec30e
    • I
      Run benchmark with no debug · 8ace6b0f
      Igor Canadi 提交于
      Summary: assert(Overlap) significantly slows down the benchmark. Ignore assertions when executing blob_store_bench.
      
      Test Plan: Ran the benchmark
      
      Reviewers: dhruba, haobo, kailiu
      
      Reviewed By: kailiu
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13737
      8ace6b0f
    • I
      Fix data race in BlobStore benchmark · 17991cd5
      Igor Canadi 提交于
      Summary: Apparently C++ doesn't like it if you copy around its atomic<> variables. When running a benchmark for a longer time, benchmark used to stall. Changed WorkerThread in config to WorkerThread*. It works now.
      
      Test Plan: Ran benchmark
      
      Reviewers: dhruba
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13731
      17991cd5
    • K
      Support user-defined table stats collector · 994575c1
      Kai Liu 提交于
      Summary:
      1. Added a new option that support user-defined table stats collection.
      2. Added a deleted key stats collector in `utilities`
      
      Test Plan:
      Added a unit test for newly added code.
      Also ran make check to make sure other tests are not broken.
      
      Reviewers: dhruba, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13491
      994575c1
    • K
      Fix a valgrind warning · 7e91b86f
      Kai Liu 提交于
      Summary:
      A latest valgrind test found a recently added unit test has memory leak,
      which is because DB is not closed at the end of the test.
      
      Test Plan: re-run the valgrind locally and make sure there's no memory leakage any more.
      
      Reviewers: emayanke
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13725
      7e91b86f
    • I
      If a Put fails, fail all other puts · 100fa8e0
      Igor Canadi 提交于
      Summary:
      When a Put fails, it can leave database in a messy state. We don't want to pretend that everything is OK when it may not be. We fail every write following the failed one.
      
      I added checks for corruption to DBImpl::Write(). Is there anywhere else I need to add them?
      
      Test Plan: Corruption unit test.
      
      Reviewers: dhruba, haobo, kailiu
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13671
      100fa8e0
    • K
      Fix a bug that index block's restart_block_interval is not 1 · 1ca86f03
      Kai Liu 提交于
      Summary:
      
      This bug may affect the seek performance.
      
      Test Plan:
      
      make
      make check
      
      Also gdb into some index block builder to make sure the restart_block_interval is `1`.
      1ca86f03
  2. 28 10月, 2013 2 次提交
  3. 25 10月, 2013 2 次提交
    • M
      Unify DeleteFile and DeleteWalFiles · 56305221
      Mayank Agarwal 提交于
      Summary:
      This is to simplify rocksdb public APIs and improve the code quality.
      Created an additional parameter to ParseFileName for log sub type and improved the code for deleting a wal file.
      Wrote exhaustive unit-tests in delete_file_test
      Unification of other redundant APIs can be taken up in a separate diff
      
      Test Plan: Expanded delete_file test
      
      Reviewers: dhruba, haobo, kailiu, sdong
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13647
      56305221
    • K
      Fix the log number bug when updating MANIFEST file · c17607a2
      Kai Liu 提交于
      Summary:
      Crash may occur during the flushes of more than two mem tables.
      
      As the info log suggested, even when both were successfully flushed,
      the recovery process still pick up one of the memtable's log for recovery.
      
      This diff fix the problem by setting the correct "log number" in MANIFEST.
      
      Test Plan: make test; deployed to leaf4 and make sure it doesn't result in crashes of this type.
      
      Reviewers: haobo, dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13659
      c17607a2
  4. 24 10月, 2013 5 次提交
  5. 23 10月, 2013 5 次提交
    • K
      Improve the comment for the shared library in Make file · b37fda84
      Kai Liu 提交于
      b37fda84
    • I
      Enable blobs to be fragmented · 30f1b97a
      Igor Canadi 提交于
      Summary:
      I have implemented a FreeList version that supports fragmented blob chunks. Each block gets allocated and freed in FIFO order. Since the idea for the blocks to be big, we will not take a big hit of non-sequential IO. Free list is also faster, taking only O(k) size in both free and allocate instead of O(N) as before.
      
      See more info on the task: https://our.intern.facebook.com/intern/tasks/?t=2990558
      
      Also, I'm taking Slice instead of const char * and size in Put function.
      
      Test Plan: unittests
      
      Reviewers: haobo, kailiu, dhruba, emayanke
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13569
      30f1b97a
    • K
      Update the latest rocksdb version · 70e87f78
      Kai Liu 提交于
      70e87f78
    • M
      Dbid feature · 9b50106f
      Mayank Agarwal 提交于
      Summary:
      Create a new type of file on startup if it doesn't already exist called DBID.
      This will store a unique number generated from boost library's uuid header file.
      The use-case is to identify the case of a db losing all its data and coming back up either empty or from an image(backup/live replica's recovery)
      the key point to note is that DBID is not stored in a backup or db snapshot
      It's preferable to use Boost for uuid because:
      1) A non-standard way of generating uuid is not good
      2) /proc/sys/kernel/random/uuid generates a uuid but only on linux environments and the solution would not be clean
      3) c++ doesn't have any direct way to get a uuid
      4) Boost is a very good library that was already having linkage in rocksdb from third-party
      Note: I had to update the TOOLCHAIN_REV in build files to get latest verison of boost from third-party as the older version had a bug.
      I had to put Wno-uninitialized in Makefile because boost-1.51 has an unitialized variable and rocksdb would not comiple otherwise. Latet open-source for boost is 1.54 but is not there in third-party. I have notified the concerned people in fbcode about it.
      @kailiu : While releasing to third-party, an additional dependency will need to be created for boost in TARGETS file. I can help identify.
      
      Test Plan:
      Expand db_test to test 2 cases
      1) Restarting db with Id file present - verify that no change to Id
      2)Restarting db with Id file deleted - verify that a different Id is there after reopen
      Also run make all check
      
      Reviewers: dhruba, haobo, kailiu, sdong
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13587
      9b50106f
    • M
      Disallow transaction log iterator to skip sequences · ae8e0770
      Mayank Agarwal 提交于
      Summary:
      This is expected to solve the "gaps in transaction log iterator" problem.
      * After a lot of observations on the gaps on the sigmafio machines I found that it is due to a race between log reader and writer always.
      * So when we drop the wormhole subscription and refresh the iterator, the gaps are not there.
      * It is NOT due to some boundary or corner case left unattended in the iterator logic because I checked many instances of the gaps against their log files with ldb. The log files are NOT corrupted also.
      * The solution is to not allow the iterator to read incompletely written sequences and detect gaps inside itself and invalidate it which will cause the application to refresh the iterator normally and seek to the required sequence properly.
      * Thus, the iterator can at least guarantee that it will not give any gaps.
      
      Test Plan:
      * db_test based log iterator tests
      * db_repl_stress
      * testing on sigmafio setup to see gaps go away
      
      Reviewers: dhruba, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13593
      ae8e0770
  6. 22 10月, 2013 1 次提交
  7. 21 10月, 2013 1 次提交
  8. 18 10月, 2013 4 次提交
    • I
      tmpfs does not support fallocate · bcc85579
      Igor Canadi 提交于
      Summary: This caused Siying's unit test to fail.
      
      Test Plan: Unittest
      
      Reviewers: dhruba, kailiu, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13539
      bcc85579
    • S
      Fix Bug: iterator.Prev() or iterator.SeekToLast() might return the first... · 65428b0c
      Siying Dong 提交于
      Fix Bug: iterator.Prev() or iterator.SeekToLast() might return the first element instead of the correct one
      
      Summary:
      Recent patch https://reviews.facebook.net/D11865 introduced a regression bug:
      
      DBIter::FindPrevUserEntry(), which is called by DBIter::Prev() (and also implicitly if calling iterator.SeekToLast())  might do issue a seek when having skipped too many entries. If the skipped entry just before the seek() is a delete, the saved key is erased so that it seeks to the front, so Prev() would return the first element.
      
      This patch fixes the bug by not doing seek() in DBIter::FindNextUserEntry() if saved key has been erased.
      
      Test Plan: Add a test DBTest.IterPrevMaxSkip which would fail without the patch and would pass with the change.
      
      Reviewers: dhruba, xjin, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13557
      65428b0c
    • S
      Universal Compaction to Have a Size Percentage Threshold To Decide Whether to Compress · 9edda370
      Siying Dong 提交于
      Summary:
      This patch adds a option for universal compaction to allow us to only compress output files if the files compacted previously did not yet reach a specified ratio, to save CPU costs in some cases.
      
      Compression is always skipped for flushing. This is because the size information is not easy to evaluate for flushing case. We can improve it later.
      
      Test Plan:
      add test
      DBTest.UniversalCompactionCompressRatio1 and DBTest.UniversalCompactionCompressRatio12
      
      Reviewers: dhruba, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13467
      9edda370
    • K
      Add bloom filter to predefined table stats · aac44226
      Kai Liu 提交于
      Summary: As title.
      
      Test Plan: Updated the unit tests to make sure new statistic is correctly written/read.
      
      Reviewers: dhruba, haobo
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13497
      aac44226
  9. 17 10月, 2013 5 次提交
    • V
      [ldb compact is not allowing ttl flag] · 6731997f
      Vamsi Ponnekanti 提交于
      Summary: Allow ttl flag
      
      Test Plan:
      tested on my database that has merge operations and ttl
      
      Revert Plan: OK
      
      Task ID: #3038186
      
      Reviewers: emayanke, dhruba, haobo
      
      Reviewed By: emayanke
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13503
      6731997f
    • D
      Add appropriate LICENSE and Copyright message. · 9cd22109
      Dhruba Borthakur 提交于
      Summary:
      Add appropriate LICENSE and Copyright message.
      
      Test Plan:
      make check
      
      Reviewers:
      
      CC:
      
      Task ID: #
      
      Blame Rev:
      9cd22109
    • I
      External Value Store · fc4616d8
      Igor Canadi 提交于
      Summary:
      Developing a capability for storing values on external backing file(s).
      
      This is just a highly unoptimized first pass - supports:
      1) Allocating some portion of external file to be used to store value
      2) Freeing the range, enabling it to be reused by other values
      
      As next steps, I plan to:
      1) Create some kind of stress testing. Once I can measure stuff, I can focus on optimizing.
      2) Optimize locking.
      3) Optimize freelist data structure. Currently we have O(n) for both freeing and allocation.
      4) Figure out how to do recovery.
      
      Test Plan: Created a unit test.
      
      Reviewers: dhruba, haobo, kailiu
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13389
      fc4616d8
    • K
      Fix the patent format · 0f31843c
      Kai Liu 提交于
      Summary:
      
      Formatted the PATENT file so that it's easier to read.
      
      Test Plan:
      
      Reviewers:
      
      CC:
      
      Task ID: #
      
      Blame Rev:
      0f31843c
    • S
      Enable background flush thread by default and fix issues related to it · 073cbfc8
      Siying Dong 提交于
      Summary:
      Enable background flush thread in this patch and fix unit tests with:
      (1) After background flush, schedule a background compaction if condition satisfied;
      (2) Fix a bug that if universal compaction is enabled and number of levels are set to be 0, compaction will not be automatically triggered
      (3) Fix unit tests to wait for compaction to finish instead of flush, before checking the compaction results.
      
      Test Plan: pass all unit tests
      
      Reviewers: haobo, xjin, dhruba
      
      Reviewed By: haobo
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13461
      073cbfc8
  10. 16 10月, 2013 3 次提交
  11. 15 10月, 2013 4 次提交
    • M
      Fix rocksdb->levledb BytewiseComparator and inverted order of error in db/version_set.cc · da2fd001
      Mayank Agarwal 提交于
      Summary:
      This is needed to make existing dbs be able to open and also because BytewiseComparator was not changed since leveldb.
      The inverted order in the error message caused confusion prebiously
      
      Test Plan: make; open existing db
      
      Reviewers: leveldb, dhruba
      
      Reviewed By: dhruba
      
      Differential Revision: https://reviews.facebook.net/D13449
      da2fd001
    • M
      Features in Transaction log iterator · fe371396
      Mayank Agarwal 提交于
      Summary:
      * Logstore requests a valid change of reutrning an empty iterator and not an error in case of no log files.
      * Changed the code to return the writebatch containing the sequence number requested from GetupdatesSince even if it lies in the middle. Earlier we used to return the next writebatch,. This also allows me oto guarantee that no files played upon by the iterator are redundant. I mean the starting log file has at least a sequence number >= the sequence number requested form GetupdatesSince.
      * Cleaned up redundant logic in Iterator::Next and made a new function SeekToStartSequence for greater readability and maintainibilty.
      * Modified a test in db_test accordingly
      Please check the logic carefully and suggest improvements. I have a separate patch out for more improvements like restricting reader to read till written sequences.
      
      Test Plan:
      * transaction log iterator tests in db_test,
      * db_repl_stress.
      * rocks_log_iterator_test in fbcode/wormhole/rocksdb/test - 2 tests thriving on hacks till now can get simplified
      * testing on the shadow setup for sigma with replication
      
      Reviewers: dhruba, haobo, kailiu, sdong
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13437
      fe371396
    • K
      Add statistics to sst file · 86ef6c3f
      Kai Liu 提交于
      Summary:
      So far we only have key/value pairs as well as bloom filter stored in the
      sst file.  It will be great if we are able to store more metadata about
      this table itself, for example, the entry size, bloom filter name, etc.
      
      This diff is the first step of this effort. It allows table to keep the
      basic statistics mentioned in http://fburl.com/14995441, as well as
      allowing writing user-collected stats to stats block.
      
      After this diff, we will figure out the interface of how to allow user to collect their interested statistics.
      
      Test Plan:
      1. Added several unit tests.
      2. Ran `make check` to ensure it doesn't break other tests.
      
      Reviewers: dhruba, haobo
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13419
      86ef6c3f
    • S
      Change Function names from Compaction->Flush When they really mean Flush · 88f2f890
      Siying Dong 提交于
      Summary: When I debug the unit test failures when enabling background flush thread, I feel the function names can be made clearer for people to understand. Also, if the names are fixed, in many places, some tests' bugs are obvious (and some of those tests are failing). This patch is to clean it up for future maintenance.
      
      Test Plan: Run test suites.
      
      Reviewers: haobo, dhruba, xjin
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D13431
      88f2f890
  12. 12 10月, 2013 1 次提交
    • S
      LRUCache to try to clean entries not referenced first. · f8509653
      sdong 提交于
      Summary:
      With this patch, when LRUCache.Insert() is called and the cache is full, it will first try to free up entries whose reference counter is 1 (would become 0 after remo\
      ving from the cache). We do it in two passes, in the first pass, we only try to release those unreferenced entries. If we cannot free enough space after traversing t\
      he first remove_scan_cnt_ entries, we start from the beginning again and remove those entries being used.
      
      Test Plan: add two unit tests to cover the codes
      
      Reviewers: dhruba, haobo, emayanke
      
      Reviewed By: emayanke
      
      CC: leveldb, emayanke, xjin
      
      Differential Revision: https://reviews.facebook.net/D13377
      f8509653