1. 29 9月, 2015 6 次提交
    • I
      Clear SyncPoint Trace in DeleteSchedulerTests · 16d1ba70
      Islam AbdelRahman 提交于
      Summary: DeleteSchedulerTests is running the same test with different rates, After the first iteraton sync points become useless because ClearTrace was not being called
      
      Test Plan: Run the test
      
      Reviewers: sdong, yhchiang, igor
      
      Reviewed By: igor
      
      Subscribers: dhruba
      
      Differential Revision: https://reviews.facebook.net/D47709
      16d1ba70
    • Y
      Make CompactionJobStatsTest.UniversalCompactionTest more robust · 30f74fa9
      Yueh-Hsuan Chiang 提交于
      Summary:
      CompactionJobStatsTest.UniversalCompactionTest assumes compaction
      kicks in when the number of L0 files equals to the compaction trigger.
      However, in some case, the compaction might not catch up the write
      speed and thus compaction might not kick in until the number of L0 files
      is GREATER than the compaction trigger.
      
      This patch tries to fix this corner case by making the Put thread wait
      for a potential compaction whenever it flushes.
      
      Test Plan: ./compaction_job_stats_test
      
      Reviewers: sdong, anthony, IslamAbdelRahman, igor
      
      Subscribers: dhruba
      
      Differential Revision: https://reviews.facebook.net/D47589
      30f74fa9
    • A
      SingleDelete support for Transactions · afe0dc53
      agiardullo 提交于
      Summary: Transactional SingleDelete is needed for MyRocks.  Note: This diff requires D47529.
      
      Test Plan: Added some new tests in this diff as well as more tests added in D47529
      
      Reviewers: rven, sdong, igor, yhchiang
      
      Reviewed By: yhchiang
      
      Subscribers: yoshinorim, dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D47535
      afe0dc53
    • Y
      Fixed a tsan warning in db_stress.cc · a263002a
      Yueh-Hsuan Chiang 提交于
      Summary:
      Fixed the following tsan warning in db_stress.cc
      
        WARNING: ThreadSanitizer: data race (pid=3163194)
        Read of size 8 at 0x7fd1797cb518 by thread T32:
          #0 VerifyDb tools/db_stress.cc:1731 (db_stress+0x000000040674)
          #1 rocksdb::StressTest::ThreadBody(void*) tools/db_stress.cc:1191 (db_stress+0x0000000625a9)
          #2 StartThreadWrapper util/env_posix.cc:1648 (db_stress+0x00000028bbbd)
      
        Previous write of size 8 at 0x7fd1797cb518 by thread T31:
          #0 VerifyDb tools/db_stress.cc:1726 (db_stress+0x00000004072a)
          #1 rocksdb::StressTest::ThreadBody(void*) tools/db_stress.cc:1191 (db_stress+0x0000000625a9)
          #2 StartThreadWrapper util/env_posix.cc:1648 (db_stress+0x00000028bbbd)
      
      The cause is that in VerifyDb(), the static local const variable long max_key
      can be read and written at the same time.  This patch fixed it by making it
      non-static.
      
      Test Plan: db_stress
      
      Reviewers: igor, sdong, IslamAbdelRahman, anthony
      
      Reviewed By: anthony
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D47703
      a263002a
    • Y
      Fixed a compile error in util/arena.h · e4861e7d
      Yueh-Hsuan Chiang 提交于
      Summary:
      Fixed the compile error in util/arena.h caused by not
      including TLB related header.
      
      Test Plan: make db_stress
      
      Reviewers: igor, sdong, anthony, IslamAbdelRahman
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D47697
      e4861e7d
    • Y
      Fixed a compile warning in util/arena.cc when hugetlb is not supported. · 0fdb4f16
      Yueh-Hsuan Chiang 提交于
      Summary:
      Fixed the following compile warning when hugetlb is not supported.
      
          ./util/arena.h:102:10: error: private field 'hugetlb_size_' is not used [-Werror,-Wunused-private-field]
            size_t hugetlb_size_ = 0;
                   ^
          1 error generated.
      
      Test Plan: make db_stress
      
      Reviewers: igor, sdong, anthony, IslamAbdelRahman
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D47691
      0fdb4f16
  2. 27 9月, 2015 1 次提交
  3. 26 9月, 2015 10 次提交
  4. 25 9月, 2015 1 次提交
    • K
      Parameterizing email id · e01f32cc
      krad 提交于
      Summary: Removing the leveldb@fb.com and making it a command line argument
      
      Test Plan: Manual test
      
      Reviewers:
      
      CC: leveldb@
      
      Task ID: #6968635
      
      Blame Rev:
      e01f32cc
  5. 24 9月, 2015 9 次提交
    • M
      Fix valgrind failure due to memory leaks · c58bac70
      Mayank Pundir 提交于
      Summary: Test cases for IsBottommostLevel function create FileMetaData objects which were not getting deleted in the destructor.
      
      Test Plan: Valgrind check on compaction_picker_test
      
      Reviewers: yhchiang, igor, sdong
      
      Subscribers: rven, kradhakrishnan, IslamAbdelRahman, dhruba, anthony
      
      Differential Revision: https://reviews.facebook.net/D47463
      c58bac70
    • S
      Fix the bug of using freed memory introduced by recent plain table reader patch · a70d08ec
      sdong 提交于
      Summary: Recent patch introduced a bug that if non-mmap mode is used, in prefix encoding case, there is a resizing of cur_key_ within the same prefix, we still read prefix from the released buffer. It fails ASAN tests and this commit fixes it.
      
      Test Plan: Run the ASAN tests for the failing test case.
      
      Reviewers: IslamAbdelRahman, yhchiang, anthony, igor, kradhakrishnan, rven
      
      Subscribers: leveldb, dhruba
      
      Differential Revision: https://reviews.facebook.net/D47457
      a70d08ec
    • K
      Simplifying valgrind testing · 628216fc
      krad 提交于
      Summary: Our valgrind testing is buggy and cumbersome in terms of locating the
      error. It originates from the fact we accumulate all output for the tests. It is
      extremely hard to locate the point of error.
      
      The communication between valgrind and the script is not sturdy. We are
      experiencing bugs.
      
      Simplifying to stop on first error.
      
      Test Plan: Run manually
      
      Reviewers: sdong igor
      
      CC: leveldb@
      
      Task ID: #6968635
      
      Blame Rev:
      628216fc
    • A
      Remove ldb HexToString method's usage of sscanf · 4805fa0e
      Assaf Sela 提交于
      Summary:
      Fix hex2String performance issues by removing sscanf dependency.
      Also fixed some edge case handling (odd length, bad input).
      
      Test Plan: Created a test file which called old and new implementation, and validated results are the same. I'll paste results in the phabricator diff.
      
      Reviewers: igor, rven, anthony, IslamAbdelRahman, kradhakrishnan, yhchiang, sdong
      
      Reviewed By: sdong
      
      Subscribers: thatsafunnyname, leveldb, dhruba
      
      Differential Revision: https://reviews.facebook.net/D46785
      4805fa0e
    • I
      Add experimental DB::AddFile() to plug sst files into empty DB · f03b5c98
      Islam AbdelRahman 提交于
      Summary:
      This is an initial version of bulk load feature
      
      This diff allow us to create sst files, and then bulk load them later, right now the restrictions for loading an sst file are
      (1) Memtables are empty
      (2) Added sst files have sequence number = 0, and existing values in database have sequence number = 0
      (3) Added sst files values are not overlapping
      
      Test Plan: unit testing
      
      Reviewers: igor, ott, sdong
      
      Reviewed By: sdong
      
      Subscribers: leveldb, ott, dhruba
      
      Differential Revision: https://reviews.facebook.net/D39081
      f03b5c98
    • Y
      Fixed old lint errors in db/filename.cc · 3fdb6e52
      Yueh-Hsuan Chiang 提交于
      Summary: Fixed old lint errors in db/filename.cc
      
      Test Plan: make
      
      Reviewers: igor, sdong, anthony, IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D47445
      3fdb6e52
    • Y
      Fixed old lint errors in db/filename.h · b349d227
      Yueh-Hsuan Chiang 提交于
      Summary: Fixed old lint errors in db/filename.h
      
      Test Plan: make
      
      Reviewers: igor, sdong, anthony, IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D47439
      b349d227
    • S
      PlainTableReader to support non-mmap mode · df34aea3
      sdong 提交于
      Summary:
      PlainTableReader now only allows mmap-mode. Add the support to non-mmap mode for more flexibility.
      Refactor the codes to move all logic of reading data to PlainTableKeyDecoder, and consolidate the calls to Read() call and ReadVarint32() call. Implement the calls for both of mmap and non-mmap case seperately. For non-mmap mode, make copy of keys in several places when we need to move the buffer after reading the keys.
      
      Test Plan: Add the mode of non-mmap case in plain_table_db_test. Run it in valgrind mode too.
      
      Subscribers: leveldb, dhruba
      
      Differential Revision: https://reviews.facebook.net/D47187
      df34aea3
    • S
      RandomAccessFileReader should not inherit RandomAccessFile · d746eaad
      sdong 提交于
      Summary: RandomAccessFileReader unnecessarily inherited RandomAccessFile, which can introduce unnecessarily extra costs. Remove it.
      
      Test Plan: Run all existing tests
      
      Reviewers: yhchiang, anthony, igor, kradhakrishnan, rven, IslamAbdelRahman
      
      Reviewed By: IslamAbdelRahman
      
      Subscribers: leveldb, dhruba
      
      Differential Revision: https://reviews.facebook.net/D47409
      d746eaad
  6. 23 9月, 2015 5 次提交
  7. 22 9月, 2015 7 次提交
  8. 20 9月, 2015 1 次提交
    • K
      Fix to CI jobs. · 4d6eb52d
      krad 提交于
      Summary: The approach to serialize long scripts as string is flawed. Instead
      adding args to invoke the long scripts.
      
      Test Plan: Manual test
      
      Reviewers:
      
      CC: leveldb@
      
      Task ID: #6968635
      
      Blame Rev:
      4d6eb52d