Closed
Description
Currently, we only have IO limiters for background tasks. Which is not enough. For example, a heavy read task can consume lots of IO, and slow down the write processes, eventually cause the write stall or high Wait Index Duration.
Ideally, we should have limiters, both IO and CPU, for
- Read threads
- Frontend write threads
- Background write threads
And the threshold is better to be self-adjusted. Since CPU is known to be very complicated to limit, we can start with IO limiters.
Activity