Invisible Yet Dominant: Big Stalls of Kernel I/O Mechanisms in Cloud OLTP Databases

📅 2026-09-11
📈 Citations: 0
Influential: 0
📄 PDF
🤖 AI Summary
研究解决了云OLTP数据库中由于单线程内核刷新导致的I/O瓶颈问题,通过增加排水线程而非带宽的方法,显著减少了延迟并提高了吞吐量。
📝 Abstract
Most databases, including PostgreSQL, RocksDB, and recent AI KV-cache middleware, rely on buffered I/O, delegating write-back to the Linux kernel. On the distributed block storage standard in the cloud, this delegation inherits a hidden bottleneck: each device is drained by a single kernel flusher thread over a high-latency, shallow-queue path. When the drain falls behind, dirty throttling pauses write() system calls, and even reads that must evict dirty pages stall. These stalls are invisible to iostat and every standard counter. This poster observes the stall from inside the kernel, using the multi-volume data placement proposed in SteelDB as the experimental lever. eBPF probes on writeback and block tracepoints separate write-back by issuing context and count every throttle pause. Across three configurations with identical provisioned IOPS and bandwidth but 1, 2, and 4 devices, we show that adding drains, not bandwidth, cuts throttle pauses by 70%, reduces maximum transaction latency by 59%, and raises throughput by 23%.
Problem

Research questions and friction points this paper is trying to address.

Cloud OLTP Databases
Kernel I/O Mechanisms
Dirty Throttling
Stalls
Distributed Block Storage
Innovation

Methods, ideas, or system contributions that make the work stand out.

eBPF probes
kernel I/O mechanisms
throttle pauses
🔎 Similar Papers