1. 01 8月, 2014 5 次提交
    • I
      Never CompactRange to level 0 in level compaction · e4c36739
      Igor Canadi 提交于
      Summary: I was bit by this when developing SpatialDB. In case all files are at level 0, CompactRange() will output the compacted files to level 0. This is not ideal, since read amp. is much better at level 1 and higher.
      
      Test Plan: Compacted data in SpatialDB, read manifest using ldb, verified that files are now at level 1 instead of 0.
      
      Reviewers: sdong, ljin, yhchiang, dhruba
      
      Reviewed By: dhruba
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D20901
      e4c36739
    • R
      Fixing broken Mac build · 0c9d03ba
      Radheshyam Balasundaram 提交于
      Summary: Made some small changes to fix the broken mac build
      
      Test Plan: make check all in both linux and mac. All tests pass.
      
      Reviewers: sdong, igor, ljin, yhchiang
      
      Reviewed By: ljin, yhchiang
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20895
      0c9d03ba
    • Y
      Fixed a warning / error in signed and unsigned comparison · 1903aa5c
      Yueh-Hsuan Chiang 提交于
      Summary:
      Fixed the following compilation error detected in mac:
      db/db_test.cc:2524:3: note: in instantiation of function template
        specialization 'rocksdb::test::Tester::IsEq<unsigned long long, int>' requested here
          ASSERT_EQ(int_num, 0);
            ^
      
      Test Plan:
      make
      1903aa5c
    • Y
      Remove a check for merge operator in builder.cc · 67dae255
      Yueh-Hsuan Chiang 提交于
      Summary:
      Previously, builder.cc has a check for merge operator which prevents
      RocksDB from crash when reopening a DB w/o properly specifying the merge
      operator.  However, currently we observed a memory leak on failing in
      RocksDB recovery.  This diff removes such check and let it crash instead of
      causing memory leak for now before we have identified the real cause of
      the memory leak.
      
      Test Plan: make all check
      
      Reviewers: sdong
      
      Subscribers: ljin, igor
      
      Differential Revision: https://reviews.facebook.net/D20913
      67dae255
    • Y
      Temporary remove the last test in merge_test · 2105ecac
      Yueh-Hsuan Chiang 提交于
      2105ecac
  2. 31 7月, 2014 10 次提交
  3. 29 7月, 2014 7 次提交
    • R
      Minor changes to CuckooTableBuilder · 91c01485
      Radheshyam Balasundaram 提交于
      Summary:
      - Copy the key and value to in-memory hash table during Add operation. Also modified cuckoo_table_reader_test to use this.
      - Store only the user_key in in-memory hash table if it is last level file.
      - Handle Carryover while chosing unused key in Finish() method in case unused key was never found before Finish() call.
      
      Test Plan:
      cuckoo_table_reader_test --enable_perf
      cuckoo_table_builder_test
      valgrind_check
      asan_check
      
      Reviewers: sdong, yhchiang, igor, ljin
      
      Reviewed By: ljin
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20715
      91c01485
    • S
      Add DB::GetIntProperty() to return integer properties to be returned as integers · f04356e6
      sdong 提交于
      Summary: We have quite some properties that are integers and we are adding more. Add a function to directly return them as an integer, instead of a string
      
      Test Plan: Add several unit test checks
      
      Reviewers: yhchiang, igor, dhruba, haobo, ljin
      
      Reviewed By: ljin
      
      Subscribers: yoshinorim, leveldb
      
      Differential Revision: https://reviews.facebook.net/D20637
      f04356e6
    • S
      Add DB property estimated number of keys · f6784766
      sdong 提交于
      Summary: Add a DB property of estimated number of live keys, by adding number of entries of all mem tables and all files, subtracted by all deletions in all files.
      
      Test Plan: Add the case in unit tests
      
      Reviewers: hobbymanyp, ljin
      
      Reviewed By: ljin
      
      Subscribers: MarkCallaghan, yoshinorim, leveldb, igor, dhruba
      
      Differential Revision: https://reviews.facebook.net/D20631
      f6784766
    • L
      InternalStats to take cfd on constructor · 7e8bb71d
      Lei Jin 提交于
      Summary:
      It has one-to-one relationship with CFD. Take a pointer to CFD on
      constructor to avoid passing cfd through member functions.
      
      Test Plan: make
      
      Reviewers: sdong, yhchiang, igor
      
      Reviewed By: igor
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20565
      7e8bb71d
    • L
      Change StopWatch interface · 1bd3431f
      Lei Jin 提交于
      Summary: So that we can avoid calling NowSecs() in MakeRoomForWrite twice
      
      Test Plan: make all check
      
      Reviewers: yhchiang, igor, sdong
      
      Reviewed By: sdong
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20529
      1bd3431f
    • L
      make statistics forward-able · f6ca226c
      Lei Jin 提交于
      Summary:
      Make StatisticsImpl being able to forward stats to provided statistics
      implementation. The main purpose is to allow us to collect internal
      stats in the future even when user supplies custom statistics
      implementation. It avoids intrumenting 2 sets of stats collection code.
      One immediate use case is tuning advisor, which needs to collect some
      internal stats, users may not be interested.
      
      Test Plan:
      ran db_bench and see stats show up at the end of run
      Will run make all check since some tests rely on statistics
      
      Reviewers: yhchiang, sdong, igor
      
      Reviewed By: sdong
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D20145
      f6ca226c
    • L
      make statistics forward-able · 40fa8a4c
      Lei Jin 提交于
      Summary:
      Make StatisticsImpl being able to forward stats to provided statistics
      implementation. The main purpose is to allow us to collect internal
      stats in the future even when user supplies custom statistics
      implementation. It avoids intrumenting 2 sets of stats collection code.
      One immediate use case is tuning advisor, which needs to collect some
      internal stats, users may not be interested.
      
      Test Plan:
      ran db_bench and see stats show up at the end of run
      Will run make all check since some tests rely on statistics
      
      Reviewers: yhchiang, sdong, igor
      
      Reviewed By: sdong
      
      Subscribers: dhruba, leveldb
      
      Differential Revision: https://reviews.facebook.net/D20145
      40fa8a4c
  4. 26 7月, 2014 4 次提交
    • S
      Block::Iter::PrefixSeek() to have an extra check to filter out some false matches · 4a8f0c95
      sdong 提交于
      Summary:
      In block based table's hash index checking, when looking for a key that doesn't exist, there is a high chance that a false block is returned because of hash bucket conflicts. In this revision, another check is done to filter out some of those cases: comparing previous key of the block boundary to see whether the target block is what we are looking for.
      
      In a favored test setting (bloom filter disabled, 8 L0 files), I saw about 80% improvements. In a non-favored test setting (bloom filter enabled, files are all in L1, files are all cached), I see the performance penalty is less than 3%.
      
      Test Plan: make all check
      
      Reviewers: haobo, ljin
      
      Reviewed By: ljin
      
      Subscribers: wuj, leveldb, zagfox, yhchiang
      
      Differential Revision: https://reviews.facebook.net/D20595
      4a8f0c95
    • R
      Implementation of CuckooTableReader · 62f9b071
      Radheshyam Balasundaram 提交于
      Summary:
      Contains:
      - Implementation of TableReader based on Cuckoo Hashing
      - Unittests for CuckooTableReader
      - Performance test for TableReader
      
      Test Plan:
      make cuckoo_table_reader_test
      ./cuckoo_table_reader_test
      make valgrind_check
      make asan_check
      
      Reviewers: yhchiang, sdong, igor, ljin
      
      Reviewed By: ljin
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20511
      62f9b071
    • L
      expose RateLimiter definition · d650612c
      Lei Jin 提交于
      Summary:
      User gets undefinied error since the definition is not exposed.
      Also re-enable the db test with only upper bound check
      
      Test Plan: db_test, rate_limit_test
      
      Reviewers: igor, yhchiang, sdong
      
      Reviewed By: sdong
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20403
      d650612c
    • I
      Initialize next_id · 28b367db
      Igor Canadi 提交于
      28b367db
  5. 25 7月, 2014 5 次提交
  6. 24 7月, 2014 9 次提交
    • Y
      Merge branch 'ankgup87-master' · 4b61a3d6
      Yueh-Hsuan Chiang 提交于
      4b61a3d6
    • Y
      [Java] Add compaction style to options · 10fc6c7d
      Yueh-Hsuan Chiang 提交于
      Summary:
      Add compression type to options
      
      make rocksdbjava
      make sample
      
      Reviewers: haobo, yhchiang, sdong, dhruba, rsumbaly, zzbennett, swapnilghike
      Reviewed By: yhchiang, sdong
      CC: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20463
      10fc6c7d
    • I
      NewIterators in read-only mode · 41a69725
      Igor Canadi 提交于
      Summary: As title.
      
      Test Plan: Added test to column_family_test
      
      Reviewers: ljin, yhchiang, sdong
      
      Reviewed By: sdong
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20523
      41a69725
    • I
      Fix release compile error · e5f6980d
      Igor Canadi 提交于
      e5f6980d
    • F
      Use IterKey instead of string in Block::Iter to reduce malloc · da927457
      Feng Zhu 提交于
      Summary:
        Modify a functioin TrimAppend in dbformat.h: IterKey. Write a test for it in dbformat_test
        Use IterKey in block::Iter to replace std::string to reduce malloc.
      
        Evaluate it using perf record.
        malloc: 4.26% -> 2.91%
        free: 3.61% -> 3.08%
      
      Test Plan:
        make all check
        ./valgrind db_test dbformat_test
      
      Reviewers: ljin, haobo, yhchiang, dhruba, igor, sdong
      
      Reviewed By: sdong
      
      Differential Revision: https://reviews.facebook.net/D20433
      da927457
    • I
      SpatialDB · 62963304
      Igor Canadi 提交于
      Summary:
      This diff is adding spatial index support to RocksDB.
      
      When creating the DB user specifies a list of spatial indexes. Spatial indexes can cover different areas and have different resolution (i.e. number of tiles). This is useful for supporting different zoom levels.
      
      Each element inserted into SpatialDB has:
      * a bounding box, which determines how will the element be indexed
      * string blob, which will usually be WKB representation of the polygon (http://en.wikipedia.org/wiki/Well-known_text)
      * feature set, which is a map of key-value pairs, where value can be int, double, bool, null or a string. FeatureSet will be a set of tags associated with geo elements (for example, 'road': 'highway' and similar)
      * a list of indexes to insert the element in. For example, small river element will be inserted in index for high zoom level, while country border will be inserted in all indexes (including the index for low zoom level).
      
      Each query is executed on single spatial index. Query guarantees that it will return all elements intersecting the specified bounding box, but it might also return some extra non-intersecting elements.
      
      Test Plan: Added bunch of unit tests in spatial_db_test
      
      Reviewers: dhruba, yinwang
      
      Reviewed By: yinwang
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20361
      62963304
    • Y
      [Java] Add the missing ROCKSDB_JAR variable in Makefile · b5c4c0b8
      Yueh-Hsuan Chiang 提交于
      Summary:
      Add the missing ROCKSDB_JAR variable in Makefile, which is mistakenly
      removed in https://reviews.facebook.net/D20289.
      
      Test Plan:
      export ROCKSDB_JAR=
      make rocksdbjava
      b5c4c0b8
    • Y
      [Java] Update header inclusion of utilities files · 6e7e3e45
      Yueh-Hsuan Chiang 提交于
      Summary:
      Update header inclusion as include/utilities/*.h has been moved to
      include/rocksdb/utilities/*.h
      
      Test Plan: make rocksdbjava
      
      Reviewers: ljin, sdong, igor
      
      Reviewed By: igor
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20517
      6e7e3e45
    • Y
      Fixed a compile error in util/options_builder.cc · 00f56dfa
      Yueh-Hsuan Chiang 提交于
      Summary:
      Fixed the following compile error by replacing pow by shift, as it computes
      power of 2.
      
      util/options_builder.cc:133:14: error: no member named 'pow' in namespace 'std'
              std::pow(2, std::max(0, std::min(3, level0_stop_writes_trigger -
              ~~~~~^
      1 error generated.
      make: *** [util/options_builder.o] Error 1
      
      Test Plan: make success in mac and linux
      
      Reviewers: ljin, igor, sdong
      
      Reviewed By: sdong
      
      Subscribers: leveldb
      
      Differential Revision: https://reviews.facebook.net/D20475
      00f56dfa