Post a Comment
A little more information about SCHED_DEADLINE:
"SCHED_DEADLINE is a new deadline-based real-time task scheduling policy for the Linux kernel with bandwidth isolation (aka "resource reservation") capabilities. It supports global/clustered multiprocessor scheduling through dynamic task migrations.
The scheduling class implements the real-time scheduling algorithm called Earliest Deadline First (EDF), one of the most common real-time scheduling algorithms."
___________
Edited 2013-02-13 00:07 UTC
It is a better scheduler for server loads than Linux's default, the Completely Fair Scheduler. Deadline allows more parallelism, so more cores can be doing IO without having to wait for each other. It works especially well with XFS, which is also designed for highly parallel loads.
It has other benefits too but this is why I use it.
I think you are confusing I/O schedulers and process schedulers.
SCHED_DEADLINE is a process scheduler, for scheduling processes to run on CPUs.
The "deadline" scheduler you are talking about is the I/O scheduler which determines which processes can do I/O to the storage system.
Very different things!



