Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 13 of 13) sorted by relevance

/rocksdb-6.9/util/
Dthread_list_test.cc113 for (int stage = 0; stage != ThreadStatus::NUM_OP_STAGES; ++stage) { in TEST_F() local
114 ASSERT_EQ(global_op_stage_table[stage].stage, stage); in TEST_F()
115 ASSERT_EQ(global_op_stage_table[stage].name, in TEST_F()
117 ThreadStatus::OperationStage(stage))); in TEST_F()
Dthread_operation.h45 const ThreadStatus::OperationStage stage; member
/rocksdb-6.9/monitoring/
Dthread_status_impl.cc43 ThreadStatus::OperationStage stage) { in GetOperationStageName() argument
44 if (stage < 0 || stage >= NUM_OP_STAGES) { in GetOperationStageName()
47 return global_op_stage_table[stage].name; in GetOperationStageName()
Dthread_status_util.cc71 ThreadStatus::OperationStage stage) { in SetThreadOperationStage() argument
78 return thread_updater_local_cache_->SetThreadOperationStage(stage); in SetThreadOperationStage()
157 ThreadStatus::OperationStage stage) { in AutoThreadOperationStageUpdater() argument
158 prev_stage_ = ThreadStatusUtil::SetThreadOperationStage(stage); in AutoThreadOperationStageUpdater()
Dthread_status_util.h63 ThreadStatus::OperationStage stage);
125 ThreadStatus::OperationStage stage);
Dthread_status_updater.cc133 ThreadStatus::OperationStage stage) { in SetThreadOperationStage() argument
138 return data->operation_stage.exchange(stage, std::memory_order_relaxed); in SetThreadOperationStage()
Dthread_status_updater.h155 const ThreadStatus::OperationStage stage);
/rocksdb-6.9/docs/_posts/
D2015-10-27-getthreadlist.markdown118 …f 4883044 bytes. This indicates the compaction is about to complete. The stage property indicates…
180 // An integer showing the current stage where the thread is involved
D2017-12-19-write-prepared-txn.markdown16 …at the commit phase become lightweight and fast. 2PC is composed of Write stage, where the transac…
/rocksdb-6.9/include/rocksdb/
Dthread_status.h172 static const std::string& GetOperationStageName(OperationStage stage);
/rocksdb-6.9/java/
DRELEASE.md53 This command will [stage the JAR artifacts on the Sonatype staging repository](http://central.sonat…
/rocksdb-6.9/tools/
Ddb_bench_tool.cc1700 void CreateNewCf(ColumnFamilyOptions options, int64_t stage) { in CreateNewCf()
1702 if ((stage + 1) * num_hot <= num_created) { in CreateNewCf()
4390 int64_t stage = 0; in DoWrite() local
4393 if (duration.GetStage() != stage) { in DoWrite()
4394 stage = duration.GetStage(); in DoWrite()
4396 db_.CreateNewCf(open_options_, stage); in DoWrite()
4399 db.CreateNewCf(open_options_, stage); in DoWrite()
/rocksdb-6.9/
DHISTORY.md929 - The stage of the current thread operation.