Multi Level Feedback Queue Scheduling

Duration: 4 min

This video lesson is available to enrolled students.

Enroll to watch — ISRO Scientist/Engineer 'SC'

AI Summary

An AI-generated summary of this video lecture.

This educational video provides a detailed lecture on the Multi-level Feedback Queue Scheduling algorithm used in operating systems. The instructor begins by distinguishing this flexible approach from the rigid multilevel queue scheduling, where processes are permanently assigned to specific queues. He explains that the feedback mechanism allows processes to migrate between priority levels based on their CPU burst characteristics, ensuring that interactive and I/O-bound processes receive higher priority while CPU-bound processes are demoted. The lecture concludes with a specific numerical example illustrating time quanta and queue transitions.

Chapters

  1. 0:00 2:00 00:00-02:00

    The instructor introduces the topic using a slide titled Multi-level Feedback Queue Scheduling. He contrasts this with standard multilevel queues, noting on-screen text that says: Normally, when the multilevel queue scheduling algorithm is used, processes are permanently assigned to a queue when they enter the system. He explains that unlike this inflexible setup, the feedback queue allows processes to move between queues. The slide text further clarifies: The multilevel feedback queue scheduling algorithm, in contrast, allows a process to move between queues. He details that processes using too much CPU time are moved to lower-priority queues, whereas I/O-bound and interactive processes remain in higher-priority queues. He also mentions that a process waiting too long in a lower-priority queue may be moved to a higher-priority queue to prevent starvation, a concept known as aging.

  2. 2:00 3:48 02:00-03:48

    The lecture shifts to a concrete example with a diagram on the right side of the slide. The text reads: A process entering the ready queue is put in queue 0. A process in queue 0 is given a time quantum of 8 milliseconds. The instructor points to the diagram, which shows three stacked boxes labeled quantum = 8, quantum = 16, and FCFS. He explains that if a process does not finish within 8 milliseconds, it is moved to the tail of queue 1. If it still isn't complete after 16 milliseconds in queue 1, it is preempted and put into queue 2. He draws arrows on the screen to visualize this flow, emphasizing that processes needing more than 8 but less than 24 milliseconds are served quickly with lower priority, while long processes automatically sink to queue 2 and are served in FCFS order.

The video effectively bridges theory and practice. It starts by defining the core advantage of feedback queues—flexibility and starvation prevention—before grounding the concept in a specific algorithm with defined time quanta. This progression helps students understand both the why and the how of the scheduling mechanism.