Home
last modified time | relevance | path

Searched refs:Properties (Results 1 – 19 of 19) sorted by relevance

/rocksdb-6.9/db/
Dinternal_stats.cc359 {DB::Properties::kLevelStats,
361 {DB::Properties::kStats,
363 {DB::Properties::kCFStats,
369 {DB::Properties::kCFFileHistogram,
372 {DB::Properties::kDBStats,
374 {DB::Properties::kSSTables,
418 {DB::Properties::kEstimateNumKeys,
427 {DB::Properties::kNumSnapshots,
436 {DB::Properties::kNumLiveVersions,
451 {DB::Properties::kBaseLevel,
[all …]
Ddb_properties_test.cc142 ASSERT_TRUE(db_->GetAggregatedIntProperty(DB::Properties::kSizeAllMemTables, in TEST_F()
153 DB::Properties::kEstimateTableReadersMem, &before_flush_trm)); in TEST_F()
159 DB::Properties::kEstimateTableReadersMem, &after_flush_trm)); in TEST_F()
368 db_->GetProperty(DB::Properties::kAggregatedTableProperties, &property); in TEST_F()
634 handles_[1], DB::Properties::kNumImmutableMemTableFlushed, &num)); in TEST_F()
688 handles_[1], DB::Properties::kNumImmutableMemTableFlushed, &num)); in TEST_F()
1432 DB::Properties::kEstimateOldestKeyTime, &oldest_key_time)); in TEST_F()
1500 bool ok = db->GetIntProperty(DB::Properties::kTotalSstFilesSize, in TEST_F()
1608 db_->GetIntProperty(DB::Properties::kBlockCacheCapacity, &value)); in TEST_F()
1616 db_->GetIntProperty(DB::Properties::kBlockCacheCapacity, &value)); in TEST_F()
[all …]
Dexternal_sst_file_test.cc1854 db_->GetIntProperty(DB::Properties::kNumEntriesActiveMemTable, in TEST_P()
1864 db_->GetIntProperty(DB::Properties::kNumEntriesActiveMemTable, in TEST_P()
1872 db_->GetIntProperty(DB::Properties::kNumEntriesActiveMemTable, in TEST_P()
1880 db_->GetIntProperty(DB::Properties::kNumEntriesActiveMemTable, in TEST_P()
1888 db_->GetIntProperty(DB::Properties::kNumEntriesActiveMemTable, in TEST_P()
1896 db_->GetIntProperty(DB::Properties::kNumEntriesActiveMemTable, in TEST_P()
Ddb_flush_test.cc311 ASSERT_TRUE(db_->GetIntProperty(DB::Properties::kBackgroundErrors, in TEST_F()
Ddb_compaction_test.cc4335 db_->GetProperty(DB::Properties::kNumEntriesActiveMemTable, &num_keys_in_memtable); in TEST_F()
4378 ASSERT_TRUE(db_->GetIntProperty(DB::Properties::kNumEntriesImmMemTables, in TEST_F()
4381 ASSERT_TRUE(db_->GetIntProperty(DB::Properties::kNumEntriesActiveMemTable, in TEST_F()
4818 EXPECT_TRUE(dbfull()->GetProperty(DB::Properties::kLiveSstFilesSize, &prop)); in TEST_F()
Ddb_test.cc4191 db_->GetIntProperty(DB::Properties::kNumRunningFlushes, &num_running_flushes); in TEST_F()
4201 db_->GetIntProperty(DB::Properties::kNumRunningFlushes, &num_running_flushes); in TEST_F()
4251 db_->GetIntProperty(DB::Properties::kNumRunningCompactions, in TEST_P()
4268 db_->GetIntProperty(DB::Properties::kNumRunningCompactions, in TEST_P()
Dcolumn_family_test.cc610 db_->GetAggregatedIntProperty(DB::Properties::kEstimateTableReadersMem, &pv); in TEST_P()
/rocksdb-6.9/utilities/memory/
Dmemory_util.cc23 if (db->GetAggregatedIntProperty(DB::Properties::kSizeAllMemTables, in GetApproximateMemoryUsageByType()
27 if (db->GetAggregatedIntProperty(DB::Properties::kCurSizeAllMemTables, in GetApproximateMemoryUsageByType()
36 if (db->GetAggregatedIntProperty(DB::Properties::kEstimateTableReadersMem, in GetApproximateMemoryUsageByType()
/rocksdb-6.9/java/src/test/java/org/rocksdb/
DColumnFamilyOptionsTest.java14 import java.util.Properties;
42 Properties properties = new Properties(); in getColumnFamilyOptionsFromProps()
60 final Properties properties = new Properties(); in failColumnFamilyOptionsFromPropsWithIllegalValue()
81 new Properties())) { in failColumnFamilyOptionsFromPropsWithEmptyProps()
DDBOptionsTest.java41 final Properties properties = new Properties(); in getDBOptionsFromProps()
56 final Properties properties = new Properties(); in failDBOptionsFromPropsWithIllegalValue()
74 new Properties())) { in failDBOptionsFromPropsWithEmptyProps()
/rocksdb-6.9/java/src/main/java/org/rocksdb/
DColumnFamilyOptions.java10 import java.util.Properties;
98 final Properties properties) { in getColumnFamilyOptionsFromProps()
DDBOptions.java83 final Properties properties) { in getDBOptionsFromProps()
/rocksdb-6.9/utilities/checkpoint/
Dcheckpoint_impl.cc220 if (!db_->GetIntProperty(DB::Properties::kMinLogNumberToKeep, in CreateCustomCheckpoint()
/rocksdb-6.9/db/db_impl/
Ddb_impl.cc825 GetPropertyInfo(DB::Properties::kCFStats); in DumpStats()
828 GetPropertyInfo(DB::Properties::kDBStats); in DumpStats()
838 *db_property_info, DB::Properties::kDBStats, &stats); in DumpStats()
842 *cf_property_info, DB::Properties::kCFStatsNoFileHistogram, &stats); in DumpStats()
848 *cf_property_info, DB::Properties::kCFFileHistogram, &stats); in DumpStats()
/rocksdb-6.9/include/rocksdb/
Ddb.h703 struct Properties { struct
/rocksdb-6.9/utilities/transactions/
Doptimistic_transaction_test.cc389 ASSERT_TRUE(txn_db->GetIntProperty(DB::Properties::kNumImmutableMemTable, in TEST_P()
Dwrite_prepared_transaction_test.cc849 ASSERT_TRUE(db->GetIntProperty(DB::Properties::kNumImmutableMemTable, in TEST_P()
/rocksdb-6.9/utilities/blob_db/
Dblob_db_impl.cc1182 bool ok = GetIntProperty(DB::Properties::kLiveSstFilesSize, &live_sst_size); in UpdateLiveSSTSize()
Dblob_db_test.cc998 ASSERT_TRUE(blob_db_->GetIntProperty(DB::Properties::kTotalSstFilesSize, in TEST_F()