Home
last modified time | relevance | path

Searched refs:counters (Results 1 – 8 of 8) sorted by relevance

/rocksdb-6.9/db/
Dmerge_test.cc257 counters.assert_set("a", 1); in testCounters()
263 counters.assert_remove("b"); in testCounters()
268 counters.assert_add("a", 2); in testCounters()
280 counters.assert_add("b", i); in testCounters()
302 counters.assert_remove("z"); in testSuccessiveMerge()
307 counters.assert_add("z", i); in testSuccessiveMerge()
332 counters->assert_add("b", i); in testPartialMerge()
351 counters->assert_add("c", i); in testPartialMerge()
406 Counters counters(db, 0); in runTest() local
451 counters.add("test-key", 1); in runTest()
[all …]
/rocksdb-6.9/docs/_posts/
D2014-05-14-lock.markdown16 * Increase or decrease reference counters of mem tables and SST tables
27 …Consolidate reference counters and introduce "super version". For every read operation, mutex was …
29counters to all those mem table and SST tables, so that readers only need to increase the referenc…
31 2. We replace some reference counters to stc::atomic objects, so that decreasing reference count of…
45 …e sorting. Now, instead of doing that, we simply increase the reference counters of them, and rele…
D2018-02-05-rocksdb-5-10-2-released.markdown15 * Add PerfContext counters, `key_lock_wait_count` and `key_lock_wait_time`, which measure the numbe…
D2017-05-14-core-local-stats.markdown10 …consists of several atomics to represent things like min/max/per-bucket counters. These statistics…
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1368 ReportFileOpCounters* counters) in NewSequentialFile() argument
1369 : target_(std::move(target)), counters_(counters) {} in NewSequentialFile()
1385 r->reset(new CountingFile(std::move(*r), counters())); in NewSequentialFile()
1400 ReportFileOpCounters* counters) in NewRandomAccessFile() argument
1415 r->reset(new CountingFile(std::move(*r), counters())); in NewRandomAccessFile()
1429 ReportFileOpCounters* counters) in NewWritableFile() argument
1449 r->reset(new CountingFile(std::move(*r), counters())); in NewWritableFile()
1455 ReportFileOpCounters* counters() { return &counters_; } in counters() function in ROCKSDB_NAMESPACE::__anon8e8b84b20111::ReportFileOpEnv
2119 ReportFileOpCounters* counters = env->counters(); in Report() local
6629 std::vector<uint32_t> counters(FLAGS_numdistinct, 0); in RandomReplaceKeys() local
[all …]
/rocksdb-6.9/include/rocksdb/
Dfile_system.h117 std::map<std::string, uint64_t> counters; member
125 counters.emplace(name, value); in AddCounter()
131 for (auto counter : counters) { in ToString()
/rocksdb-6.9/
DUSERS.md61 …as the storage layer for their core key-value storage, high-performance counters and time-windowed…
DHISTORY.md367 … divided into two counters `NO_ITERATOR_CREATED` and `NO_ITERATOR_DELETE`. Both of them are only i…
454 * Touch-up to write-related counters in PerfContext. New counters added: write_scheduling_flushes_c…
544 * Add PerfContext counters, `key_lock_wait_count` and `key_lock_wait_time`, which measure the numbe…
1106 * Add more counters to perf context.