SlideShare a Scribd company logo
PRESENTED BY:- NEERAJ BAGHEL
SONAM SINGH
R.B.S ENGINEERING
TECHNICAL CAMPUS
Disk Scheduling
2
Topics Of Discussion
• Introduction
• FCFS scheduling
• SSTF scheduling
• SCAN scheduling
• C-SCAN scheduling
• LOOK and C-LOOK scheduling
3
PURPOSE
• The purpose of this material is to provide one
with help on disk scheduling algorithm.
Hopefully with this,one will be able to get a
stronger graps of disk scheduling algorithm do.
4
Disk Scheduling
• The operating system is responsible for using
hardware efficiently — for the disk drives, this means
having a fast access time and disk bandwidth.
• Access time has two major components:
– Seek time is the time for the disk are to move the heads to
the cylinder containing the desired sector.
– Rotational latency is the additional time waiting for the disk
to rotate the desired sector to the disk head.
• Minimize seek time ≈ seek distance.
• Disk bandwidth is the total number of bytes
transferred, divided by the total time between the first
request for service and the completion of last transfer.
5
Disk Scheduling
• There are many sources of disk I/O request:
– Os
– System processes
– Users processes
• I/O request includes input/output mode, disk address,
memory address, number of sectors to transfer.
• OS maintains queue of requests, per disk or device.
• Idle disk can immediately work on I/O request, busy
disk means work must queue:
– Optimization algorithms only make sense when a queue
exists.
6
Components of Disk I/O Transfer
7
Disk Scheduling Algorithms
• Note that drive controllers have small buffers and can
manage a queue of I/O requests (of varying “depth”).
• Several algorithms exist to schedule the servicing of
disk I/O requests.
• The analysis is true for one or many platters.
• We illustrate them with a I/O request queue
(cylinders are between 0-199):
queue = 98, 183, 37, 122, 14, 124, 65, 67
head starts at 53
8
Types Of Disk Scheduling Algorithm
• First Come First Serve
• Shortest Seek Time First
• Elevator(SCAN)
• Circular Scan(C-Scan)
• Look
• C-Look
9
First Come First Serve (FCFS(
• Handle I/O requests sequentially.
• Fair to all processes.
• Approaches random scheduling in
performance if there are many
processes/requests.
• Suffers from global zigzag effect.
10
First Come First Serve (FCFS(
Illustration shows total head movement of 640 cylinders.
11
Shortest Seek Time First (SSTF(
• Selects the request with the minimum seek time
from the current head position.
• Also called Shortest Seek Distance First
(SSDF) – It’s easier to compute distances.
• It’s biased in favor of the middle cylinders
requests.
• SSTF scheduling is a form of SJF scheduling;
may cause starvation of some requests.
12
Shortest Seek Time First (SSTF(
Illustration shows total head movement of 236 cylinders.
13
Scan
• The disk arm starts at one end of the disk, and
moves toward the other end, servicing requests
until it gets to the other end of the disk, where
the head movement is reversed and servicing
continues.
• It moves in both directions until both ends.
• Tends to stay more at the ends so more fair to
the extreme cylinder requests.
14
Scan
Illustration shows total head movement of 208 cylinders.
15
Look
• The disk arm starts at the first I/O request on
the disk, and moves toward the last I/O request
on the other end, servicing requests until it gets
to the other extreme I/O request on the disk,
where the head movement is reversed and
servicing continues.
• It moves in both directions until both last I/O
requests; more inclined to serve the middle
cylinder requests.
16
C-Scan
• The head moves from one end of the disk to the
other, servicing requests as it goes. When it
reaches the other end, however, it immediately
returns to the beginning of the disk, without
servicing any requests on the return trip.
• Treats the cylinders as a circular list that wraps
around from the last cylinder to the first one.
• Provides a more uniform wait time than SCAN;
it treats all cylinders in the same manner.
17
C-Scan
18
C-Look
• Look version of C-Scan.
• Arm only goes as far as the last request in each
direction, then reverses direction immediately,
without first going all the way to the end of the
disk.
• In general, Circular versions are more fair but
pay with a larger total seek time.
• Scan versions have a larger total seek time than
the corresponding Look versions.
19
C-Look
20 A. Frank - P. Weisberg
Elevator Algorithms
C-LookC-Scan
Scan Look
Go until the
last request
Go until the
last cylinder
Service in only
one direction
Service both
directions
Direction
Go until
• Algorithms based on the common elevator principle.
• Four combinations of Elevator algorithms:
–Service in both directions or in only one direction.
–Go until last cylinder or until last I/O request.
21
Another Example
A. Frank - P. Weisberg
LOOK C-LOOK
22
Other Disk Scheduling Policies
• Pickup
– A combination of FCFS and Look.
– Goes to next I/O request by FCFS but services all
existing requests on the way to it.
• Priority
– Goal is not to optimize disk use but to meet other
objectives.
– Short batch jobs may have higher priority.
– Provide good interactive response time.
23
Selecting a Disk-Scheduling Algorithm
• Performance depends on the number and types
of requests.
• Requests for disk service can be influenced by
the file-allocation method.
• The disk-scheduling algorithm should be
written as a separate module of the operating
system, allowing it to be replaced with a
different algorithm if necessary.
24
Selecting a Disk-Scheduling Algorithm
• With low load on the disk, It’s FCFS anyway.
• SSTF is common and has a natural appeal – good for
medium disk load.
• SCAN and C-SCAN perform better for systems that
place a heavy load on the disk; Less starvation.
• Performance depends on number and types of requests.
• Requests for disk service can be influenced by the file-
allocation method and metadata layout.
• Either SSTF or LOOK (as part of an Elevator package)
is a reasonable choice for the default algorithm.
25
Thank You

More Related Content

PPTX
Disk Scheduling Algorithm in Operating System
Meghaj Mallick
 
PPTX
Scheduling
pradeepa velmurugan
 
PPTX
Mass Storage Structure
Vimalanathan D
 
PPT
Scheduling algorithms
Chankey Pathak
 
PPTX
Cpu scheduling
Karthick Sekar
 
DOCX
operating system question bank
rajatdeep kaur
 
PPTX
Operating Systems: Process Scheduling
Damian T. Gordon
 
PPTX
Process scheduling
Deepika Balichwal
 
Disk Scheduling Algorithm in Operating System
Meghaj Mallick
 
Mass Storage Structure
Vimalanathan D
 
Scheduling algorithms
Chankey Pathak
 
Cpu scheduling
Karthick Sekar
 
operating system question bank
rajatdeep kaur
 
Operating Systems: Process Scheduling
Damian T. Gordon
 
Process scheduling
Deepika Balichwal
 

What's hot (20)

PDF
OS - Process Concepts
Mukesh Chinta
 
PPTX
System calls
Bernard Senam
 
PPT
Memory management
Vishal Singh
 
PPTX
Deadlock- Operating System
Rajan Shah
 
PPT
Deadlock detection and recovery by saad symbian
saad symbian
 
PPT
Memory Management in OS
vampugani
 
PPTX
CPU Scheduling in OS Presentation
usmankiyani1
 
PPTX
Process management os concept
priyadeosarkar91
 
PPTX
Computer architecture input output organization
Mazin Alwaaly
 
PDF
Memory management
Rajni Sirohi
 
PPTX
Process scheduling
Riya Choudhary
 
PPT
deadlock avoidance
wahab13
 
PPTX
Segmentation in Operating Systems.
Muhammad SiRaj Munir
 
PPTX
Paging and segmentation
Piyush Rochwani
 
PPTX
File system Os
Nehal Naik
 
PPTX
Demand paging
Trinity Dwarka
 
PPT
Chapter 12 - Mass Storage Systems
Wayne Jones Jnr
 
PPT
Disk scheduling algorithms
Paresh Parmar
 
PPTX
File allocation methods (1)
Dr. Jasmine Beulah Gnanadurai
 
OS - Process Concepts
Mukesh Chinta
 
System calls
Bernard Senam
 
Memory management
Vishal Singh
 
Deadlock- Operating System
Rajan Shah
 
Deadlock detection and recovery by saad symbian
saad symbian
 
Memory Management in OS
vampugani
 
CPU Scheduling in OS Presentation
usmankiyani1
 
Process management os concept
priyadeosarkar91
 
Computer architecture input output organization
Mazin Alwaaly
 
Memory management
Rajni Sirohi
 
Process scheduling
Riya Choudhary
 
deadlock avoidance
wahab13
 
Segmentation in Operating Systems.
Muhammad SiRaj Munir
 
Paging and segmentation
Piyush Rochwani
 
File system Os
Nehal Naik
 
Demand paging
Trinity Dwarka
 
Chapter 12 - Mass Storage Systems
Wayne Jones Jnr
 
Disk scheduling algorithms
Paresh Parmar
 
File allocation methods (1)
Dr. Jasmine Beulah Gnanadurai
 
Ad

Similar to Disk scheduling (20)

PPT
Disk Scheduling Algorithms
Adarsh Kr Sinha
 
PPTX
Disk Scheduling concept of Operating System.pptx
viceprincipalbfc
 
PPT
Disk scheduling
Agnas Jasmine
 
PPT
Disk Scheduling Algorithms Mar 30 2024.ppt
Sonam Mittal
 
PPTX
Operating system
Huda Athirah
 
PPTX
I/O structure slide by Rajalakshmi SKC
RAJALAKSHMI RADHAKRISHNAN
 
PPTX
Disk scheduling
Suraj Shukla
 
PPTX
FILE SYSTEMS AND ORGANISATION STRUCTURE.pptx
briantrixs
 
PPT
Disk scheduling algorithm.52
myrajendra
 
PPT
Explained Disk Scheduling Algo ...
Adarsh Kr Sinha
 
PPTX
Disk Scheduling In Operating System.pptx
Maharshi Dayanand University Rohtak
 
PPTX
disk Scheduling explanation hsbsjjsj1.pptx
JayPatil347597
 
PDF
Os(18 cs43) module5
Shivanand Manjaragi
 
PDF
DOC-20241118-WA0000osdiskschedulingslgoirths.pdf
BarathKumar216683
 
PPT
Operating System
Subhasis Dash
 
PDF
Operating system notes _ computer science
salamlakhan7
 
PPT
Disk Scheduling
A29ShirleyDhawadkar
 
Disk Scheduling Algorithms
Adarsh Kr Sinha
 
Disk Scheduling concept of Operating System.pptx
viceprincipalbfc
 
Disk scheduling
Agnas Jasmine
 
Disk Scheduling Algorithms Mar 30 2024.ppt
Sonam Mittal
 
Operating system
Huda Athirah
 
I/O structure slide by Rajalakshmi SKC
RAJALAKSHMI RADHAKRISHNAN
 
Disk scheduling
Suraj Shukla
 
FILE SYSTEMS AND ORGANISATION STRUCTURE.pptx
briantrixs
 
Disk scheduling algorithm.52
myrajendra
 
Explained Disk Scheduling Algo ...
Adarsh Kr Sinha
 
Disk Scheduling In Operating System.pptx
Maharshi Dayanand University Rohtak
 
disk Scheduling explanation hsbsjjsj1.pptx
JayPatil347597
 
Os(18 cs43) module5
Shivanand Manjaragi
 
DOC-20241118-WA0000osdiskschedulingslgoirths.pdf
BarathKumar216683
 
Operating System
Subhasis Dash
 
Operating system notes _ computer science
salamlakhan7
 
Disk Scheduling
A29ShirleyDhawadkar
 
Ad

More from NEERAJ BAGHEL (16)

PPTX
Generating super resolution images using transformers
NEERAJ BAGHEL
 
PPTX
Mtech Fourth progress presentation
NEERAJ BAGHEL
 
PPTX
M.tech Third progress Presentation
NEERAJ BAGHEL
 
PPT
Latex intro
NEERAJ BAGHEL
 
PPTX
Hierarchical structure adaptive
NEERAJ BAGHEL
 
PPTX
Mtech Second progresspresentation ON VIDEO SUMMARIZATION
NEERAJ BAGHEL
 
PPTX
Unsupervised object-level video summarization with online motion auto-encoder
NEERAJ BAGHEL
 
PPTX
Mtech First progress PRESENTATION ON VIDEO SUMMARIZATION
NEERAJ BAGHEL
 
PPTX
Host rank:Exploiting the Hierarchical Structure for Link Analysis
NEERAJ BAGHEL
 
PPTX
TVSum: Summarizing Web Videos Using Titles
NEERAJ BAGHEL
 
PPTX
Query focused video summarization
NEERAJ BAGHEL
 
PPTX
Traffic behavior of local area network based on
NEERAJ BAGHEL
 
PPTX
A Framework For Dynamic Hand Gesture Recognition Using Key Frames Extraction
NEERAJ BAGHEL
 
PPTX
Fingerprint recognition
NEERAJ BAGHEL
 
PPTX
SMOWSER (A VOICE BASED BROWSER)
NEERAJ BAGHEL
 
PPTX
Itvv project ppt
NEERAJ BAGHEL
 
Generating super resolution images using transformers
NEERAJ BAGHEL
 
Mtech Fourth progress presentation
NEERAJ BAGHEL
 
M.tech Third progress Presentation
NEERAJ BAGHEL
 
Latex intro
NEERAJ BAGHEL
 
Hierarchical structure adaptive
NEERAJ BAGHEL
 
Mtech Second progresspresentation ON VIDEO SUMMARIZATION
NEERAJ BAGHEL
 
Unsupervised object-level video summarization with online motion auto-encoder
NEERAJ BAGHEL
 
Mtech First progress PRESENTATION ON VIDEO SUMMARIZATION
NEERAJ BAGHEL
 
Host rank:Exploiting the Hierarchical Structure for Link Analysis
NEERAJ BAGHEL
 
TVSum: Summarizing Web Videos Using Titles
NEERAJ BAGHEL
 
Query focused video summarization
NEERAJ BAGHEL
 
Traffic behavior of local area network based on
NEERAJ BAGHEL
 
A Framework For Dynamic Hand Gesture Recognition Using Key Frames Extraction
NEERAJ BAGHEL
 
Fingerprint recognition
NEERAJ BAGHEL
 
SMOWSER (A VOICE BASED BROWSER)
NEERAJ BAGHEL
 
Itvv project ppt
NEERAJ BAGHEL
 

Recently uploaded (20)

PDF
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
PDF
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
PPTX
Online Cab Booking and Management System.pptx
diptipaneri80
 
PPTX
Tunnel Ventilation System in Kanpur Metro
220105053
 
PPTX
MSME 4.0 Template idea hackathon pdf to understand
alaudeenaarish
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PDF
Advanced LangChain & RAG: Building a Financial AI Assistant with Real-Time Data
Soufiane Sejjari
 
PDF
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
PDF
settlement FOR FOUNDATION ENGINEERS.pdf
Endalkazene
 
PPTX
Module2 Data Base Design- ER and NF.pptx
gomathisankariv2
 
PPTX
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
PDF
Unit I Part II.pdf : Security Fundamentals
Dr. Madhuri Jawale
 
PDF
Biodegradable Plastics: Innovations and Market Potential (www.kiu.ac.ug)
publication11
 
PPTX
FUNDAMENTALS OF ELECTRIC VEHICLES UNIT-1
MikkiliSuresh
 
PDF
AI-Driven IoT-Enabled UAV Inspection Framework for Predictive Maintenance and...
ijcncjournal019
 
PPTX
IoT_Smart_Agriculture_Presentations.pptx
poojakumari696707
 
DOCX
SAR - EEEfdfdsdasdsdasdasdasdasdasdasdasda.docx
Kanimozhi676285
 
PPTX
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
PPTX
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
PPTX
business incubation centre aaaaaaaaaaaaaa
hodeeesite4
 
LEAP-1B presedntation xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
hatem173148
 
Natural_Language_processing_Unit_I_notes.pdf
sanguleumeshit
 
Online Cab Booking and Management System.pptx
diptipaneri80
 
Tunnel Ventilation System in Kanpur Metro
220105053
 
MSME 4.0 Template idea hackathon pdf to understand
alaudeenaarish
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
Advanced LangChain & RAG: Building a Financial AI Assistant with Real-Time Data
Soufiane Sejjari
 
Introduction to Ship Engine Room Systems.pdf
Mahmoud Moghtaderi
 
settlement FOR FOUNDATION ENGINEERS.pdf
Endalkazene
 
Module2 Data Base Design- ER and NF.pptx
gomathisankariv2
 
Chapter_Seven_Construction_Reliability_Elective_III_Msc CM
SubashKumarBhattarai
 
Unit I Part II.pdf : Security Fundamentals
Dr. Madhuri Jawale
 
Biodegradable Plastics: Innovations and Market Potential (www.kiu.ac.ug)
publication11
 
FUNDAMENTALS OF ELECTRIC VEHICLES UNIT-1
MikkiliSuresh
 
AI-Driven IoT-Enabled UAV Inspection Framework for Predictive Maintenance and...
ijcncjournal019
 
IoT_Smart_Agriculture_Presentations.pptx
poojakumari696707
 
SAR - EEEfdfdsdasdsdasdasdasdasdasdasdasda.docx
Kanimozhi676285
 
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
22PCOAM21 Session 2 Understanding Data Source.pptx
Guru Nanak Technical Institutions
 
business incubation centre aaaaaaaaaaaaaa
hodeeesite4
 

Disk scheduling

  • 1. PRESENTED BY:- NEERAJ BAGHEL SONAM SINGH R.B.S ENGINEERING TECHNICAL CAMPUS Disk Scheduling
  • 2. 2 Topics Of Discussion • Introduction • FCFS scheduling • SSTF scheduling • SCAN scheduling • C-SCAN scheduling • LOOK and C-LOOK scheduling
  • 3. 3 PURPOSE • The purpose of this material is to provide one with help on disk scheduling algorithm. Hopefully with this,one will be able to get a stronger graps of disk scheduling algorithm do.
  • 4. 4 Disk Scheduling • The operating system is responsible for using hardware efficiently — for the disk drives, this means having a fast access time and disk bandwidth. • Access time has two major components: – Seek time is the time for the disk are to move the heads to the cylinder containing the desired sector. – Rotational latency is the additional time waiting for the disk to rotate the desired sector to the disk head. • Minimize seek time ≈ seek distance. • Disk bandwidth is the total number of bytes transferred, divided by the total time between the first request for service and the completion of last transfer.
  • 5. 5 Disk Scheduling • There are many sources of disk I/O request: – Os – System processes – Users processes • I/O request includes input/output mode, disk address, memory address, number of sectors to transfer. • OS maintains queue of requests, per disk or device. • Idle disk can immediately work on I/O request, busy disk means work must queue: – Optimization algorithms only make sense when a queue exists.
  • 6. 6 Components of Disk I/O Transfer
  • 7. 7 Disk Scheduling Algorithms • Note that drive controllers have small buffers and can manage a queue of I/O requests (of varying “depth”). • Several algorithms exist to schedule the servicing of disk I/O requests. • The analysis is true for one or many platters. • We illustrate them with a I/O request queue (cylinders are between 0-199): queue = 98, 183, 37, 122, 14, 124, 65, 67 head starts at 53
  • 8. 8 Types Of Disk Scheduling Algorithm • First Come First Serve • Shortest Seek Time First • Elevator(SCAN) • Circular Scan(C-Scan) • Look • C-Look
  • 9. 9 First Come First Serve (FCFS( • Handle I/O requests sequentially. • Fair to all processes. • Approaches random scheduling in performance if there are many processes/requests. • Suffers from global zigzag effect.
  • 10. 10 First Come First Serve (FCFS( Illustration shows total head movement of 640 cylinders.
  • 11. 11 Shortest Seek Time First (SSTF( • Selects the request with the minimum seek time from the current head position. • Also called Shortest Seek Distance First (SSDF) – It’s easier to compute distances. • It’s biased in favor of the middle cylinders requests. • SSTF scheduling is a form of SJF scheduling; may cause starvation of some requests.
  • 12. 12 Shortest Seek Time First (SSTF( Illustration shows total head movement of 236 cylinders.
  • 13. 13 Scan • The disk arm starts at one end of the disk, and moves toward the other end, servicing requests until it gets to the other end of the disk, where the head movement is reversed and servicing continues. • It moves in both directions until both ends. • Tends to stay more at the ends so more fair to the extreme cylinder requests.
  • 14. 14 Scan Illustration shows total head movement of 208 cylinders.
  • 15. 15 Look • The disk arm starts at the first I/O request on the disk, and moves toward the last I/O request on the other end, servicing requests until it gets to the other extreme I/O request on the disk, where the head movement is reversed and servicing continues. • It moves in both directions until both last I/O requests; more inclined to serve the middle cylinder requests.
  • 16. 16 C-Scan • The head moves from one end of the disk to the other, servicing requests as it goes. When it reaches the other end, however, it immediately returns to the beginning of the disk, without servicing any requests on the return trip. • Treats the cylinders as a circular list that wraps around from the last cylinder to the first one. • Provides a more uniform wait time than SCAN; it treats all cylinders in the same manner.
  • 18. 18 C-Look • Look version of C-Scan. • Arm only goes as far as the last request in each direction, then reverses direction immediately, without first going all the way to the end of the disk. • In general, Circular versions are more fair but pay with a larger total seek time. • Scan versions have a larger total seek time than the corresponding Look versions.
  • 20. 20 A. Frank - P. Weisberg Elevator Algorithms C-LookC-Scan Scan Look Go until the last request Go until the last cylinder Service in only one direction Service both directions Direction Go until • Algorithms based on the common elevator principle. • Four combinations of Elevator algorithms: –Service in both directions or in only one direction. –Go until last cylinder or until last I/O request.
  • 21. 21 Another Example A. Frank - P. Weisberg LOOK C-LOOK
  • 22. 22 Other Disk Scheduling Policies • Pickup – A combination of FCFS and Look. – Goes to next I/O request by FCFS but services all existing requests on the way to it. • Priority – Goal is not to optimize disk use but to meet other objectives. – Short batch jobs may have higher priority. – Provide good interactive response time.
  • 23. 23 Selecting a Disk-Scheduling Algorithm • Performance depends on the number and types of requests. • Requests for disk service can be influenced by the file-allocation method. • The disk-scheduling algorithm should be written as a separate module of the operating system, allowing it to be replaced with a different algorithm if necessary.
  • 24. 24 Selecting a Disk-Scheduling Algorithm • With low load on the disk, It’s FCFS anyway. • SSTF is common and has a natural appeal – good for medium disk load. • SCAN and C-SCAN perform better for systems that place a heavy load on the disk; Less starvation. • Performance depends on number and types of requests. • Requests for disk service can be influenced by the file- allocation method and metadata layout. • Either SSTF or LOOK (as part of an Elevator package) is a reasonable choice for the default algorithm.