Home
last modified time | relevance | path

Searched refs:IO_LOW (Results 1 – 9 of 9) sorted by relevance

/rocksdb-6.9/util/
Drate_limiter.cc84 for (auto& r : queue_[Env::IO_LOW]) { in ~GenericRateLimiter()
148 (!queue_[Env::IO_LOW].empty() && in Request()
149 &r == queue_[Env::IO_LOW].front()))) { in Request()
177 (!queue_[Env::IO_LOW].empty() && in Request()
178 &r == queue_[Env::IO_LOW].front())); in Request()
182 (!queue_[Env::IO_LOW].empty() && in Request()
183 leader_ == queue_[Env::IO_LOW].front())); in Request()
201 (queue_[Env::IO_LOW].empty() || in Request()
202 &r != queue_[Env::IO_LOW].front())); in Request()
205 } else if (!queue_[Env::IO_LOW].empty()) { in Request()
[all …]
Drate_limiter.h50 return total_bytes_through_[Env::IO_LOW] +
60 return total_requests_[Env::IO_LOW] + total_requests_[Env::IO_HIGH];
Drate_limiter_test.cc88 arg->limiter->Request(r.Uniform(arg->request_size - 1) + 1, Env::IO_LOW, in TEST_F()
/rocksdb-6.9/file/
Drandom_access_file_reader.cc52 Env::IOPriority::IO_LOW, stats_, RateLimiter::OpType::kRead); in Read()
103 Env::IOPriority::IO_LOW, stats_, in Read()
/rocksdb-6.9/include/rocksdb/
Denv.h384 enum IOPriority { IO_LOW = 0, IO_HIGH = 1, IO_TOTAL = 2 }; enumerator
/rocksdb-6.9/db/compaction/
Dcompaction_job.cc1527 writable_file->SetIOPriority(Env::IOPriority::IO_LOW); in OpenCompactionOutputFile()
/rocksdb-6.9/utilities/backupable/
Dbackupable_db.cc1367 rate_limiter->Request(data.size(), Env::IO_LOW, nullptr /* stats */, in CopyOrCreateFile()
/rocksdb-6.9/db/
Ddb_test2.cc2897 options.rate_limiter->GetTotalBytesThrough(Env::IO_LOW); in TEST_F()
2916 options.rate_limiter->GetTotalBytesThrough(Env::IO_LOW))); in TEST_F()
/rocksdb-6.9/env/
Denv_test.cc1638 return Env::IOPriority::IO_LOW; in TEST_P()