Home
last modified time | relevance | path

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

/rocksdb-6.9/env/
Denv_posix.cc346 void LowerThreadPoolIOPriority(Priority pool = LOW) override { in LowerThreadPoolIOPriority() argument
347 assert(pool >= Priority::BOTTOM && pool <= Priority::HIGH); in LowerThreadPoolIOPriority()
349 thread_pools_[pool].LowerIOPriority(); in LowerThreadPoolIOPriority()
351 (void)pool; in LowerThreadPoolIOPriority()
355 void LowerThreadPoolCPUPriority(Priority pool = LOW) override { in LowerThreadPoolCPUPriority() argument
356 assert(pool >= Priority::BOTTOM && pool <= Priority::HIGH); in LowerThreadPoolCPUPriority()
358 thread_pools_[pool].LowerCPUPriority(); in LowerThreadPoolCPUPriority()
360 (void)pool; in LowerThreadPoolCPUPriority()
Dcomposite_env_wrapper.h550 void LowerThreadPoolIOPriority(Priority pool = LOW) override {
551 env_target_->LowerThreadPoolIOPriority(pool);
554 void LowerThreadPoolCPUPriority(Priority pool = LOW) override {
555 env_target_->LowerThreadPoolCPUPriority(pool);
/rocksdb-6.9/utilities/
Denv_librados.md12 …read/write operation to the RADOS cluster assigned by config_path. Default pool is db_name+"_pool".
17 - db_pool. Rather than using default pool, users could set their own db pool name
19 - wal_pool. Corresponding pool name for WAL files. Default value is db_name+"_wal_pool"
/rocksdb-6.9/docs/_posts/
D2017-07-25-rocksdb-5-6-1-released.markdown9 …hread pool is no longer supported by setting `max_background_flushes=0`. Instead, users can achiev…
D2017-09-28-rocksdb-5-8-released.markdown16 * Universal compactions including the bottom level can be executed in a dedicated thread pool. This…
/rocksdb-6.9/include/rocksdb/
Denv.h1343 void LowerThreadPoolIOPriority(Priority pool = LOW) override {
1344 target_->LowerThreadPoolIOPriority(pool);
1347 void LowerThreadPoolCPUPriority(Priority pool = LOW) override {
1348 target_->LowerThreadPoolCPUPriority(pool);
/rocksdb-6.9/
DWINDOWS_PORT.md58 … with posix_env. This means we replicated the functionality of the thread pool and other things as…
66pool implementation we chose to replicate posix logic using `std::thread` primitives. This allows …
DHISTORY.md452 …d naming convention changed (on supporting platforms) to "rocksdb:<thread pool priority><thread nu…
467 …ottom-pri thread pool was setup via `Env::SetBackgroundThreads()`, compactions to the bottom level…
588 * Universal compactions including the bottom level can be executed in a dedicated thread pool. This…
616 …hread pool is no longer supported by setting `max_background_flushes=0`. Instead, users can achiev…
998 …sting low pri pool of options.env, it will enlarge it. Similarly, options.max_background_flushes i…
/rocksdb-6.9/java/
DHISTORY-JAVA.md37 …binding for rocksdb::Env such that multiple RocksDB can share the same thread pool and environment.