scheduling 2 fcfs rr priority srtf
play

scheduling 2 FCFS, RR, priority, SRTF 1 last time xv6 scheduler - PowerPoint PPT Presentation

scheduling 2 FCFS, RR, priority, SRTF 1 last time xv6 scheduler design separate scheduler thread disable interrupts while changing thread states threads versus processes thread: part on processor core xv6: each process has exactly one


  1. scheduling 2 — FCFS, RR, priority, SRTF 1

  2. last time xv6 scheduler design separate scheduler thread disable interrupts while changing thread states threads versus processes thread: part on processor core xv6: each process has exactly one thread CPU bursts scheduling metrics turnaround time: becomes runnable to becomes not-running/runnable wait time: turnaround time minus time spent running throughput: amount of useful work done per unit time fairness …other, subjective/tricky to quantify metrics? 2

  3. metrics today big focus on minimizing mean/total turnaround time thread becomes ready until thread done being ready imperfect approximation of interactivity/responsiveness on desktop question: why imperfect? 3

  4. two trivial scheduling algorithms fjrst-come fjrst served (FCFS) round robin (RR) 4

  5. scheduling example assumptions multiple programs become ready at almost the same time alternately: became ready while previous program was running …but in some order that we’ll use e.g. our ready queue looks like a linked list 5

  6. two trivial scheduling algorithms fjrst-come fjrst served (FCFS) round robin (RR) 6

  7. fjrst-come, fjrst-served simplest(?) scheduling algorithm no preemption — run program until it can’t suitable in cases where no context switch e.g. not enough memory for two active programs 7

  8. arrival order: A , B , C arrival order: B , C , A fjrst-come, fjrst-served (FCFS) A 0 ( A ), 24 ( B ), 28 ( C ) turnaround times: (mean=27.7) 24 ( A ), 28 ( B ), 31 ( C ) B C 0 30 10 20 30 wait times: (mean=3.7) 7 ( A ), 0 ( B ), 4 ( C ) turnaround times: (mean=14) 31 ( A ), 4 ( B ), 7 ( C ) wait times: (mean=17.3) 10 20 3 thread CPU time needed A 24 B 4 C A (AKA “fjrst in, fjrst out” (FIFO)) CPU-bound B, C I/O bound or interactive A B C 0 8

  9. arrival order: A , B , C arrival order: B , C , A fjrst-come, fjrst-served (FCFS) A turnaround times: (mean=27.7) 24 ( A ), 28 ( B ), 31 ( C ) B C 0 wait times: (mean=17.3) 10 20 30 wait times: (mean=3.7) 7 ( A ), 0 ( B ), 4 ( C ) turnaround times: (mean=14) 31 ( A ), 4 ( B ), 7 ( C ) 0 ( A ), 24 ( B ), 28 ( C ) 20 30 C thread CPU time needed A 24 B 4 3 (AKA “fjrst in, fjrst out” (FIFO)) A B C 0 10 8 A ∼ CPU-bound B, C ∼ I/O bound or interactive

  10. arrival order: B , C , A fjrst-come, fjrst-served (FCFS) A 0 ( A ), 24 ( B ), 28 ( C ) turnaround times: (mean=27.7) 24 ( A ), 28 ( B ), 31 ( C ) B C 0 30 10 20 30 wait times: (mean=3.7) 7 ( A ), 0 ( B ), 4 ( C ) turnaround times: (mean=14) 31 ( A ), 4 ( B ), 7 ( C ) wait times: (mean=17.3) 20 (AKA “fjrst in, fjrst out” (FIFO)) C thread CPU time needed A 24 B 4 3 10 arrival order: A , B , C A B C 0 8 A ∼ CPU-bound B, C ∼ I/O bound or interactive

  11. arrival order: B , C , A fjrst-come, fjrst-served (FCFS) A 0 ( A ), 24 ( B ), 28 ( C ) turnaround times: (mean=27.7) 24 ( A ), 28 ( B ), 31 ( C ) B C 0 30 10 20 30 wait times: (mean=3.7) 7 ( A ), 0 ( B ), 4 ( C ) turnaround times: (mean=14) 31 ( A ), 4 ( B ), 7 ( C ) wait times: (mean=17.3) 20 (AKA “fjrst in, fjrst out” (FIFO)) C thread CPU time needed A 24 B 4 3 10 arrival order: A , B , C A B C 0 8 A ∼ CPU-bound B, C ∼ I/O bound or interactive

  12. fjrst-come, fjrst-served (FCFS) 0 0 ( A ), 24 ( B ), 28 ( C ) turnaround times: (mean=27.7) 24 ( A ), 28 ( B ), 31 ( C ) B C A 10 30 20 30 wait times: (mean=3.7) 7 ( A ), 0 ( B ), 4 ( C ) turnaround times: (mean=14) 31 ( A ), 4 ( B ), 7 ( C ) wait times: (mean=17.3) 20 (AKA “fjrst in, fjrst out” (FIFO)) 3 thread CPU time needed A 24 B 4 C 8 10 arrival order: A , B , C A B C 0 A ∼ CPU-bound B, C ∼ I/O bound or interactive arrival order: B , C , A

  13. fjrst-come, fjrst-served (FCFS) 0 0 ( A ), 24 ( B ), 28 ( C ) turnaround times: (mean=27.7) 24 ( A ), 28 ( B ), 31 ( C ) B C A 10 30 20 30 wait times: (mean=3.7) 7 ( A ), 0 ( B ), 4 ( C ) turnaround times: (mean=14) 31 ( A ), 4 ( B ), 7 ( C ) wait times: (mean=17.3) 20 (AKA “fjrst in, fjrst out” (FIFO)) 3 thread CPU time needed A 24 B 4 C 8 10 arrival order: A , B , C A B C 0 A ∼ CPU-bound B, C ∼ I/O bound or interactive arrival order: B , C , A

  14. FCFS orders B “convoy efgect” 31 ( A ), 3 ( B ), 7 ( C ) turnaround times: (mean=14) 7 ( A ), 0 ( B ), 4 ( C ) wait times: (mean=3.7) 30 20 10 0 A C arrival order: B , C , A arrival order: A , B , C 24 ( A ), 28 ( B ), 31 ( C ) turnaround times: (mean=27.7) 0 ( A ), 24 ( B ), 28 ( C ) wait times: (mean=17.3) 30 20 10 0 C B A 9

  15. two trivial scheduling algorithms fjrst-come fjrst served (FCFS) round robin (RR) 10

  16. round-robin simplest(?) preemptive scheduling algorithm run program until either it can’t run anymore, or it runs for too long (exceeds “time quantum”) requires good way of interrupting programs like xv6’s timer interrupt requires good way of stopping programs whenever like xv6’s context switches 11

  17. round robin (RR) (varying order) time quantum = 1, 31 ( A ), 10 ( B ), 8 ( C ) turnaround times: (mean=16.3) 7 ( A ), 6 ( B ), 5 ( C ) waiting times: (mean=6) 30 20 10 0 A BCABCABCAB time quantum = 1, 31 ( A ), 11 ( B ), 9 ( C ) turnaround times: (mean=17) 7 ( A ), 7 ( B ), 6 ( C ) waiting times: (mean=6.7) 30 20 10 0 A ABCABCABCAB 12 order A , B , C order B , C , A

  18. round robin (RR) (varying order) time quantum = 1, 31 ( A ), 10 ( B ), 8 ( C ) turnaround times: (mean=16.3) 7 ( A ), 6 ( B ), 5 ( C ) waiting times: (mean=6) 30 20 10 0 A BCABCABCAB time quantum = 1, 31 ( A ), 11 ( B ), 9 ( C ) turnaround times: (mean=17) 7 ( A ), 7 ( B ), 6 ( C ) waiting times: (mean=6.7) 30 20 10 0 A ABCABCABCAB 12 order A , B , C order B , C , A

  19. round robin (RR) (varying time quantum) time quantum = 1, 31 ( A ), 10 ( B ), 11 ( C ) turnaround times: (mean=17.3) 7 ( A ), 6 ( B ), 8 ( C ) waiting times: (mean=7) 30 20 10 0 A time quantum = 2, 31 ( A ), 11 ( B ), 9 ( C ) turnaround times: (mean=17) 7 ( A ), 7 ( B ), 6 ( C ) waiting times: (mean=6.7) 30 20 10 0 A ABCABCABCAB 13 order A , B , C order A , B , C A B C A B C

  20. round robin (RR) (varying time quantum) time quantum = 1, 31 ( A ), 10 ( B ), 11 ( C ) turnaround times: (mean=17.3) 7 ( A ), 6 ( B ), 8 ( C ) waiting times: (mean=7) 30 20 10 0 A time quantum = 2, 31 ( A ), 11 ( B ), 9 ( C ) turnaround times: (mean=17) 7 ( A ), 7 ( B ), 6 ( C ) waiting times: (mean=6.7) 30 20 10 0 A ABCABCABCAB 13 order A , B , C order A , B , C A B C A B C

  21. round robin idea unanswered question: what to choose switch to next process in ready queue after time quantum expires this policy is what xv6 scheduler does scheduler runs from timer interrupt (or if process not runnable) fjnds next runnable process in process table 14 choose fjxed time quantum Q

  22. but what about turnaround/waiting time? round robin and time quantums few context switches total processes time until scheduled if more fair: at most FCFS = RR with infjnite quantum smaller quantum: more fair, worse throughput (higher throughput) (lower throughput) RR with many context switches (less fair) fjrst program favored (more fair) order doesn’t matter FCFS short quantum 15

  23. but what about turnaround/waiting time? round robin and time quantums (lower throughput) FCFS = RR with infjnite quantum smaller quantum: more fair, worse throughput (higher throughput) few context switches many context switches RR with (less fair) fjrst program favored (more fair) order doesn’t matter FCFS short quantum 15 more fair: at most ( N − 1) Q time until scheduled if N total processes

  24. aside: context switch overhead but tricky: lot of indirect cost (cache misses) (above numbers try to include likely indirect costs) choose time quantum to manage this overhead varied based on number of active programs Linux’s scheduler is more complicated than RR historically common: 1 ms to 100 ms 1% to 0.1% ovherhead? 16 typical context switch: ∼ 0.01 ms to 0.1 ms current Linux default: between ∼ 0.75 ms and ∼ 6 ms

  25. round robin and time quantums RR with FCFS = RR with infjnite quantum smaller quantum: more fair, worse throughput (higher throughput) few context switches (lower throughput) many context switches (less fair) fjrst program favored (more fair) order doesn’t matter FCFS short quantum 17 more fair: at most ( N − 1) Q time until scheduled if N total processes but what about turnaround/waiting time?

  26. exercise: round robin quantum if there were no context switch overhead, decreasing the time quantum (for round robin) would cause mean turnaround time to . A. always decrease or stay the same B. always increase of stay the same C. increase or decrease or stay the same D. something else? 18

  27. increase mean turnaround time A : 1 unit CPU burst B : 1 unit Q = 1 Q = 1/2 A B mean turnaround time = mean turnaround time = 19 (1 + 2) ÷ 2 = 1 . 5 (1 . 5 + 2) ÷ 2 = 1 . 75

  28. decrease mean turnaround time A : 10 unit CPU burst B : 1 unit Q = 10 Q = 5 A B mean turnaround time = mean turnaround time = 20 (10 + 11) ÷ 2 = 10 . 5 (6 + 11) ÷ 2 = 8 . 5

  29. stay the same A : 1 unit CPU burst B : 1 unit Q = 10 Q = 1 A B 21

  30. FCFS and order earlier we saw that with FCFS, arrival order mattered big changes in turnaround/waiting time let’s use that insight to see how to optimize mean/total turnaround times 22

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend