Home
last modified time | relevance | path

Searched refs:IO (Results 1 – 7 of 7) sorted by relevance

/rocksdb-6.9/utilities/persistent_cache/
Dblock_cache_tier_file.h259 struct IO { struct
260 explicit IO(const bool signal) : signal_(signal) {} in IO() function
261 explicit IO(WritableFile* const file, CacheWriteBuffer* const buf, in IO() function
265 IO(const IO&) = default;
266 IO& operator=(const IO&) = default; argument
267 size_t Size() const { return sizeof(IO); } in Size() argument
287 void DispatchIO(const IO& io); argument
290 BoundedQueue<IO> q_;
Dblock_cache_tier_file.cc550 q_.Push(IO(/*signal=*/true)); in Stop()
564 q_.Push(IO(file, buf, file_off, callback)); in Write()
570 IO io(q_.Pop()); in ThreadMain()
590 void ThreadedWriter::DispatchIO(const IO& io) { in DispatchIO()
/rocksdb-6.9/docs/_posts/
D2017-05-12-partitioned-index-filter.markdown18 … reloaded from the disk, and its large size is not helping in reducing the IO cost. While a simple…
28 … small memory that is present to a node with 100TB of data by using direct IO (skipping OS file ca…
32 … be available in presence of other DBs on the same node by by using direct IO (skipping OS file ca…
D2017-05-26-rocksdb-5-4-5-released.markdown14 …direct_writes with Options::use_direct_io_for_flush_and_compaction. See Direct IO wiki for details.
27 * Fix WritableFile buffer size in direct IO.
/rocksdb-6.9/docs/_docs/
Dfaq.md14 …n servers with many CPU cores, to efficiently use fast storage, to support IO-bound, in-memory and…
22 …ad benchmarks and found that RocksDB solidly outperforms LevelDB for these IO bound workloads. We …
/rocksdb-6.9/
DHISTORY.md35 * Batched MultiGet() ignores IO errors while reading data blocks, causing it to potentially continu…
74 * MultiGet() can use IO Uring to parallelize read from the same SST file. This featuer is by defaul…
266 …and iterator Seek() performance in some situations, especially when direct IO is enabled and block…
269 …ome setups, especially for iterator seeks. It's not fully implemented yet: IO errors are not handl…
436 …prove the performance of iterators doing long range scans by using readahead, when using direct IO.
438 * Write properties meta-block at the end of block-based table to save read-ahead IO.
446 * Fix a bug caused by not copying the block trailer with compressed SST file, direct IO, prefetcher…
657 …irect_writes with Options::use_direct_io_for_flush_and_compaction. Read Direct IO wiki for details.
1155 * Lots of efforts to move malloc, memcpy and IO outside of locks
DWINDOWS_PORT.md10 …. It provides scalability with number of CPUs and storage IOPS, to support IO-bound, in-memory and…