CPU Scheduling. The scheduling problem: When do we make decision? - Have K jobs ready to run - Have N 1 CPUs - Which jobs to assign to which CPU(s)

Similar documents
CPU Scheduling. The scheduling problem: When do we make decision? - Have K jobs ready to run - Have N 1 CPUs - Which jobs to assign to which CPU(s)

1 Textbook scheduling. 2 Priority scheduling. 3 Advanced scheduling topics. - What goals should we have for a scheduling algorithm?

1 Textbook scheduling. 2 Priority scheduling. 3 Advanced scheduling topics 1 / What goals should we have for a scheduling algorithm?

CPU Scheduling. The scheduling problem: When do we make decision? - Have K jobs ready to run - Have N 1 CPUs - Which jobs to assign to which CPU(s)

CS 318 Principles of Operating Systems

The different Unix contexts

Operating Systems. Process scheduling. Thomas Ropars.

Course Syllabus. Operating Systems

CPU Scheduling. Operating Systems (Fall/Winter 2018) Yajin Zhou ( Zhejiang University

Chapter 5: CPU Scheduling

Operating Systems. Scheduling

CSL373: Lecture 6 CPU Scheduling

Introduction to Operating Systems Prof. Chester Rebeiro Department of Computer Science and Engineering Indian Institute of Technology, Madras

Chapter 5 CPU scheduling

Properties of Processes

Chapter 6: CPU Scheduling

Process Scheduling. Copyright : University of Illinois CS 241 Staff

CPU Scheduling. CSE 2431: Introduction to Operating Systems Reading: Chapter 6, [OSC] (except Sections )

CS370 Operating Systems

Operating System Concepts Ch. 5: Scheduling

Uniprocessor Scheduling. Basic Concepts Scheduling Criteria Scheduling Algorithms. Three level scheduling

Chapter 6: CPU Scheduling. Operating System Concepts 9 th Edition

Chapter 5: CPU Scheduling

Chapter 5: CPU Scheduling

Announcements. Program #1. Program #0. Reading. Is due at 9:00 AM on Thursday. Re-grade requests are due by Monday at 11:59:59 PM.

Chapter 5: CPU Scheduling. Operating System Concepts Essentials 8 th Edition

Chapter 6: CPU Scheduling. Operating System Concepts 9 th Edition

Last Class: Processes

Chapter 5: Process Scheduling

OPERATING SYSTEMS CS3502 Spring Processor Scheduling. Chapter 5

CS370: System Architecture & Software [Fall 2014] Dept. Of Computer Science, Colorado State University

Operating Systems. Lecture Process Scheduling. Golestan University. Hossein Momeni

Chapter 5: CPU Scheduling. Operating System Concepts 8 th Edition,

LECTURE 3:CPU SCHEDULING

Scheduling of processes

CS3733: Operating Systems

Administrivia. - Show up to lecture for free extension to midnight - SCPD can just watch lecture before midnight

Lecture 5 / Chapter 6 (CPU Scheduling) Basic Concepts. Scheduling Criteria Scheduling Algorithms

CPU Scheduling. Daniel Mosse. (Most slides are from Sherif Khattab and Silberschatz, Galvin and Gagne 2013)

CPU Scheduling. Basic Concepts. Histogram of CPU-burst Times. Dispatcher. CPU Scheduler. Alternating Sequence of CPU and I/O Bursts

CISC 7310X. C05: CPU Scheduling. Hui Chen Department of Computer & Information Science CUNY Brooklyn College. 3/1/2018 CUNY Brooklyn College

CPU Scheduling: Objectives

Job Scheduling. CS170 Fall 2018

Process- Concept &Process Scheduling OPERATING SYSTEMS

Preview. Process Scheduler. Process Scheduling Algorithms for Batch System. Process Scheduling Algorithms for Interactive System

8: Scheduling. Scheduling. Mark Handley

Scheduling in the Supermarket

Lecture Topics. Announcements. Today: Uniprocessor Scheduling (Stallings, chapter ) Next: Advanced Scheduling (Stallings, chapter

Announcements. Reading. Project #1 due in 1 week at 5:00 pm Scheduling Chapter 6 (6 th ed) or Chapter 5 (8 th ed) CMSC 412 S14 (lect 5)

Last class: Today: CPU Scheduling. CPU Scheduling Algorithms and Systems

CS307: Operating Systems

CPU Scheduling Algorithms

CPU Scheduling. Schedulers. CPSC 313: Intro to Computer Systems. Intro to Scheduling. Schedulers in the OS

Scheduling. Scheduling 1/51

CSE 120 Principles of Operating Systems Spring 2017

Subject Name: OPERATING SYSTEMS. Subject Code: 10EC65. Prepared By: Kala H S and Remya R. Department: ECE. Date:

Scheduling. The Basics

Operating Systems CS 323 Ms. Ines Abbes

CS370 Operating Systems

Scheduling. Scheduling 1/51

Chapter 9. Uniprocessor Scheduling

Unit 3 : Process Management

CPU Scheduling. Rab Nawaz Jadoon. Assistant Professor DCS. Pakistan. COMSATS, Lahore. Department of Computer Science

Chap 7, 8: Scheduling. Dongkun Shin, SKKU

OS Assignment II. The process of executing multiple threads simultaneously is known as multithreading.

Frequently asked questions from the previous class survey

Announcements. Program #1. Reading. Due 2/15 at 5:00 pm. Finish scheduling Process Synchronization: Chapter 6 (8 th Ed) or Chapter 7 (6 th Ed)

1.1 CPU I/O Burst Cycle

Chapter 5 Scheduling

CPU Scheduling (1) CPU Scheduling (Topic 3) CPU Scheduling (2) CPU Scheduling (3) Resources fall into two classes:

COSC243 Part 2: Operating Systems

CHAPTER 2: PROCESS MANAGEMENT

Example: CPU-bound process that would run for 100 quanta continuously 1, 2, 4, 8, 16, 32, 64 (only 37 required for last run) Needs only 7 swaps

Operating Systems: Quiz2 December 15, Class: No. Name:

CS 326: Operating Systems. CPU Scheduling. Lecture 6

Chapter 5 Process Scheduling

Scheduling. Today. Next Time Process interaction & communication

Practice Exercises 305

ALL the assignments (A1, A2, A3) and Projects (P0, P1, P2) we have done so far.

Ch 4 : CPU scheduling

238P: Operating Systems. Lecture 14: Process scheduling

CSE120 Principles of Operating Systems. Prof Yuanyuan (YY) Zhou Scheduling

Chapter 5: Process Scheduling

CSC Operating Systems Spring Lecture - XII Midterm Review. Tevfik Ko!ar. Louisiana State University. March 4 th, 2008.

Computer Systems Laboratory Sungkyunkwan University

Operating Systems ECE344. Ding Yuan

TDIU25: Operating Systems II. Processes, Threads and Scheduling

Operating Systems Unit 3

Operating Systems (1DT020 & 1TT802)

W4118: advanced scheduling

Chapter 6: CPU Scheduling

Scheduling. CS 161: Lecture 4 2/9/17

Scheduling Mar. 19, 2018

Titolo presentazione. Scheduling. sottotitolo A.Y Milano, XX mese 20XX ACSO Tutoring MSc Eng. Michele Zanella

Review. Preview. Three Level Scheduler. Scheduler. Process behavior. Effective CPU Scheduler is essential. Process Scheduling

Recap. Run to completion in order of arrival Pros: simple, low overhead, good for batch jobs Cons: short jobs can stuck behind the long ones

But this will not be complete (no book covers 100%) So consider it a rough approximation Last lecture OSPP Sections 3.1 and 4.1

CS Computer Systems. Lecture 6: Process Scheduling

Scheduling II. Today. Next Time. ! Proportional-share scheduling! Multilevel-feedback queue! Multiprocessor scheduling. !

CSE 120 Principles of Operating Systems

Transcription:

CPU Scheduling The scheduling problem: - Have K jobs ready to run - Have N 1 CPUs - Which jobs to assign to which CPU(s) When do we make decision? 1 / 39

CPU Scheduling new admitted interrupt exit terminated ready running I/O or event completion scheduler dispatch I/O or event wait waiting Scheduling decisions may take place when a process: 1. Switches from running to waiting state 2. Switches from running to ready state 3. Switches from new/waiting to ready 4. Exits Non-preemptive schedules use 1 & 4 only Preemptive schedulers run at all four points 2 / 39

Why do we care? Scheduling criteria - What goals should we have for a scheduling algorithm? 3 / 39

Why do we care? Scheduling criteria - What goals should we have for a scheduling algorithm? Throughput # of procs that complete per unit time - Higher is better Turnaround time time for each proc to complete - Lower is better Response time time from request to first response (e.g., key press to character echo, not launch to exit) - Lower is better Above criteria are affected by secondary criteria - CPU utilization fraction of time CPU doing productive work - Waiting time time each proc waits in ready queue 3 / 39

Example: FCFS Scheduling Run jobs in order that they arrive - Called First-come first-served (FCFS) - E.g.., Say P 1 needs 24 sec, while P 2 and P 3 need 3. - Say P 2, P 3 arrived immediately after P 1, get: Dirt simple to implement how good is it? Throughput: 3 jobs / 30 sec = 0.1 jobs/sec Turnaround Time: P 1 : 24, P 2 : 27, P 3 : 30 - Average TT: (24 + 27 + 30)/3 = 27 Can we do better? 4 / 39

FCFS continued Suppose we scheduled P 2, P 3, then P 1 - Would get: Throughput: 3 jobs / 30 sec = 0.1 jobs/sec Turnaround time: P 1 : 30, P 2 : 3, P 3 : 6 - Average TT: (30 + 3 + 6)/3 = 13 much less than 27 Lesson: scheduling algorithm can reduce TT - Minimizing waiting time can improve RT and TT What about throughput? 5 / 39

View CPU and I/O devices the same CPU is one of several devices needed by users jobs - CPU runs compute jobs, Disk drive runs disk jobs, etc. - With network, part of job may run on remote CPU Scheduling 1-CPU system with n I/O devices like scheduling asymmetric (n + 1)-CPU multiprocessor - Result: all I/O devices + CPU busy = n+1 fold speedup! grep waiting for disk running matrix multiply waiting in ready queue - Overlap them just right? throughput will be almost doubled 6 / 39

Bursts of computation & I/O Jobs contain I/O and computation - Bursts of computation - Then must wait for I/O To Maximize throughput - Must maximize CPU utilization - Also maximize I/O device utilization How to do? - Overlap I/O & computation from multiple jobs - Means response time very important for I/O-intensive jobs: I/O device will be idle until job gets small amount of CPU to issue next I/O request 7 / 39

Histogram of CPU-burst times What does this mean for FCFS? 8 / 39

FCFS Convoy effect CPU-bound jobs will hold CPU until exit or I/O (but I/O rare for CPU-bound thread) - long periods where no I/O requests issued, and CPU held - Result: poor I/O device utilization Example: one CPU-bound job, many I/O bound - CPU-bound job runs (I/O devices idle) - CPU-bound job blocks - I/O-bound job(s) run, quickly block on I/O - CPU-bound job runs again - I/O completes - CPU-bound job continues while I/O devices idle Simple hack: run process whose I/O completed? - What is a potential problem? 9 / 39

SJF Scheduling Shortest-job first (SJF) attempts to minimize TT - Schedule the job whose next CPU burst is the shortest Two schemes: - Non-preemptive once CPU given to the process it cannot be preempted until completes its CPU burst - Preemptive if a new process arrives with CPU burst length less than remaining time of current executing process, preempt (Known as the Shortest-Remaining-Time-First or SRTF) What does SJF optimize? 10 / 39

SJF Scheduling Shortest-job first (SJF) attempts to minimize TT - Schedule the job whose next CPU burst is the shortest Two schemes: - Non-preemptive once CPU given to the process it cannot be preempted until completes its CPU burst - Preemptive if a new process arrives with CPU burst length less than remaining time of current executing process, preempt (Known as the Shortest-Remaining-Time-First or SRTF) What does SJF optimize? - Gives minimum average waiting time for a given set of processes 10 / 39

Non-preemptive Examples Process Arrival Time Burst Time P 1 0.0 7 P 2 2.0 4 P 3 4.0 1 P 4 5.0 4 Preemptive Drawbacks? 11 / 39

SJF limitations Doesn t always minimize average turnaround time - Only minimizes waiting time, which minimizes response time - Example where turnaround time might be suboptimal? Can lead to unfairness or starvation In practice, can t actually predict the future But can estimate CPU burst length based on past - Exponentially weighted average a good idea - t n actual length of proc s n th CPU burst - τ n+1 estimated length of proc s n + 1 st - Choose parameter α where 0 < α 1 - Let τ n+1 = αt n + (1 α)τ n 12 / 39

SJF limitations Doesn t always minimize average turnaround time - Only minimizes waiting time, which minimizes response time - Example where turnaround time might be suboptimal? - Overall longer job has shorter bursts Can lead to unfairness or starvation In practice, can t actually predict the future But can estimate CPU burst length based on past - Exponentially weighted average a good idea - t n actual length of proc s n th CPU burst - τ n+1 estimated length of proc s n + 1 st - Choose parameter α where 0 < α 1 - Let τ n+1 = αt n + (1 α)τ n 12 / 39

Exp. weighted average example 13 / 39

Round robin (RR) scheduling Solution to fairness and starvation - Preempt job after some time slice or quantum - When preempted, move to back of FIFO queue - (Most systems do some flavor of this) Advantages: - Fair allocation of CPU across jobs - Low average waiting time when job lengths vary - Good for responsiveness if small number of jobs Disadvantages? 14 / 39

RR disadvantages Varying sized jobs are good... what about same-sized jobs? Assume 2 jobs of time=100 each: Even if context switches were free... - What would average completion time be with RR? - How does that compare to FCFS? 15 / 39

RR disadvantages Varying sized jobs are good... what about same-sized jobs? Assume 2 jobs of time=100 each: Even if context switches were free... - What would average completion time be with RR? 199.5 - How does that compare to FCFS? 150 15 / 39

Context switch costs What is the cost of a context switch? 16 / 39

Context switch costs What is the cost of a context switch? Brute CPU time cost in kernel - Save and restore resisters, etc. - Switch address spaces (expensive instructions) Indirect costs: cache, buffer cache, & TLB misses 16 / 39

Time quantum How to pick quantum? - Want much larger than context switch cost - Majority of bursts should be less than quantum - But not so large system reverts to FCFS Typical values: 10 100 msec 17 / 39

Turnaround time vs. quantum 18 / 39

Two-level scheduling Switching to swapped out process very expensive - Swapped out process has most memory pages on disk - Will have to fault them all in while running - One disk access costs 10ms. On 1GHz machine, 10ms = 10 million cycles! Context-switch-cost aware scheduling - Run in-core subset for a while - Then swap some between disk and memory How to pick subset? How to define a while? - View as scheduling memory before scheduling CPU - Swapping in process is cost of memory context switch - So want memory quantum much larger than swapping cost 19 / 39

Priority scheduling Associate a numeric priority with each process - E.g., smaller number means higher priority (Unix/BSD) - Or smaller number means lower priority (Pintos) Give CPU to the process with highest priority - Can be done preemptively or non-preemptively Note SJF is a priority scheduling where priority is the predicted next CPU burst time Starvation low priority processes may never execute Solution? 20 / 39

Priority scheduling Associate a numeric priority with each process - E.g., smaller number means higher priority (Unix/BSD) - Or smaller number means lower priority (Pintos) Give CPU to the process with highest priority - Can be done preemptively or non-preemptively Note SJF is a priority scheduling where priority is the predicted next CPU burst time Starvation low priority processes may never execute Solution? - Aging: increase a process s priority as it waits 20 / 39

Multilevel feeedback queues (BSD) Every runnable process on one of 32 run queues - Kernel runs process on highest-priority non-empty queue - Round-robins among processes on same queue Process priorities dynamically computed - Processes moved between queues to reflect priority changes - If a process gets higher priority than running process, run it Idea: Favor interactive jobs that use less CPU 21 / 39

Process priority p nice user-settable weighting factor p estcpu per-process estimated CPU usage - Incremented whenever timer interrupt found proc. running - Decayed every second while process runnable ( ) 2 load p estcpu p estcpu + p nice 2 load + 1 - Load is sampled average of length of run queue plus short-term sleep queue over last minute Run queue determined by p usrpri/4 ( p estcpu ) p usrpri 50 + + 2 p nice 4 (value clipped if over 127) 22 / 39

Sleeping process increases priority p estcpu not updated while asleep - Instead p slptime keeps count of sleep time When process becomes runnable p estcpu ( ) 2 load p slptime p estcpu 2 load + 1 - Approximates decay ignoring nice and past loads Previous description based on [McKusick] 1 (The Design and Implementation of the 4.4BSD Operating System) 1 See library.stanford.edu for off-campus access 23 / 39

Pintos notes Same basic idea for second half of project 1 - But 64 priorities, not 128 - Higher numbers mean higher priority - Okay to have only one run queue if you prefer (less efficient, but we won t deduct points for it) Have to negate priority equation: ( recent cpu ) priority = 63 2 nice 4 24 / 39

Real-time scheduling Two categories: - Soft real time miss deadline and CD will sound funny - Hard real time miss deadline and plane will crash System must handle periodic and aperiodic events - E.g., procs A, B, C must be scheduled every 100, 200, 500 msec, require 50, 30, 100 msec respectively - Schedulable if CPU 1 (not counting switch time) period Variety of scheduling strategies - E.g., first deadline first (works if schedulable, otherwise fails spectacularly) 25 / 39

Multiprocessor scheduling issues Must decide on more than which processes to run - Must decide on which CPU to run which process Moving between CPUs has costs - More cache misses, depending on arch more TLB misses too Affinity scheduling try to keep threads on same CPU - But also prevent load imbalances - Do cost-benefit analysis when deciding to migrate 26 / 39

Multiprocessor scheduling (cont) Want related processes scheduled together - Good if threads access same resources (e.g., cached files) - Even more important if threads communicate often, otherwise must context switch to communicate Gang scheduling schedule all CPUs synchronously - With synchronized quanta, easier to schedule related processes/threads together 27 / 39

Thread scheduling With thread library, have two scheduling decisions: - Local Scheduling Thread library decides which user thread to put onto an available kernel thread - Global Scheduling Kernel decides which kernel thread to run next Can expose to the user - E.g., pthread attr setscope allows two choices - PTHREAD SCOPE SYSTEM thread scheduled like a process (effectively one kernel thread bound to user thread Will return ENOTSUP in user-level pthreads implementation) - PTHREAD SCOPE PROCESS thread scheduled within the current process (may have multiple user threads multiplexed onto kernel threads) 28 / 39

Thread dependencies Say H at high priority, L at low priority - L acquires lock l. - Scenario 1: H tries to acquire l, fails, spins. L never gets to run. - Scenario 2: H tries to acquire l, fails, blocks. M enters system at medium priority. L never gets to run. - Both scenes are examples of priority inversion Scheduling = deciding who should make progress - A thread s importance should increase with the importance of those that depend on it - Naïve priority schemes violate this 29 / 39

Priority donation Say higher number = higher priority (like Pintos) Example 1: L (prio 2), M (prio 4), H (prio 8) - L holds lock l - M waits on l, L s priority raised to L 1 = max(m, L) = 4 - Then H waits on l, L s priority raised to max(h, L 1 ) = 8 Example 2: Same L, M, H as above - L holds lock l, M holds lock l 2 - M waits on l, L s priority now L 1 = 4 (as before) - Then H waits on l 2. M s priority goes to M 1 = max(h, M) = 8, and L s priority raised to max(m 1, L 1 ) = 8 Example 3: L (prio 2), M 1,... M 1000 (all prio 4) - L has l, and M 1,..., M 1000 all block on l. L s priority is max(l, M 1,..., M 1000 ) = 4. 30 / 39

Advanced scheduling w. virtual time Many modern schedulers employ notion of virtual time - Idea: Equalize virtual CPU time consumed by different processes Case study: Borrowed Virtual Time (BVT) [Duda] Idea: Run process w. lowest effective virtual time - A i actual virtual time consumed by process i - effective virtual time E i = A i (warp i? W i : 0) - Special warp factor allows borrowing against future CPU time... hence name of algorithm 31 / 39

Process weights Each process i s faction of CPU determined by weight w i - i should get w i / w j faction of CPU j - So w i is seconds per virtual time tick while i has CPU When i consumes t CPU time, track it: A i += t/w i Example: gcc (weight 2), bigsim (weight 1) - Assuming no IO, runs: gcc, gcc, bigsim, gcc, gcc, bigsim,... - Lots of context switches, not so good for performance Add in context switch allowance, C - Only switch from i to j if E j E i C/w i - C is wall-clock time (>> context switch cost), so must divide by w i - Ignore C if j just became runable... why? 32 / 39

Process weights Each process i s faction of CPU determined by weight w i - i should get w i / w j faction of CPU j - So w i is seconds per virtual time tick while i has CPU When i consumes t CPU time, track it: A i += t/w i Example: gcc (weight 2), bigsim (weight 1) - Assuming no IO, runs: gcc, gcc, bigsim, gcc, gcc, bigsim,... - Lots of context switches, not so good for performance Add in context switch allowance, C - Only switch from i to j if E j E i C/w i - C is wall-clock time (>> context switch cost), so must divide by w i - Ignore C if j just became runable to avoid affecting response time 32 / 39

virtual time 180 160 140 120 100 80 60 40 20 bigsim gcc BVT example 0 0 3 6 9 12 15 18 21 24 27 real time gcc has weight 2, bigsim weight 1, C = 2, no I/O - bigsim consumes virtual time at twice the rate of gcc - Procs always run for C time after exceeding other s E i 33 / 39

Sleep/wakeup Must lower priority (increase A i ) after wakeup - Otherwise process with very low A i would starve everyone Bound lag with Scheduler Virtual Time (SVT) - SVT is minimum A j for all runnable threads j - When waking i from voluntary sleep, set A i max(a i, SVT) Note voluntary/involuntary sleep distinction - E.g., Don t reset A j to SVT after page fault - Faulting thread needs a chance to catch up - But do set A i max(a i, SVT) after socket read Note: Even with SVT A i can never decrease - After short sleep, might have A i > SVT, so max(a i, SVT) = A i - i never gets more than its fair share of CPU in long run 34 / 39

400 350 300 250 200 150 100 50 gcc wakes up after I/O gcc bigsim 0 0 15 30 gcc s A i gets reset to SVT on wakeup - Otherwise, would be at lower (blue) line and starve bigsim 35 / 39

Real-time threads Also want to support soft real-time threads - E.g., mpeg player must run every 10 clock ticks Recall E i = A i (warp i? W i : 0) - W i is warp factor gives thread precedence - Just give mpeg player i large W i factor - Will get CPU whenever it is runable - But long term CPU share won t exceed w i / w j j Note W i only matters when warp i is true - Can set warp i with a syscall, or have it set in signal handler - Also gets cleared if i keeps using CPU for L i time - L i limit gets reset every U i time - L i = 0 means no limit okay for small W i value 36 / 39

120 100 80 60 40 20 0 20 40 Running warped gcc bigsim mpeg 60 0 5 10 15 20 25 mpeg player runs with 50 warp value - Always gets CPU when needed, never misses a frame 37 / 39

Warped thread hogging CPU 120 100 80 60 40 20 0 20 40 gcc bigsim mpeg 60 0 5 10 15 20 25 mpeg goes into tight loop at time 5 Exceeds L i at time 10, so warp i false 38 / 39

BVT example: Search engine Common queries 150 times faster than uncommon - Have 10-thread pool of threads to handle requests - Assign W i value sufficient to process fast query (say 50) Say 1 slow query, small trickle of fast queries - Fast queries come in, warped by 50, execute immediately - Slow query runs in background Say 1 slow query, but many fast queries - At first, only fast queries run - But SVT is bounded by A i of slow query thread i - Eventually Fast query thread j gets A j = max(a j, SVT) = A j, and eventually A j warp j > A i. - At that point thread i will run again, so no starvation 39 / 39