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
PPTX
Mass Storage Structure
PPTX
File allocation methods (1)
PPTX
Cpu scheduling
PPTX
Operating Systems: Process Scheduling
PPT
Scheduling algorithms
PPTX
PPTX
Operating Systems: Device Management
Disk Scheduling Algorithm in Operating System
Mass Storage Structure
File allocation methods (1)
Cpu scheduling
Operating Systems: Process Scheduling
Scheduling algorithms
Operating Systems: Device Management

What's hot (20)

PPS
Virtual memory
PPT
Disk scheduling
PDF
Memory management
PPTX
Deadlock ppt
PPT
Memory management
PPTX
File system structure
PPTX
DeadLock in Operating-Systems
PPTX
Segmentation in operating systems
PPT
13. Query Processing in DBMS
PPTX
Deadlock Prevention
PPTX
CPU Scheduling in OS Presentation
PPTX
INTER PROCESS COMMUNICATION (IPC).pptx
PPTX
Congestion control
PPTX
Page replacement algorithms
PPTX
File concept and access method
PPTX
daa-unit-3-greedy method
PPTX
file system in operating system
PPTX
heap Sort Algorithm
PPT
Memory Management in OS
PPTX
Demand paging
Virtual memory
Disk scheduling
Memory management
Deadlock ppt
Memory management
File system structure
DeadLock in Operating-Systems
Segmentation in operating systems
13. Query Processing in DBMS
Deadlock Prevention
CPU Scheduling in OS Presentation
INTER PROCESS COMMUNICATION (IPC).pptx
Congestion control
Page replacement algorithms
File concept and access method
daa-unit-3-greedy method
file system in operating system
heap Sort Algorithm
Memory Management in OS
Demand paging
Ad

Similar to Disk scheduling (20)

PPT
Disk scheduling algorithms
PPT
Disk Scheduling Algorithms
PPTX
Disk Scheduling concept of Operating System.pptx
PPT
Disk scheduling
PPT
Disk Scheduling Algorithms Mar 30 2024.ppt
PPTX
Operating system
PPTX
I/O structure slide by Rajalakshmi SKC
PPTX
Disk scheduling
PPTX
FILE SYSTEMS AND ORGANISATION STRUCTURE.pptx
PPT
Disk scheduling algorithm.52
PPT
Explained Disk Scheduling Algo ...
PPTX
Disk Scheduling In Operating System.pptx
PPTX
disk Scheduling explanation hsbsjjsj1.pptx
PDF
Os(18 cs43) module5
PDF
DOC-20241118-WA0000osdiskschedulingslgoirths.pdf
PPT
Operating System
PDF
Operating system notes _ computer science
Disk scheduling algorithms
Disk Scheduling Algorithms
Disk Scheduling concept of Operating System.pptx
Disk scheduling
Disk Scheduling Algorithms Mar 30 2024.ppt
Operating system
I/O structure slide by Rajalakshmi SKC
Disk scheduling
FILE SYSTEMS AND ORGANISATION STRUCTURE.pptx
Disk scheduling algorithm.52
Explained Disk Scheduling Algo ...
Disk Scheduling In Operating System.pptx
disk Scheduling explanation hsbsjjsj1.pptx
Os(18 cs43) module5
DOC-20241118-WA0000osdiskschedulingslgoirths.pdf
Operating System
Operating system notes _ computer science
Ad

More from NEERAJ BAGHEL (16)

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

Recently uploaded (20)

PPTX
web development for engineering and engineering
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
Structs to JSON How Go Powers REST APIs.pdf
PPTX
Geodesy 1.pptx...............................................
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PDF
Well-logging-methods_new................
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PDF
composite construction of structures.pdf
PPTX
Construction Project Organization Group 2.pptx
PDF
PPT on Performance Review to get promotions
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
web development for engineering and engineering
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Foundation to blockchain - A guide to Blockchain Tech
Structs to JSON How Go Powers REST APIs.pdf
Geodesy 1.pptx...............................................
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Well-logging-methods_new................
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
CYBER-CRIMES AND SECURITY A guide to understanding
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
composite construction of structures.pdf
Construction Project Organization Group 2.pptx
PPT on Performance Review to get promotions
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx

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.