Multilevel Queue Scheduling



  • This has been created for situations in which processes are easily classified into different groups.


  • For example, a common division is made between foreground (interactive) processes and background (batch) processes.


  • These two types of processes have different response-time requirements and so may have different scheduling needs.


  • In addition, foreground processes may have priority (externally defined) over background processes.


  • A multilevel queue scheduling algorithm partitions the ready queue into several separate queues


  • The processes are permanently assigned to one queue, generally based on some property of the process, such as memory size, process priority, or process type.


  • Each queue has its own scheduling algorithm.


  • In addition, there must be scheduling among the queues, which is comĀ­ monly implemented as fixed-priority preemptive scheduling. For example, the foreground queue may have absolute priority over the background queue.


  • Multilevel Queue Scheduling
  • Each queue has absolute priority over lower-priority queues. No process in the batch queue, for example, could run unless the queues for system processes, interactive processes, and interactive editing processes were all empty. If an interactive editing process entered the ready queue while a batch process was running, the batch process would be preempted.





Multilevel Feedback Queue Scheduling



  • Unlike the previous type of scheduling, the multilevel feedback queue scheduling algorithm, in contrast, allows a process to move between queues.


  • The idea is to separate processes according to the characteristics of their CPU bursts.


  • If a process uses too much CPU time, it will be moved to a lower-priority queue. This scheme leaves I/O-bound and interactive processes in the higher-priority queues.


  • In addition, a process that waits too long in a lower-priority queue may be moved to a higher-priority queue. This form of aging prevents starvation.


  • Example : Multilevel Feedback Queue Scheduling


    1. Multilevel Feedback Queue Scheduling
    2. Consider a multilevel feedback queue scheduler with three queues, numbered from 0 to 2.


    3. The scheduler first executes all processes in queue 0. Only when queue 0 is empty will it execute processes in queue 1. Similarly, processes in queue 2 will only be executed if queues 0 and 1 are empty.


    4. A process that arrives for queue 1 will preempt a process in queue 2. A process in queue 1 will in turn be preempted by a process arriving for queue 0.


    5. A process entering the ready queue is put in queue 0. A process in queue 0 is given a time quantum of 8 milliseconds. If it does not finish within this time, it is moved to the tail of queue 1.


    6. If queue 0 is empty, the process at the head of queue 1 is given a quantum of 16 milliseconds. If it does not complete, it is preempted and is put into queue 2.


    7. Processes in queue 2 are run on an FCFS basis but are run only when queues 0 and 1 are empty.


    8. This scheduling algorithm gives highest priority to any process with a CPU burst of 8 milliseconds or less.


    9. Long processes automatically sink to queue 2 and are served in FCFS order with any CPU cycles left over from queues 0 and 1.