IO Scheduler: Difference between revisions
(Update article for current kernels) |
(→Set IO Schedulers permanently: explain which devices are affected by example rule) |
||
(One intermediate revision by the same user not shown) | |||
Line 4: | Line 4: | ||
This article explains how-to change the IO scheduler without recompiling the kernel and without restart. | This article explains how-to change the IO scheduler without recompiling the kernel and without restart. | ||
The IO scheduler can be set per block device. In the examples below we will use <code>/dev/sda</code>. | |||
== Check the currently used IO scheduler == | == Check the currently used IO scheduler == | ||
Line 29: | Line 31: | ||
== Set IO Schedulers permanently == | == Set IO Schedulers permanently == | ||
This can be done via udev rules. For a basic example, | This can be done via udev rules. For a basic example, the following is a rule to set the BFQ scheduler for all SCSI/SAS/SATA attached disks. Create <code>/etc/udev/rules.d/60-io-scheduler.rules</code> with content: | ||
ACTION=="add|change", KERNEL=="sd[a-z]*", ATTR{queue/scheduler}="bfq" | ACTION=="add|change", KERNEL=="sd[a-z]*", ATTR{queue/scheduler}="bfq" |
Latest revision as of 13:17, 6 February 2025
Introduction
The Linux kernel, the core of the operating system, is responsible for controlling disk access by using kernel IO scheduling.
This article explains how-to change the IO scheduler without recompiling the kernel and without restart.
The IO scheduler can be set per block device. In the examples below we will use /dev/sda
.
Check the currently used IO scheduler
cat /sys/block/sda/queue/scheduler
[none] mq-deadline bfq
For example the scheduler mq-deadline delivers best performance on hardware raid and SAN environments. While none delivers better performance for SSDs.
If you don't see bfq
as an option, it means that the kernel module is not loaded. It is still possible to configure the BFQ scheduler however, which will automatically load the kernel module. To load the module manually, use:
modprobe bfq
Switching IO Schedulers on runtime
Set the scheduler for /dev/sda to Multi-Queue Deadline:
echo mq-deadline > /sys/block/sda/queue/scheduler
Set the scheduler for /dev/sda to BFQ:
echo bfq > /sys/block/sda/queue/scheduler
Set IO Schedulers permanently
This can be done via udev rules. For a basic example, the following is a rule to set the BFQ scheduler for all SCSI/SAS/SATA attached disks. Create /etc/udev/rules.d/60-io-scheduler.rules
with content:
ACTION=="add|change", KERNEL=="sd[a-z]*", ATTR{queue/scheduler}="bfq"