1. 11 5月, 2013 2 次提交
  2. 10 5月, 2013 3 次提交
  3. 09 5月, 2013 1 次提交
    • D
      Assertion failure for L0-L1 compactions. · a8d3aa2c
      Dhruba Borthakur 提交于
      Summary:
      For level-0 compactions, we try to find if can include more L0 files
      in the same compaction run. This causes the 'smallest' and 'largest'
      key to get extended to a larger range. But the suceeding call to
      ParentRangeInCompaction() was still using the earlier
      values of 'smallest' and 'largest',
      
      Because of this bug, a file in L1 can be part of two concurrent
      compactions: one L0-L1 compaction and the other L1-L2 compaction.
      
      This should not cause any data loss, but will cause an assertion
      failure with debug builds.
      
      Test Plan: make check
      
      Differential Revision: https://reviews.facebook.net/D10677
      a8d3aa2c
  4. 07 5月, 2013 2 次提交
    • A
      [RocksDB] Clear Archive WAL files · 988c20b9
      Abhishek Kona 提交于
      Summary:
      WAL files are moved to archive directory and clear only at DB::Open.
      Can lead to a lot of space consumption in a Database. Added logic to periodically clear Archive Directory too.
      
      Test Plan: make all check + add unit test
      
      Reviewers: dhruba, heyongqiang
      
      Reviewed By: heyongqiang
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10617
      988c20b9
    • H
      [RocksDB] fix build · 3c4efc44
      Haobo Xu 提交于
      Summary: makefile change: LIBRARY => LIBOBJECTS
      thanks Abhishek for reproducing this locally.
      
      Test Plan: make release
      
      Reviewers: sheki
      
      CC: leveldb
      
      Task ID: #
      
      Blame Rev:
      3c4efc44
  5. 04 5月, 2013 2 次提交
    • H
      [Rocksdb] Support Merge operation in rocksdb · 05e88540
      Haobo Xu 提交于
      Summary:
      This diff introduces a new Merge operation into rocksdb.
      The purpose of this review is mostly getting feedback from the team (everyone please) on the design.
      
      Please focus on the four files under include/leveldb/, as they spell the client visible interface change.
      include/leveldb/db.h
      include/leveldb/merge_operator.h
      include/leveldb/options.h
      include/leveldb/write_batch.h
      
      Please go over local/my_test.cc carefully, as it is a concerete use case.
      
      Please also review the impelmentation files to see if the straw man implementation makes sense.
      
      Note that, the diff does pass all make check and truly supports forward iterator over db and a version
      of Get that's based on iterator.
      
      Future work:
      - Integration with compaction
      - A raw Get implementation
      
      I am working on a wiki that explains the design and implementation choices, but coding comes
      just naturally and I think it might be a good idea to share the code earlier. The code is
      heavily commented.
      
      Test Plan: run all local tests
      
      Reviewers: dhruba, heyongqiang
      
      Reviewed By: dhruba
      
      CC: leveldb, zshao, sheki, emayanke, MarkCallaghan
      
      Differential Revision: https://reviews.facebook.net/D9651
      05e88540
    • M
      Fix invalid-read to freed memory in ttl-iterator · 37e97b12
      Mayank Agarwal 提交于
      Summary: value function in ttl-iterator was returning string which would have been freed before its usage as a slice. Thanks valgrind!
      
      Test Plan: valgrind ./ttl_test
      
      Reviewers: dhruba, haobo, sheki, vamsi
      
      Reviewed By: haobo
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10635
      37e97b12
  6. 03 5月, 2013 1 次提交
    • M
      Timestamp and TTL Wrapper for rocksdb · d786b25e
      Mayank Agarwal 提交于
      Summary:
      When opened with DBTimestamp::Open call, timestamps are prepended to and stripped from the value during subsequent Put and Get calls respectively. The Timestamp is used to discard values in Get and custom compaction filter which have exceeded their TTL which is specified during Open.
      Have made a temporary change to Makefile to let us test with the temporary file TestTime.cc. Have also changed the private members of db_impl.h to protected to let them be inherited by the new class DBTimestamp
      
      Test Plan: make db_timestamp; TestTime.cc(will not check it in) shows how to use the apis currently, but I will write unit-tests shortly
      
      Reviewers: dhruba, vamsi, haobo, sheki, heyongqiang, vkrest
      
      Reviewed By: vamsi
      
      CC: zshao, xjin, vkrest, MarkCallaghan
      
      Differential Revision: https://reviews.facebook.net/D10311
      d786b25e
  7. 30 4月, 2013 2 次提交
  8. 26 4月, 2013 1 次提交
  9. 24 4月, 2013 1 次提交
  10. 23 4月, 2013 5 次提交
    • H
      [RocksDB] Print stack trace to stderr instead of stdio. · 06d3487b
      Haobo Xu 提交于
      Summary: Some scripts (like regression_build_test.sh) redirect stdio to a tmp file and delete it on exit. This would miss the stack trace output on segfault. Output to stderr would hopefully show us the stack trace in the continuous build output.
      
      Test Plan: ./signal_test, make check
      
      Reviewers: dhruba
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10485
      06d3487b
    • K
      Avoid global static initialization in Env::Default() · 958b9c80
      Kai Liu 提交于
      Summary:
      Mark's task description from #2316777
      
      Env::Default() comes from util/env_posix.cc
      
      This is a static global.
      
      static PosixEnv default_env;
      
      Env* Env::Default() {
        return &default_env;
      }
      
      -----
      
      These globals assume default_env was initialized first. I don't think that is safe or correct to do (http://stackoverflow.com/questions/1005685/c-static-initialization-order)
      
      const string AutoRollLoggerTest::kTestDir(
      test::TmpDir() + "/db_log_test");
      const string AutoRollLoggerTest::kLogFile(
      test::TmpDir() + "/db_log_test/LOG");
      Env* AutoRollLoggerTest::env = Env::Default();
      
      Test Plan:
      run make clean && make && make check
      But how can I know if it works in Ubuntu?
      
      Reviewers: MarkCallaghan, chip
      
      Reviewed By: chip
      
      CC: leveldb, dhruba, haobo
      
      Differential Revision: https://reviews.facebook.net/D10491
      958b9c80
    • H
      [RocksDB] Move table.h to table/ · eb6d1396
      Haobo Xu 提交于
      Summary:
      - don't see a point exposing table.h to the public.
      - fixed make clean to remove also *.d files.
      
      Test Plan: make check; db_stress
      
      Reviewers: dhruba, heyongqiang
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10479
      eb6d1396
    • A
      [RocksDB] Fix ReadMissing in db_bench · 344e832f
      Abhishek Kona 提交于
      Summary: D8943 Broke read_missing. Fix it by adding a "." at the end of the generated key
      
      Test Plan: generate, print and check the key has a "."
      
      Reviewers: dhruba, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10455
      344e832f
    • D
      Initialize parameters in the constructor. · 3cb7bf81
      Dhruba Borthakur 提交于
      Summary:
      RocksDB doesn't build on Ubuntu VM .. shoudl be fixed with this patch.
      
      g++ --version
      g++ (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3
      
      util/env_posix.cc:68:24: sorry, unimplemented: non-static data member initializers
      util/env_posix.cc:68:24: error: ISO C++ forbids in-class initialization of non-const static member ‘use_os_buffer’
      util/env_posix.cc:113:24: sorry, unimplemented: non-static data member initializers
      util/env_posix.cc:113:24: error: ISO C++ forbids in-class initialization of non-const static member ‘use_os_buffer
      
      Test Plan: make check
      
      Reviewers: sheki, leveldb
      
      Reviewed By: sheki
      
      Differential Revision: https://reviews.facebook.net/D10461
      3cb7bf81
  11. 21 4月, 2013 4 次提交
    • H
      [RocksDB] CompactionFilter cleanup · b4243e5a
      Haobo Xu 提交于
      Summary:
      - removed the compaction_filter_value from the callback interface. Restrict compaction filter to purging values.
      - modify some comments to reflect curent status.
      
      Test Plan: make check
      
      Reviewers: dhruba
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10335
      b4243e5a
    • M
      Add --writes_per_second rate limit, print p99.99 in histogram · b1ff9ac9
      Mark Callaghan 提交于
      Summary:
      Adds the --writes_per_second rate limit for the readwhilewriting test.
      The purpose is to optionally avoid saturating storage with writes & compaction
      and test read response time when some writes are being done.
      
      Changes the histogram code to also print the p99.99 value
      
      Task ID: #
      
      Blame Rev:
      
      Test Plan:
      make check, ran db_bench with it
      
      Revert Plan:
      
      Database Impact:
      
      Memcache Impact:
      
      Other Notes:
      
      EImportant:
      
      - begin *PUBLIC* platform impact section -
      Bugzilla: #
      - end platform impact -
      
      Reviewers: haobo
      
      Reviewed By: haobo
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10305
      b1ff9ac9
    • H
      [RocksDB] fix build · e0b60923
      Haobo Xu 提交于
      Summary: forgot to include signal_test.cc
      
      Test Plan: make check
      
      Reviewers: sheki
      
      Reviewed By: sheki
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10281
      e0b60923
    • H
      [RocksDB] Add stacktrace signal handler · 1255dcd4
      Haobo Xu 提交于
      Summary:
      This diff provides the ability to print out a stacktrace when the process receives certain signals.
      Currently, we enable this for the following signals (program error related):
      SIGILL SIGSEGV SIGBUS SIGABRT
      Application simply #include "util/stack_trace.h" and call leveldb::InstallStackTraceHandler() during initialization, if signal handler is needed. It's not done automatically when openning db, because it's the application(process)'s responsibility to install signal handler and some applications might already have their own (like fbcode).
      
      Sample output:
      Received signal 11 (Segmentation fault)
      #0  0x408ff0 ./signal_test() [0x408ff0] /home/haobo/rocksdb/util/signal_test.cc:4
      #1  0x40827d ./signal_test() [0x40827d] /home/haobo/rocksdb/util/signal_test.cc:24
      #2  0x7f8bb183172e /usr/local/fbcode/gcc-4.7.1-glibc-2.14.1/lib/libc.so.6(__libc_start_main+0x10e) [0x7f8bb183172e] ??:0
      #3  0x408ebc ./signal_test() [0x408ebc] /home/engshare/third-party/src/glibc/glibc-2.14.1/glibc-2.14.1/csu/../sysdeps/x86_64/elf/start.S:113
      Segmentation fault (core dumped)
      
      For each frame, we print the raw pointer, the symbol provided by backtrace_symbols (still not good enough), and the source file/line. Note that address translation is done by directly shell out to addr2line. ??:0 means addr2line fails to do the translation. Hacky, but I think it's good for now.
      
      Test Plan: signal_test.cc
      
      Reviewers: dhruba, MarkCallaghan
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10173
      1255dcd4
  12. 16 4月, 2013 3 次提交
  13. 13 4月, 2013 1 次提交
    • H
      [RocksDB] [Performance] Speed up FindObsoleteFiles · 013e9ebb
      Haobo Xu 提交于
      Summary:
      FindObsoleteFiles was slow, holding the single big lock, resulted in bad p99 behavior.
      Didn't profile anything, but several things could be improved:
      1. VersionSet::AddLiveFiles works with std::set, which is by itself slow (a tree).
         You also don't know how many dynamic allocations occur just for building up this tree.
         switched to std::vector, also added logic to pre-calculate total size and do just one allocation
      2. Don't see why env_->GetChildren() needs to be mutex proteced, moved to PurgeObsoleteFiles where
         mutex could be unlocked.
      3. switched std::set to std:unordered_set, the conversion from vector is also inside PurgeObsoleteFiles
      I have a feeling this should pretty much fix it.
      
      Test Plan: make check;  db_stress
      
      Reviewers: dhruba, heyongqiang, MarkCallaghan
      
      Reviewed By: dhruba
      
      CC: leveldb, zshao
      
      Differential Revision: https://reviews.facebook.net/D10197
      013e9ebb
  14. 12 4月, 2013 3 次提交
  15. 11 4月, 2013 5 次提交
    • M
      Release 1.5.9.fb to third party · 6936f9bb
      Mayank Agarwal 提交于
      Summary: new release 1.5.9.fb
      
      Test Plan: release
      
      Reviewers: heyongqiang
      
      Reviewed By: heyongqiang
      
      Differential Revision: https://reviews.facebook.net/D10149
      6936f9bb
    • M
      Exit and Join the background compaction threads while running rocksdb tests · 6594fef7
      Mayank Agarwal 提交于
      Summary:
      The background compaction threads are never exitted and therefore caused
      memory-leaks while running rpcksdb tests. Have changed the PosixEnv destructor to exit and join them and changed the tests likewise
      The memory leaked has reduced from 320 bytes to 64 bytes in all the tests. The 64
      bytes is relating to
      pthread_exit, but still have to figure out why. The stack-trace right now with
      table_test.cc = 64 bytes in 1 blocks are possibly lost in loss record 4 of 5
         at 0x475D8C: malloc (jemalloc.c:914)
         by 0x400D69E: _dl_map_object_deps (dl-deps.c:505)
         by 0x4013393: dl_open_worker (dl-open.c:263)
         by 0x400F015: _dl_catch_error (dl-error.c:178)
         by 0x4013B2B: _dl_open (dl-open.c:569)
         by 0x5D3E913: do_dlopen (dl-libc.c:86)
         by 0x400F015: _dl_catch_error (dl-error.c:178)
         by 0x5D3E9D6: __libc_dlopen_mode (dl-libc.c:47)
         by 0x5048BF3: pthread_cancel_init (unwind-forcedunwind.c:53)
         by 0x5048DC9: _Unwind_ForcedUnwind (unwind-forcedunwind.c:126)
         by 0x5046D9F: __pthread_unwind (unwind.c:130)
         by 0x50413A4: pthread_exit (pthreadP.h:289)
      
      Test Plan: make all check
      
      Reviewers: dhruba, sheki, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb, chip
      
      Differential Revision: https://reviews.facebook.net/D9573
      6594fef7
    • H
      Set FD_CLOEXEC after each file open · e21ba94a
      heyongqiang 提交于
      Summary: as subject. This is causing problem in adsconv. Ideally, this flags should be set in open. But that is only supported in Linux kernel ≥2.6.23 and glibc ≥2.7.
      
      Test Plan:
      db_test
      
      run db_test
      
      Reviewers: dhruba, MarkCallaghan, haobo
      
      Reviewed By: dhruba
      
      CC: leveldb, chip
      
      Differential Revision: https://reviews.facebook.net/D10089
      e21ba94a
    • M
      Printing the options that db_crashtest.py is run with · f51b3750
      Mayank Agarwal 提交于
      Summary: To know which options the crashtest was run with. Also changed print to sys.stdout.write which is more standard.
      
      Test Plan: python tools/db_crashtest.py
      
      Reviewers: vamsi, akushner, dhruba
      
      Reviewed By: akushner
      
      Differential Revision: https://reviews.facebook.net/D10119
      f51b3750
    • D
      Prevent segfault in OpenCompactionOutputFile · 77305871
      Dhruba Borthakur 提交于
      Summary:
      The segfault was happening because the program was unable to open a new
      sst file (as part of the compaction) because the process ran out of
      file descriptors.
      
      The fix is to check the return status of the file creation before taking
      any other action.
      
      Program received signal SIGSEGV, Segmentation fault.
      [Switching to Thread 0x7fabf03f9700 (LWP 29904)]
      leveldb::DBImpl::OpenCompactionOutputFile (this=this@entry=0x7fabf9011400, compact=compact@entry=0x7fabf741a2b0) at db/db_impl.cc:1399
      1399    db/db_impl.cc: No such file or directory.
      (gdb) where
      
      Test Plan: make check
      
      Reviewers: MarkCallaghan, sheki
      
      Reviewed By: MarkCallaghan
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10101
      77305871
  16. 10 4月, 2013 1 次提交
  17. 09 4月, 2013 3 次提交
    • M
      Invoke crash test from the Makefile · faa32a72
      Mayank Agarwal 提交于
      Summary: make crash_test will now invoke the crash_test. Also some cleanup in the db_crashtest.py file
      
      Test Plan: make crash_test
      
      Reviewers: akushner, vamsi, sheki, dhruba
      
      Reviewed By: vamsi
      
      Differential Revision: https://reviews.facebook.net/D9987
      faa32a72
    • A
      [RocksDB][Bug] Look at all the files, not just the first file in... · 574b76f7
      Abhishek Kona 提交于
      [RocksDB][Bug] Look at all the files, not just the first file in TransactionLogIter as BatchWrites can leave it in Limbo
      
      Summary:
      Transaction Log Iterator did not move to the next file in the series if there was a write batch at the end of the currentFile.
      The solution is if the last seq no. of the current file is < RequestedSeqNo. Assume the first seqNo. of the next file has to satisfy the request.
      
      Also major refactoring around the code. Moved opening the logreader to a seperate function, got rid of goto.
      
      Test Plan: added a unit test for it.
      
      Reviewers: dhruba, heyongqiang
      
      Reviewed By: heyongqiang
      
      CC: leveldb, emayanke
      
      Differential Revision: https://reviews.facebook.net/D10029
      574b76f7
    • M
      Make provision for db_stress to work with a pre-existing dir · 9b3134f5
      Mayank Agarwal 提交于
      Summary: The crash_test depends on db_stress to work with pre-existing dir
      
      Test Plan: make db_stress; Run db_stress with 'destroy_db_initially=0'
      
      Reviewers: vamsi, dhruba
      
      Reviewed By: dhruba
      
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D10041
      9b3134f5