123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- // Copyright (c) 2013 The LevelDB Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file. See the AUTHORS file for names of contributors.
- #include "gtest/gtest.h"
- #include "db/db_impl.h"
- #include "leveldb/cache.h"
- #include "leveldb/db.h"
- #include "util/testutil.h"
- namespace leveldb {
- class AutoCompactTest : public testing::Test {
- public:
- AutoCompactTest() {
- dbname_ = testing::TempDir() + "autocompact_test";
- tiny_cache_ = NewLRUCache(100);
- options_.block_cache = tiny_cache_;
- DestroyDB(dbname_, options_);
- options_.create_if_missing = true;
- options_.compression = kNoCompression;
- EXPECT_LEVELDB_OK(DB::Open(options_, dbname_, &db_));
- }
- ~AutoCompactTest() {
- delete db_;
- DestroyDB(dbname_, Options());
- delete tiny_cache_;
- }
- std::string Key(int i) {
- char buf[100];
- std::snprintf(buf, sizeof(buf), "key%06d", i);
- return std::string(buf);
- }
- uint64_t Size(const Slice& start, const Slice& limit) {
- Range r(start, limit);
- uint64_t size;
- db_->GetApproximateSizes(&r, 1, &size);
- return size;
- }
- void DoReads(int n);
- private:
- std::string dbname_;
- Cache* tiny_cache_;
- Options options_;
- DB* db_;
- };
- static const int kValueSize = 200 * 1024;
- static const int kTotalSize = 100 * 1024 * 1024;
- static const int kCount = kTotalSize / kValueSize;
- // Read through the first n keys repeatedly and check that they get
- // compacted (verified by checking the size of the key space).
- void AutoCompactTest::DoReads(int n) {
- std::string value(kValueSize, 'x');
- DBImpl* dbi = reinterpret_cast<DBImpl*>(db_);
- // Fill database
- for (int i = 0; i < kCount; i++) {
- ASSERT_LEVELDB_OK(db_->Put(WriteOptions(), Key(i), value));
- }
- ASSERT_LEVELDB_OK(dbi->TEST_CompactMemTable());
- // Delete everything
- for (int i = 0; i < kCount; i++) {
- ASSERT_LEVELDB_OK(db_->Delete(WriteOptions(), Key(i)));
- }
- ASSERT_LEVELDB_OK(dbi->TEST_CompactMemTable());
- // Get initial measurement of the space we will be reading.
- const int64_t initial_size = Size(Key(0), Key(n));
- const int64_t initial_other_size = Size(Key(n), Key(kCount));
- // Read until size drops significantly.
- std::string limit_key = Key(n);
- for (int read = 0; true; read++) {
- ASSERT_LT(read, 100) << "Taking too long to compact";
- Iterator* iter = db_->NewIterator(ReadOptions());
- for (iter->SeekToFirst();
- iter->Valid() && iter->key().ToString() < limit_key; iter->Next()) {
- // Drop data
- }
- delete iter;
- // Wait a little bit to allow any triggered compactions to complete.
- Env::Default()->SleepForMicroseconds(1000000);
- uint64_t size = Size(Key(0), Key(n));
- std::fprintf(stderr, "iter %3d => %7.3f MB [other %7.3f MB]\n", read + 1,
- size / 1048576.0, Size(Key(n), Key(kCount)) / 1048576.0);
- if (size <= initial_size / 10) {
- break;
- }
- }
- // Verify that the size of the key space not touched by the reads
- // is pretty much unchanged.
- const int64_t final_other_size = Size(Key(n), Key(kCount));
- ASSERT_LE(final_other_size, initial_other_size + 1048576);
- ASSERT_GE(final_other_size, initial_other_size / 5 - 1048576);
- }
- TEST_F(AutoCompactTest, ReadAll) { DoReads(kCount); }
- TEST_F(AutoCompactTest, ReadHalf) { DoReads(kCount / 2); }
- } // namespace leveldb
|