| /rocksdb-6.9/tools/block_cache_analyzer/ |
| D | block_cache_trace_analyzer.h | 43 std::map<std::string, std::map<TableReaderCaller, uint64_t>> 45 std::map<std::string, std::map<TableReaderCaller, uint64_t>> 49 std::map<TableReaderCaller, uint64_t> caller_num_access_map; 52 std::map<TableReaderCaller, std::map<uint64_t, uint64_t>> 57 std::map<uint64_t, uint64_t> reuse_distance_count; 61 std::map<TableReaderCaller, std::vector<uint64_t>> 333 const std::map<uint64_t, uint64_t> timeline, 334 std::map<std::string, std::map<uint64_t, uint64_t>>* 345 const std::map<std::string, std::map<uint64_t, uint64_t>>& label_data, 360 std::map<std::string, Features>* label_features, [all …]
|
| D | block_cache_trace_analyzer.cc | 411 std::map<uint64_t, std::map<std::string, std::map<uint64_t, double>>> in WriteMissRatioTimeline() 491 std::map<uint64_t, std::map<std::string, std::map<uint64_t, uint64_t>>> in WriteMissTimeline() 1282 std::map<TableReaderCaller, std::map<std::string, uint64_t>> in WritePercentAccessSummaryStats() 1322 std::map<uint32_t, std::map<std::string, uint64_t>> level_cf_accesses; in WriteDetailedPercentAccessSummaryStats() 1323 std::map<TraceType, std::map<std::string, uint64_t>> bt_cf_accesses; in WriteDetailedPercentAccessSummaryStats() 1393 std::map<std::string, std::map<uint64_t, uint64_t>> bt_access_nblocks; in WriteAccessCountSummaryStats() 1903 std::map<TableReaderCaller, std::map<TraceType, uint64_t>> in PrintStatsSummary() 1905 std::map<TableReaderCaller, std::map<uint32_t, uint64_t>> in PrintStatsSummary() 1915 std::map<TableReaderCaller, std::map<uint64_t, uint64_t>> in PrintStatsSummary() 1917 std::map<TableReaderCaller, std::map<uint64_t, uint64_t>> in PrintStatsSummary() [all …]
|
| /rocksdb-6.9/tools/ |
| D | ldb_cmd_impl.h | 22 const std::map<std::string, std::string>& options, 41 const std::map<std::string, std::string>& options, 54 const std::map<std::string, std::string>& options, 133 const std::map<std::string, std::string>& options, 278 const std::map<std::string, std::string>& options, 325 const std::map<std::string, std::string>& options, 379 const std::map<std::string, std::string>& options, 400 const std::map<std::string, std::string>& options, 433 const std::map<std::string, std::string>& options, 564 const std::map<std::string, std::string>& options, [all …]
|
| D | trace_analyzer_tool.h | 94 std::map<std::string, StatsUnit> a_key_stats; 95 std::map<uint64_t, uint64_t> a_count_stats; 96 std::map<uint64_t, uint64_t> a_key_size_stats; 97 std::map<uint64_t, uint64_t> a_value_size_stats; 98 std::map<uint32_t, uint32_t> a_qps_stats; 99 std::map<uint32_t, std::map<std::string, uint32_t>> a_qps_prefix_stats; 118 std::map<uint32_t, uint64_t> uni_key_num; 147 std::map<uint32_t, TraceStats> stats; 160 std::map<uint64_t, uint64_t> w_key_size_stats; // whole key space key size 162 std::map<uint32_t, uint32_t> cf_qps; [all …]
|
| D | ldb_cmd.cc | 841 const std::map<std::string, std::string>& options, in ParseBooleanOption() 866 const std::map<std::string, std::string>& options, in CompactorCommand() 935 const std::map<std::string, std::string>& options, in DBLoaderCommand() 1052 const std::map<std::string, std::string>& options, in ManifestDumpCommand() 1201 const std::map<std::string, std::string>& options, in FileChecksumDumpCommand() 1253 const std::map<std::string, std::string>& options, in ListColumnFamiliesCommand() 1286 const std::map<std::string, std::string>& options, in CreateColumnFamilyCommand() 1319 const std::map<std::string, std::string>& options, in DropColumnFamilyCommand() 1391 const std::map<std::string, std::string>& options, in InternalDumpCommand() 1532 const std::map<std::string, std::string>& options, in DBDumperCommand() [all …]
|
| /rocksdb-6.9/docs/_posts/ |
| D | 2015-07-17-spatial-indexing-in-rocksdb.markdown | 10 …velop a spatial database at Facebook. We needed to store and index Earth's map data. Before buildi… 14 …hing that surprised us was that our planet is not that big. Earth's entire map data can fit in mem… 16 …map renderer. As part of our project, we successfully loaded [Open Street Maps](https://www.openst… 18 …map data into a SQL-based database and then define map layers with SQL statements. To render a til… 20 …blob/master/include/rocksdb/utilities/spatial_db.h). The API is focused on map rendering use-case,… 22 …uilt. Each spatial index is defined by a bounding box and granularity. For map rendering, we creat… 28 "/data/map", { 37 …l indexes that will index the feature. In the loading phase we process the map style to determine … 74 Note: `Render()` function is not part of RocksDB. You will need to use one of many open source map …
|
| /rocksdb-6.9/include/rocksdb/utilities/ |
| D | ldb_cmd.h | 64 std::map<std::string, std::string> option_map; 101 const std::map<std::string, std::string>& TEST_GetOptionMap() { in TEST_GetOptionMap() 141 std::map<std::string, ColumnFamilyHandle*> cf_handles_; 171 const std::map<std::string, std::string> option_map_; 187 LDBCommand(const std::map<std::string, std::string>& options, 222 bool ParseIntOption(const std::map<std::string, std::string>& options, 226 bool ParseStringOption(const std::map<std::string, std::string>& options, 235 bool ParseBooleanOption(const std::map<std::string, std::string>& options, 247 bool IsKeyHex(const std::map<std::string, std::string>& options, 254 bool IsValueHex(const std::map<std::string, std::string>& options,
|
| /rocksdb-6.9/utilities/write_batch_with_index/ |
| D | write_batch_with_index_test.cc | 579 KVMap map; in TEST_F() local 687 KVMap map; in TEST_F() local 745 KVMap map; in TEST_F() local 746 map["b"] = ""; in TEST_F() 866 KVMap map; in TEST_F() local 899 KVMap map; in TEST_F() local 900 map["b"] = ""; in TEST_F() 1407 KVMap map; in TEST_F() local 1475 KVMap map; in TEST_F() local 1801 KVMap map; in TEST_F() local [all …]
|
| /rocksdb-6.9/utilities/simulator_cache/ |
| D | cache_simulator.h | 52 const std::map<uint64_t, uint64_t>& num_accesses_timeline() const { in num_accesses_timeline() 56 const std::map<uint64_t, uint64_t>& num_misses_timeline() const { in num_misses_timeline() 78 std::map<uint64_t, uint64_t> num_accesses_timeline_; 79 std::map<uint64_t, uint64_t> num_misses_timeline_; 186 std::map<std::string, InsertResult> row_key_status; 190 std::map<uint64_t, GetRequestStatus> getid_status_map_; 214 const std::map<CacheConfiguration, 226 std::map<CacheConfiguration, std::vector<std::shared_ptr<CacheSimulator>>>
|
| /rocksdb-6.9/utilities/blob_db/ |
| D | blob_db_test.cc | 314 std::map<std::string, std::string> data; in TEST_F() 331 std::map<std::string, std::string> data; in TEST_F() 357 std::map<std::string, std::string> data; in TEST_F() 379 std::map<std::string, std::string> data; in TEST_F() 451 std::map<std::string, std::string> data; in TEST_F() 468 std::map<std::string, std::string> data; in TEST_F() 502 std::map<std::string, std::string> data; in TEST_F() 521 std::map<std::string, std::string> data; in TEST_F() 543 std::map<std::string, std::string> data; in TEST_F() 575 std::map<std::string, std::string> data; in TEST_F() [all …]
|
| /rocksdb-6.9/utilities/transactions/ |
| D | write_unprepared_txn.h | 59 const std::map<SequenceNumber, size_t>& unprep_seqs, in WriteUnpreparedTxnReadCallback() 91 const std::map<SequenceNumber, size_t>& unprep_seqs, in CalcMaxVisibleSeq() 103 const std::map<SequenceNumber, size_t>& unprep_seqs_; 214 const std::map<SequenceNumber, size_t>& GetUnpreparedSequenceNumbers(); 242 std::map<SequenceNumber, size_t> unprep_seqs_; 273 std::map<SequenceNumber, size_t> unprep_seqs_; 279 SavePoint(const std::map<SequenceNumber, size_t>& seqs, in SavePoint()
|
| D | write_unprepared_txn_db.cc | 69 std::map<uint32_t, const Comparator*>& comparators_; in RollbackRecoveredTransaction() 70 std::map<uint32_t, ColumnFamilyHandle*>& handles_; in RollbackRecoveredTransaction() 72 std::map<uint32_t, CFKeys> keys_; in RollbackRecoveredTransaction() 76 std::map<uint32_t, const Comparator*>& comparators, in RollbackRecoveredTransaction() 77 std::map<uint32_t, ColumnFamilyHandle*>& handles, in RollbackRecoveredTransaction() 246 std::map<SequenceNumber, SequenceNumber> ordered_seq_cnt; in Initialize()
|
| D | write_prepared_txn_db.h | 434 std::shared_ptr<std::map<uint32_t, const Comparator*>> GetCFComparatorMap() { in GetCFComparatorMap() 437 std::shared_ptr<std::map<uint32_t, ColumnFamilyHandle*>> GetCFHandleMap() { in GetCFHandleMap() 771 std::map<SequenceNumber, std::vector<SequenceNumber>> old_commit_map_; 792 std::shared_ptr<std::map<uint32_t, const Comparator*>> cf_map_; 796 std::shared_ptr<std::map<uint32_t, ColumnFamilyHandle*>> handle_map_; 1044 explicit SubBatchCounter(std::map<uint32_t, const Comparator*>& comparators) in SubBatchCounter() 1046 std::map<uint32_t, const Comparator*>& comparators_; 1048 std::map<uint32_t, CFKeys> keys_;
|
| D | write_prepared_txn.cc | 257 std::map<uint32_t, const Comparator*>& comparators_; in RollbackInternal() 258 std::map<uint32_t, ColumnFamilyHandle*>& handles_; in RollbackInternal() 260 std::map<uint32_t, CFKeys> keys_; in RollbackInternal() 266 std::map<uint32_t, const Comparator*>& comparators, in RollbackInternal() 267 std::map<uint32_t, ColumnFamilyHandle*>& handles, in RollbackInternal()
|
| /rocksdb-6.9/java/src/test/java/org/rocksdb/util/ |
| D | BytewiseComparatorTest.java | 226 final TreeMap<String, String> map = new TreeMap<>(javaComparator); in doRandomIterationTest() local 241 map.put(key, key); in doRandomIterationTest() 246 if (map.containsKey(key)) { in doRandomIterationTest() 247 map.remove(key); in doRandomIterationTest() 260 final KVIter<String, String> result_iter = new KVIter<>(map); in doRandomIterationTest() 318 if (!map.containsKey(key)) { in doRandomIterationTest() 321 assertArrayEquals(bytes(map.get(key)), result); in doRandomIterationTest() 399 public KVIter(final TreeMap<K, V> map) { 401 entries.addAll(map.entrySet()); 402 this.comparator = map.comparator();
|
| /rocksdb-6.9/db/ |
| D | internal_stats.h | 47 bool (InternalStats::*handle_map)(std::map<std::string, std::string>* props); 91 static const std::map<LevelStatType, LevelStat> compaction_level_stats; 387 std::map<std::string, std::string>* value); 405 void DumpCFMapStats(std::map<std::string, std::string>* cf_stats); 407 std::map<int, std::map<LevelStatType, double>>* level_stats, 410 std::map<int, std::map<LevelStatType, double>>* priorities_stats); 411 void DumpCFMapStatsIOStalls(std::map<std::string, std::string>* cf_stats); 522 bool HandleCFMapStats(std::map<std::string, std::string>* compaction_stats); 681 std::map<std::string, std::string>* /*value*/) { in GetMapProperty()
|
| D | comparator_db_test.cc | 28 explicit KVIter(const stl_wrappers::KVMap* map) in KVIter() argument 29 : map_(map), iter_(map_->end()) {} in KVIter() 77 stl_wrappers::KVMap map((stl_wrappers::LessOfComparator(kTestComparator))); in DoRandomIteraratorTest() 90 map[key] = key; in DoRandomIteraratorTest() 95 if (map.find(key) != map.end()) { in DoRandomIteraratorTest() 96 map.erase(key); in DoRandomIteraratorTest() 106 std::unique_ptr<Iterator> result_iter(new KVIter(&map)); in DoRandomIteraratorTest() 157 if (map.find(key) == map.end()) { in DoRandomIteraratorTest() 160 ASSERT_EQ(map[key], result); in DoRandomIteraratorTest()
|
| D | internal_stats.cc | 175 std::map<LevelStatType, double> level_stats; in PrintLevelStats() 590 std::map<std::string, std::string>* cf_stats) { in HandleCFMapStats() 1082 std::map<std::string, std::string>* cf_stats) { in DumpCFMapStats() 1084 std::map<int, std::map<LevelStatType, double>> levels_stats; in DumpCFMapStats() 1102 std::map<int, std::map<LevelStatType, double>>* levels_stats, in DumpCFMapStats() 1152 std::map<LevelStatType, double> level_stats; in DumpCFMapStats() 1163 std::map<LevelStatType, double> sum_stats; in DumpCFMapStats() 1170 std::map<int, std::map<LevelStatType, double>>* priorities_stats) { in DumpCFMapStatsByPriority() 1184 std::map<std::string, std::string>* cf_stats) { in DumpCFMapStatsIOStalls() 1227 std::map<int, std::map<LevelStatType, double>> levels_stats; in DumpCFStatsNoFileHistogram() [all …]
|
| D | external_sst_file_test.cc | 85 std::map<std::string, std::string>* true_data) { in GenerateOneExternalFile() 136 std::map<std::string, std::string>* true_data = nullptr, in GenerateAndAddExternalFile() 1139 std::map<std::string, std::string> true_data; in TEST_F() 1237 std::map<std::string, std::string> true_data; in TEST_P() 1480 std::map<std::string, std::string> true_data; in TEST_F() 1745 std::map<std::string, std::string> true_data; in TEST_P() 1781 std::map<std::string, std::string> true_data; in TEST_P() 1848 std::map<std::string, std::string> true_data; in TEST_P() 1908 std::map<std::string, std::string> true_data; in TEST_P() 2257 std::map<std::string, std::string> true_data; in TEST_P() [all …]
|
| /rocksdb-6.9/monitoring/ |
| D | thread_status_impl.cc | 87 std::map<std::string, uint64_t> ThreadStatus::InterpretOperationProperties( in InterpretOperationProperties() 101 std::map<std::string, uint64_t> property_map; in InterpretOperationProperties() 156 std::map<std::string, uint64_t> ThreadStatus::InterpretOperationProperties( 159 return std::map<std::string, uint64_t>();
|
| D | in_memory_stats_history.h | 58 const std::map<std::string, uint64_t>& GetStatsMap() const override; 68 std::map<std::string, uint64_t> stats_map_;
|
| /rocksdb-6.9/java/rocksjni/ |
| D | compaction_job_info.cc | 145 auto* map = &compact_job_info->table_properties; in Java_org_rocksdb_CompactionJobInfo_tableProperties() local 148 env, static_cast<uint32_t>(map->size())); in Java_org_rocksdb_CompactionJobInfo_tableProperties() 184 if (!ROCKSDB_NAMESPACE::HashMapJni::putAll(env, jhash_map, map->begin(), in Java_org_rocksdb_CompactionJobInfo_tableProperties() 185 map->end(), fn_map_kv)) { in Java_org_rocksdb_CompactionJobInfo_tableProperties()
|
| D | wal_filter_jnicallback.h | 27 const std::map<uint32_t, uint64_t>& cf_lognumber_map, 28 const std::map<std::string, uint32_t>& cf_name_id_map);
|
| /rocksdb-6.9/build_tools/ |
| D | amalgamate.py | 100 include_paths = list(map(path.abspath, args.include_paths or [])) 101 public_include_paths = list(map(path.abspath, args.public_include_paths or [])) 102 excluded.update(map(path.abspath, args.excluded or []))
|
| /rocksdb-6.9/include/rocksdb/ |
| D | wal_filter.h | 50 const std::map<uint32_t, uint64_t>& /*cf_lognumber_map*/, in ColumnFamilyLogNumberMap() 51 const std::map<std::string, uint32_t>& /*cf_name_id_map*/) {} in ColumnFamilyLogNumberMap()
|