Searched refs:pool (Results 1 – 9 of 9) sorted by relevance
346 void LowerThreadPoolIOPriority(Priority pool = LOW) override { in LowerThreadPoolIOPriority() argument347 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() argument356 assert(pool >= Priority::BOTTOM && pool <= Priority::HIGH); in LowerThreadPoolCPUPriority()358 thread_pools_[pool].LowerCPUPriority(); in LowerThreadPoolCPUPriority()360 (void)pool; in LowerThreadPoolCPUPriority()
550 void LowerThreadPoolIOPriority(Priority pool = LOW) override {551 env_target_->LowerThreadPoolIOPriority(pool);554 void LowerThreadPoolCPUPriority(Priority pool = LOW) override {555 env_target_->LowerThreadPoolCPUPriority(pool);
12 …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 name19 - wal_pool. Corresponding pool name for WAL files. Default value is db_name+"_wal_pool"
9 …hread pool is no longer supported by setting `max_background_flushes=0`. Instead, users can achiev…
16 * Universal compactions including the bottom level can be executed in a dedicated thread pool. This…
1343 void LowerThreadPoolIOPriority(Priority pool = LOW) override {1344 target_->LowerThreadPoolIOPriority(pool);1347 void LowerThreadPoolCPUPriority(Priority pool = LOW) override {1348 target_->LowerThreadPoolCPUPriority(pool);
58 … with posix_env. This means we replicated the functionality of the thread pool and other things as…66 …pool implementation we chose to replicate posix logic using `std::thread` primitives. This allows …
452 …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…
37 …binding for rocksdb::Env such that multiple RocksDB can share the same thread pool and environment.