| /rocksdb-6.9/utilities/blob_db/ |
| D | blob_db_test.cc | 226 std::vector<KeyVersion> versions; in VerifyBaseDB() local 251 std::vector<KeyVersion> versions; in VerifyBaseDBBlobIndex() local 1092 versions[key] = in TEST_F() 1097 VerifyBaseDB(versions); in TEST_F() 1193 std::vector<KeyVersion> versions; in TEST_F() local 1197 for (auto &version : versions) { in TEST_F() 1228 std::vector<KeyVersion> versions; in TEST_F() local 1230 ASSERT_EQ(2, versions.size()); in TEST_F() 1237 ASSERT_EQ(2, versions.size()); in TEST_F() 1247 ASSERT_EQ(1, versions.size()); in TEST_F() [all …]
|
| /rocksdb-6.9/db/ |
| D | import_column_family_job.h | 23 ImportColumnFamilyJob(Env* env, VersionSet* versions, ColumnFamilyData* cfd, in ImportColumnFamilyJob() argument 29 versions_(versions), in ImportColumnFamilyJob()
|
| D | memtable_list_test.cc | 101 VersionSet versions(dbname, &immutable_db_options, env_options, in Mock_InstallMemtableFlushResults() local 109 EXPECT_OK(versions.Recover(cf_descs, false)); in Mock_InstallMemtableFlushResults() 112 auto column_family_set = versions.GetColumnFamilySet(); in Mock_InstallMemtableFlushResults() 123 cfd, mutable_cf_options, m, &dummy_prep_tracker, &versions, &mutex, in Mock_InstallMemtableFlushResults() 149 VersionSet versions(dbname, &immutable_db_options, env_options, in Mock_InstallMemtableAtomicFlushResults() local 156 EXPECT_OK(versions.Recover(cf_descs, false)); in Mock_InstallMemtableAtomicFlushResults() 160 auto column_family_set = versions.GetColumnFamilySet(); in Mock_InstallMemtableAtomicFlushResults() 183 &lists, cfds, mutable_cf_options_list, mems_list, &versions, &mutex, in Mock_InstallMemtableAtomicFlushResults()
|
| D | external_sst_file_ingestion_job.h | 71 Env* env, VersionSet* versions, ColumnFamilyData* cfd, in ExternalSstFileIngestionJob() argument 78 versions_(versions), in ExternalSstFileIngestionJob()
|
| D | version_set.cc | 3647 autovector<Version*> versions; in ProcessManifestWrites() local 3705 version = versions[i]; in ProcessManifestWrites() 3718 versions.push_back(version); in ProcessManifestWrites() 3738 for (auto v : versions) { in ProcessManifestWrites() 3753 for (auto v : versions) { in ProcessManifestWrites() 3841 ColumnFamilyData* cfd = versions[i]->cfd_; in ProcessManifestWrites() 3977 for (const auto version : versions) { in ProcessManifestWrites() 4007 AppendVersion(cfd, versions[i]); in ProcessManifestWrites() 4021 for (auto v : versions) { in ProcessManifestWrites() 4871 status = versions.Recover(dummy); in ReduceNumberOfLevels() [all …]
|
| D | transaction_log_impl.cc | 19 std::unique_ptr<VectorLogPtr> files, VersionSet const* const versions, in TransactionLogIteratorImpl() argument 32 versions_(versions), in TransactionLogIteratorImpl()
|
| D | db_wal_test.cc | 929 std::unique_ptr<VersionSet> versions; in FillData() local 933 versions.reset(new VersionSet(test->dbname_, &db_options, env_options, in FillData() 958 uint64_t seq = versions->LastSequence() + 1; in FillData() 963 versions->SetLastAllocatedSequence(seq); in FillData() 964 versions->SetLastPublishedSequence(seq); in FillData() 965 versions->SetLastSequence(seq); in FillData()
|
| D | flush_job.cc | 89 const FileOptions& file_options, VersionSet* versions, in FlushJob() argument 107 versions_(versions), in FlushJob()
|
| D | flush_job.h | 65 VersionSet* versions, InstrumentedMutex* db_mutex,
|
| D | transaction_log_impl.h | 65 std::unique_ptr<VectorLogPtr> files, VersionSet const* const versions,
|
| /rocksdb-6.9/utilities/transactions/ |
| D | write_prepared_transaction_test.cc | 516 std::vector<KeyVersion> versions; in VerifyInternalKeys() local 520 &versions)); in VerifyInternalKeys() 522 for (size_t i = 0; i < versions.size(); i++) { in VerifyInternalKeys() 526 if (versions[i].type != kTypeDeletion && in VerifyInternalKeys() 527 versions[i].type != kTypeSingleDeletion) { in VerifyInternalKeys() 2332 std::vector<KeyVersion> versions; in TEST_P() local 2343 versions.emplace_back(kv); in TEST_P() 2345 std::reverse(std::begin(versions), std::end(versions)); in TEST_P() 2346 VerifyInternalKeys(versions); in TEST_P() 2352 VerifyInternalKeys(versions); in TEST_P() [all …]
|
| /rocksdb-6.9/tools/ |
| D | ldb_cmd_test.cc | 193 VersionSet versions(dbname_, &immutable_db_options, sopt, tc.get(), &wb, in VerifyChecksumInManifest() local 197 s = versions.ListColumnFamilies(&cf_name_list, dbname_, in VerifyChecksumInManifest() 205 s = versions.Recover(cf_list, true); in VerifyChecksumInManifest() 208 s = versions.GetLiveFilesChecksumInfo(checksum_list.get()); in VerifyChecksumInManifest()
|
| D | ldb_cmd.cc | 1026 VersionSet versions(dbname, &immutable_db_options, sopt, tc.get(), &wb, &wc, in DumpManifestFile() local 1028 Status s = versions.DumpManifest(options, file, verbose, hex, json); in DumpManifestFile() 1168 VersionSet versions(dbname, &immutable_db_options, sopt, tc.get(), &wb, &wc, in GetLiveFilesChecksumInfoFromVersionSet() local 1171 s = versions.ListColumnFamilies(&cf_name_list, db_path, in GetLiveFilesChecksumInfoFromVersionSet() 1178 s = versions.Recover(cf_list, true); in GetLiveFilesChecksumInfoFromVersionSet() 1181 s = versions.GetLiveFilesChecksumInfo(checksum_list); in GetLiveFilesChecksumInfoFromVersionSet() 1880 VersionSet versions(db_path_, &db_options, soptions, tc.get(), &wb, &wc, in GetOldNumOfLevels() local 1889 Status st = versions.Recover(dummy); in GetOldNumOfLevels() 1894 auto default_cfd = versions.GetColumnFamilySet()->GetDefault(); in GetOldNumOfLevels()
|
| /rocksdb-6.9/db_stress_tool/ |
| D | cf_consistency_stress.cc | 465 std::vector<KeyVersion> versions; in VerifyDb() local 469 kMaxNumIKeys, &versions); in VerifyDb() 481 for (const KeyVersion& kv : versions) { in VerifyDb()
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2017-06-29-rocksdb-5-5-1-released.markdown | 15 * Add debugging function `GetAllKeyVersions` to see internal versions of a range of keys.
|
| D | 2018-02-05-rocksdb-5-10-2-released.markdown | 14 …keys were skipped during iterations (e.g., due to being tombstones or duplicate versions of a key).
|
| D | 2018-11-21-delete-range.markdown | 98 that newer versions of a key are always in a higher level to prevent the seqnum 252 … in memory. We believe these setup details should not affect relative performance between versions.
|
| /rocksdb-6.9/build_tools/ |
| D | build_detect_platform | 395 if hash brew 2>/dev/null && brew ls --versions jemalloc > /dev/null; then 396 JEMALLOC_VER=$(brew ls --versions jemalloc | tail -n 1 | cut -f 2 -d ' ')
|
| /rocksdb-6.9/db/compaction/ |
| D | compaction_job.h | 67 const FileOptions& file_options, VersionSet* versions,
|
| D | compaction_job.cc | 298 const FileOptions& file_options, VersionSet* versions, in CompactionJob() argument 320 versions_(versions), in CompactionJob()
|
| /rocksdb-6.9/docs/ |
| D | README.md | 19 > Ruby >= 2.2 is required for the gems. On the latest versions of Mac OS X, Ruby 2.0 is the
|
| /rocksdb-6.9/ |
| D | INSTALL.md | 109 … * run `brew tap homebrew/versions; brew install gcc48 --use-llvm` to install gcc 4.8 (or higher).
|
| D | COPYING | 237 9. The Free Software Foundation may publish revised and/or new versions 238 of the General Public License from time to time. Such new versions will
|
| D | HISTORY.md | 5 …2 to 4. SST files generated with the new default can be read by RocksDB versions 5.16 and newer, a… 308 * Fix JEMALLOC_CXX_THROW macro missing from older Jemalloc versions, causing build failures on some… 384 …ded when possible. This is behavior change compared to previous RocksDB versions, where Flush call… 502 …stalling can be avoided when possible. Note this delay is not present in previous RocksDB versions. 543 …keys were skipped during iterations (e.g., due to being tombstones or duplicate versions of a key). 640 * Add debugging function `GetAllKeyVersions` to see internal versions of a range of keys. 939 …he wants. As a general guideline, newer versions have more features, but might not be readable by …
|
| D | CMakeCache.txt | 340 //Build shared versions of the RocksDB libraries
|