POSIX API 3 / Scheduling 1 1 last time pipes (fjnish) process - - PowerPoint PPT Presentation

posix api 3 scheduling 1
SMART_READER_LITE
LIVE PREVIEW

POSIX API 3 / Scheduling 1 1 last time pipes (fjnish) process - - PowerPoint PPT Presentation

POSIX API 3 / Scheduling 1 1 last time pipes (fjnish) process states in xv6 the scheduler thread, switching to and from scheduling queues I/O and CPU bursts 2 note on VM I made mistake in producing the VM though I started from a clean


slide-1
SLIDE 1

POSIX API 3 / Scheduling 1

1

slide-2
SLIDE 2

last time

pipes (fjnish) process states in xv6 the scheduler thread, switching to and from scheduling queues I/O and CPU bursts

2

slide-3
SLIDE 3

note on VM

I made mistake in producing the VM… though I started from a clean VM but… some excess fjles on VM from a last semester submission testing please delete them (fat* and life directories) questions/concerns? email/talk to me privately

3

slide-4
SLIDE 4

recall: scheduling queues

ready queue CPU I/O I/O queues I/O system call timer/etc. interrupt wait/… system call wait queues

4

slide-5
SLIDE 5

CPU and I/O bursts

compute start read (from fjle/keyboard/…) wait for I/O compute on read data start read wait for I/O compute on read data start write wait for I/O

program alternates between computing and waiting for I/O

examples: shell: wait for keypresses drawing program: wait for mouse presses/etc. web browser: wait for remote web server …

5

slide-6
SLIDE 6

CPU bursts and interactivity (one c. 1966 shared system)

shows compute time from command entered until next command prompt

from G. E. Bryan, “JOSS: 20,000 hours at a console—a statistical approach” in Proc. AFIPS 1967 FJCC

6

slide-7
SLIDE 7

CPU bursts and interactivity (one c. 1990 desktop)

shows CPU time from RUNNING until not RUNNABLE anymore

from Curran and Stumm, “A Comparison of basic CPU Scheduling Algoirithms for Multiprocessor Unix”

7

slide-8
SLIDE 8

CPU bursts

  • bservation: applications alternate between I/O and CPU

especially interactive applications but also, e.g., reading and writing from disk

typically short “CPU bursts” (milliseconds) followed by short “IO bursts” (milliseconds)

8

slide-9
SLIDE 9

scheduling CPU bursts

  • ur typical view: ready queue, bunch of CPU bursts to run

to start: just look at running what’s currently in ready queue best

same problem as ‘run bunch of programs to completion’?

later: account for I/O after CPU burst

9

slide-10
SLIDE 10

an historical note

historically applications were less likely to keep all data in memory historically computers shared between more users meant more applications alternating I/O and CPU context many scheduling policies were developed in

10

slide-11
SLIDE 11

scheduling metrics

response time (Anderson-Dahlin) AKA turnaround time (Arpaci-Dusseau) (want low)

(what Arpaci-Dusseau calls response time is slightly difgerent — more later) what user sees: from keypress to character on screen (submission until job fjnsihed)

throughput (want high)

total work per second problem: overhead (e.g. from context switching)

fairness

many defjnitions all confmict with best average throughput/turnaround time

11

slide-12
SLIDE 12

turnaround and wait time

wait for input ready running

turnaround time (Anderson-Dahlin “response time”) + wait time

(= turnaround time - running time)

Arpaci-Dusseau’s “response time”

common measure: mean turnaround time or total turnaround time same as optimizing total/mean waiting time

12

slide-13
SLIDE 13

turnaround and wait time

wait for input ready running

turnaround time (Anderson-Dahlin “response time”) + wait time

(= turnaround time - running time)

Arpaci-Dusseau’s “response time”

common measure: mean turnaround time or total turnaround time same as optimizing total/mean waiting time

12

slide-14
SLIDE 14

turnaround and wait time

wait for input ready running

turnaround time (Anderson-Dahlin “response time”) + wait time

(= turnaround time - running time)

Arpaci-Dusseau’s “response time”

common measure: mean turnaround time or total turnaround time same as optimizing total/mean waiting time

12

slide-15
SLIDE 15

turnaround and wait time

wait for input ready running

turnaround time (Anderson-Dahlin “response time”) + wait time

(= turnaround time - running time)

Arpaci-Dusseau’s “response time”

common measure: mean turnaround time or total turnaround time same as optimizing total/mean waiting time

12

slide-16
SLIDE 16

turnaround time and I/O

scheduling CPU bursts?

turnaround time ≈ time to start next I/O important for fully utilizing I/O devices closed loop: faster turnaround time → program requests CPU sooner

scheduling batch program on cluster?

turnaround time ≈ how long does user wait

  • nce program done with CPU, it’s probably done

13

slide-17
SLIDE 17

throughput

run A (3 units) context switch(each .5 units) run B (3 units) run A (2 units)

throughput: useful work done per unit time non-context switch CPU utilization = 3 + 3 + 2 3 + .5 + 3 + .5 + 2 = 88% also other considerations:

time lost due to cold caches time lost not starting I/O early as possible …

14

slide-18
SLIDE 18

fairness

timeline 1

run A run B

timeline 2

run A run B run A run B run A run B run A run B

assumption: one program per user two timelines above; which is fairer? easy to answer — but formal defjnition?

15

slide-19
SLIDE 19

fairness

timeline 1

run A run B

timeline 2

run A run B run A run B run A run B run A run B

assumption: one program per user two timelines above; which is fairer? easy to answer — but formal defjnition?

15

slide-20
SLIDE 20

two trivial scheduling algorithms

fjrst-come fjrst served (FCFS) round robin (RR)

16

slide-21
SLIDE 21

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

17

slide-22
SLIDE 22

two trivial scheduling algorithms

fjrst-come fjrst served (FCFS) round robin (RR)

18

slide-23
SLIDE 23

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

19

slide-24
SLIDE 24

fjrst-come, fjrst-served (FCFS)

(AKA “fjrst in, fjrst out” (FIFO))

process CPU time needed A 24 B 4 C 3

A CPU-bound B, C I/O bound or interactive

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 4 (B), 7 (C)

20

slide-25
SLIDE 25

fjrst-come, fjrst-served (FCFS)

(AKA “fjrst in, fjrst out” (FIFO))

process CPU time needed A 24 B 4 C 3

A ∼ CPU-bound B, C ∼ I/O bound or interactive

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 4 (B), 7 (C)

20

slide-26
SLIDE 26

fjrst-come, fjrst-served (FCFS)

(AKA “fjrst in, fjrst out” (FIFO))

process CPU time needed A 24 B 4 C 3

A ∼ CPU-bound B, C ∼ I/O bound or interactive

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 4 (B), 7 (C)

20

slide-27
SLIDE 27

fjrst-come, fjrst-served (FCFS)

(AKA “fjrst in, fjrst out” (FIFO))

process CPU time needed A 24 B 4 C 3

A ∼ CPU-bound B, C ∼ I/O bound or interactive

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 4 (B), 7 (C)

20

slide-28
SLIDE 28

fjrst-come, fjrst-served (FCFS)

(AKA “fjrst in, fjrst out” (FIFO))

process CPU time needed A 24 B 4 C 3

A ∼ CPU-bound B, C ∼ I/O bound or interactive

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 4 (B), 7 (C)

20

slide-29
SLIDE 29

fjrst-come, fjrst-served (FCFS)

(AKA “fjrst in, fjrst out” (FIFO))

process CPU time needed A 24 B 4 C 3

A ∼ CPU-bound B, C ∼ I/O bound or interactive

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 4 (B), 7 (C)

20

slide-30
SLIDE 30

FCFS orders

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 3 (B), 7 (C)

“convoy efgect”

21

slide-31
SLIDE 31

two trivial scheduling algorithms

fjrst-come fjrst served (FCFS) round robin (RR)

22

slide-32
SLIDE 32

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

23

slide-33
SLIDE 33

round robin (RR) (varying order)

time quantum = 1,

  • rder A, B, C

ABCABCABCAB A 10 20 30

waiting times: (mean=6.7) 7 (A), 7 (B), 6 (C) turnaround times: (mean=17) 31 (A), 11 (B), 9 (C) time quantum = 1,

  • rder B, C, A

BCABCABCAB A 10 20 30

waiting times: (mean=6) 7 (A), 6 (B), 5 (C) turnaround times: (mean=16.3) 31 (A), 10 (B), 8 (C)

24

slide-34
SLIDE 34

round robin (RR) (varying order)

time quantum = 1,

  • rder A, B, C

ABCABCABCAB A 10 20 30

waiting times: (mean=6.7) 7 (A), 7 (B), 6 (C) turnaround times: (mean=17) 31 (A), 11 (B), 9 (C) time quantum = 1,

  • rder B, C, A

BCABCABCAB A 10 20 30

waiting times: (mean=6) 7 (A), 6 (B), 5 (C) turnaround times: (mean=16.3) 31 (A), 10 (B), 8 (C)

24

slide-35
SLIDE 35

round robin (RR) (varying time quantum)

time quantum = 1,

  • rder A, B, C

ABCABCABCAB A 10 20 30

waiting times: (mean=6.7) 7 (A), 7 (B), 6 (C) turnaround times: (mean=17) 31 (A), 11 (B), 9 (C) time quantum = 2,

  • rder A, B, C

A B C A B C A 10 20 30

waiting times: (mean=7) 7 (A), 6 (B), 8 (C) turnaround times: (mean=17.3) 31 (A), 10 (B), 11 (C)

25

slide-36
SLIDE 36

round robin (RR) (varying time quantum)

time quantum = 1,

  • rder A, B, C

ABCABCABCAB A 10 20 30

waiting times: (mean=6.7) 7 (A), 7 (B), 6 (C) turnaround times: (mean=17) 31 (A), 11 (B), 9 (C) time quantum = 2,

  • rder A, B, C

A B C A B C A 10 20 30

waiting times: (mean=7) 7 (A), 6 (B), 8 (C) turnaround times: (mean=17.3) 31 (A), 10 (B), 11 (C)

25

slide-37
SLIDE 37

round robin idea

choose fjxed time quantum Q

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

26

slide-38
SLIDE 38

round robin and time quantums

RR with short quantum FCFS

  • rder doesn’t matter

(more fair)

fjrst program favored

(less fair)

many context switches

(lower throughput)

few context switches

(higher throughput)

smaller quantum: more fair, worse throughput FCFS = RR with infjnite quantum

more fair: at most time until scheduled if total processes

but what about turnaround/waiting time?

27

slide-39
SLIDE 39

round robin and time quantums

RR with short quantum FCFS

  • rder doesn’t matter

(more fair)

fjrst program favored

(less fair)

many context switches

(lower throughput)

few context switches

(higher throughput)

smaller quantum: more fair, worse throughput FCFS = RR with infjnite quantum

more fair: at most (N − 1)Q time until scheduled if N total processes

but what about turnaround/waiting time?

27

slide-40
SLIDE 40

aside: context switch overhead

typical context switch: ∼ 0.01 ms to 0.1 ms

but tricky: lot of indirect cost (cache misses) (above numbers try to include likely indirect costs)

choose time quantum to manage this overhead current Linux default: between ∼0.75 ms and ∼6 ms

varied based on number of active programs Linux’s scheduler is more complicated than RR

historically common: 1 ms to 100 ms

28

slide-41
SLIDE 41

round robin and time quantums

RR with short quantum FCFS

  • rder doesn’t matter

(more fair)

fjrst program favored

(less fair)

many context switches

(lower throughput)

few context switches

(higher throughput)

smaller quantum: more fair, worse throughput FCFS = RR with infjnite quantum

more fair: at most (N − 1)Q time until scheduled if N total processes

but what about turnaround/waiting time?

29

slide-42
SLIDE 42

exercise: round robin quantum

if there were no context switch overhead, decreasing the time quantum (for round robin) would cause average 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?

30

slide-43
SLIDE 43

increase turnaround time

A: 1 unit CPU burst B: 1 unit Q = 1 Q = 1/2

A B

mean turnaround time = (1 + 2) ÷ 2 = 1.5 mean turnaround time = (1.5 + 2) ÷ 2 = 1.75

31

slide-44
SLIDE 44

decrease turnaround time

A: 10 unit CPU burst B: 1 unit Q = 10 Q = 5

A B

mean turnaround time = (10 + 11) ÷ 2 = 10.5 mean turnaround time = (6 + 11) ÷ 2 = 8.5

32

slide-45
SLIDE 45

stay the same

A: 1 unit CPU burst B: 1 unit Q = 10 Q = 1

A B

33

slide-46
SLIDE 46

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 turnaround times

34

slide-47
SLIDE 47

FCFS orders

arrival order: A, B, C

A B C

10 20 30

waiting times: (mean=17.3) 0 (A), 24 (B), 28 (C) turnaround times: (mean=27.7) 24 (A), 28 (B), 31 (C) arrival order: B, C, A

C B A

10 20 30

waiting times: (mean=3.3) 7 (A), 3 (B), 0 (C) turnaround times: (mean=13.7) 31 (A), 7 (B), 3 (C) arrival order: B, C, A

B C A

10 20 30

waiting times: (mean=3.7) 7 (A), 0 (B), 4 (C) turnaround times: (mean=14) 31 (A), 4 (B), 7 (C)

35

slide-48
SLIDE 48
  • rder and turnaround time

best turnaround time = run shortest CPU burst fjrst worst turnaround time = run longest CPU burst fjrst intuition: “race to go to sleep”

36

slide-49
SLIDE 49

diversion: some users are more equal

shells more important than big computation?

i.e. programs with short CPU bursts

faculty more important than students? scheduling algorithm: schedule shells/faculty programs fjrst

37

slide-50
SLIDE 50

priority scheduling

priority 15 … priority 3 priority 2 priority 1 priority 0

ready queues for each priority level

process A process B process C process D process E process F

choose process from ready queue for highest priority

within each priority, use some other scheduling (e.g. round-robin)

could have each process have unique priority

38

slide-51
SLIDE 51

priority scheduling and preemption

priority scheduling can be preemptive i.e. higher priority program comes along — stop whatever else was running

39

slide-52
SLIDE 52

exercise: priority scheduling (1)

Suppose there are two processes: process A

highest priority repeat forever: 1 unit of I/O, then 10 units of CPU, …

process Z

lowest priority 4000 units of CPU (and no I/O)

How long will it take process Z complete?

40

slide-53
SLIDE 53

exercise: priority scheduling (2)

Suppose there are three processes: process A

highest priority repeat forever: 1 unit of I/O, then 10 units of CPU, …

process B

second-highest priority repeat forever: 1 unit of I/O, then 10 units of CPU, …

process Z

lowest priority 4000 units of CPU (and no I/O)

How long will it take process Z complete?

41

slide-54
SLIDE 54

starvation

programs can get “starved” of resources never get those resources because of higher priority big reason to have a ‘fairness’ metric

42

slide-55
SLIDE 55

minimizing turnaround time

recall: fjrst-come, fjrst-served best order: had shortest CPU bursts fjrst → scheduling algorithm: ‘shortest job fjrst’ (SJF) = same as priority where CPU burst length determines priority …but without preemption for now

priority = job length doesn’t quite work with preemption (preview: need priority = remaining time)

43

slide-56
SLIDE 56

a practical problem

so we want to run the shortest CPU burst fjrst how do I tell which thread that is? we’ll deal with this problem later …kinda

44

slide-57
SLIDE 57

alternating I/O and CPU: SJF

program A

CPU I/O

… program B

C P U

I/O

… program C … shortest CPU burst not run immediately still have “convoy efgect”

45

slide-58
SLIDE 58

alternating I/O and CPU: SJF

program A

CPU I/O

… program B

C P U

I/O

… program C … shortest CPU burst not run immediately still have “convoy efgect”

45

slide-59
SLIDE 59

alternating I/O and CPU: SJF

program A

CPU I/O

… program B

C P U

I/O

… program C … shortest CPU burst not run immediately still have “convoy efgect”

45

slide-60
SLIDE 60

minimizing turnaround time

recall: fjrst-come, fjrst-served best order: had shortest CPU bursts fjrst → scheduling algorithm: ‘shortest job fjrst’ (SJF) = same as priority where CPU burst length determines priority …but without preemption for now

priority = job length doesn’t quite work with preemption (preview: need priority = remaining time)

46

slide-61
SLIDE 61

a practical problem

so we want to run the shortest CPU burst fjrst how do I tell which thread that is? we’ll deal with this problem later …kinda

47

slide-62
SLIDE 62

alternating I/O and CPU: SJF

program A

CPU I/O

… program B

C P U

I/O

… program C … shortest CPU burst not run immediately still have “convoy efgect”

48

slide-63
SLIDE 63

alternating I/O and CPU: SJF

program A

CPU I/O

… program B

C P U

I/O

… program C … shortest CPU burst not run immediately still have “convoy efgect”

48

slide-64
SLIDE 64

alternating I/O and CPU: SJF

program A

CPU I/O

… program B

C P U

I/O

… program C … shortest CPU burst not run immediately still have “convoy efgect”

48

slide-65
SLIDE 65

adding preemption (1)

what if a long job is running, then a short job interrupts it?

short job will wait for too long

solution is preemption — reschedule when new job arrives

new job is shorter — run now!

49

slide-66
SLIDE 66

adding preemption (2)

what if a long job is almost done running, then a medium job interrupts it?

recall: priority = job length long job waits for medium job …for longer than it would take to fjnish worse than letting long job fjnish

solution: priority = remaining time called shortest remaining time fjrst (SRTF)

prioritize by what’s left, not the total

50

slide-67
SLIDE 67

adding preemption (2)

what if a long job is almost done running, then a medium job interrupts it?

recall: priority = job length long job waits for medium job …for longer than it would take to fjnish worse than letting long job fjnish

solution: priority = remaining time called shortest remaining time fjrst (SRTF)

prioritize by what’s left, not the total

50

slide-68
SLIDE 68

alternating I/O and CPU: SRTF

program A

CPU I/O

… program B

C P U

I/O

… program C … B preempts A because it has less time left (that is, B is shorter than the time A has left) C does not preempt A because fjnishing A is faster than running C

51

slide-69
SLIDE 69

alternating I/O and CPU: SRTF

program A

CPU I/O

… program B

C P U

I/O

… program C … B preempts A because it has less time left (that is, B is shorter than the time A has left) C does not preempt A because fjnishing A is faster than running C

51

slide-70
SLIDE 70

alternating I/O and CPU: SRTF

program A

CPU I/O

… program B

C P U

I/O

… program C … B preempts A because it has less time left (that is, B is shorter than the time A has left) C does not preempt A because fjnishing A is faster than running C

51

slide-71
SLIDE 71

alternating I/O and CPU: SRTF

program A

CPU I/O

… program B

C P U

I/O

… program C … B preempts A because it has less time left (that is, B is shorter than the time A has left) C does not preempt A because fjnishing A is faster than running C

51

slide-72
SLIDE 72

SRTF, SJF are optimal (for response time)

SJF minimizes response time/waiting time …if you disallow preemption/leaving CPU deliberately idle SRTF minimizes response time/waiting time …if you ignore context switch costs

52

slide-73
SLIDE 73

aside on names

we’ll use: SRTF for preemptive algorithm with remaining time SJF for non-preemptive with total time=remaining time might see difgerent naming elsewhere/in books, sorry…

53

slide-74
SLIDE 74

knowing job lengths

seems hard sometimes you can ask

common in batch job scheduling systems

and maybe you’ll get accurate answers, even

54

slide-75
SLIDE 75

approximating SJF with priorities

priority 3

0–1 ms timeslice

priority 2

1–10 ms timeslice

priority 1

10–20 ms timeslice

priority 0

20+ ms timeslice

process A process B process C process D process E process F

goal: place processes at priority level based on CPU burst time priority level = allowed time quantum

use more than 1ms at priority 3? — you shouldn’t be there

55

slide-76
SLIDE 76

the SJF/SRTF problem

so, bucket implies CPU burst length well, how does one fjgure that out? e.g. not any of these fjelds

uint sz; // Size of process memory (bytes) pde_t* pgdir; // Page table char *kstack; // Bottom of kernel stack for this process enum procstate state; // Process state int pid; // Process ID struct proc *parent; // Parent process struct trapframe *tf; // Trap frame for current syscall struct context *context; // swtch() here to run process void *chan; // If non-zero, sleeping on chan int killed; // If non-zero, have been killed struct file *ofile[NOFILE]; // Open files struct inode *cwd; // Current directory char name[16]; // Process name (debugging)

56

slide-77
SLIDE 77

the SJF/SRTF problem

so, bucket implies CPU burst length well, how does one fjgure that out? e.g. not any of these fjelds

uint sz; // Size of process memory (bytes) pde_t* pgdir; // Page table char *kstack; // Bottom of kernel stack for this process enum procstate state; // Process state int pid; // Process ID struct proc *parent; // Parent process struct trapframe *tf; // Trap frame for current syscall struct context *context; // swtch() here to run process void *chan; // If non-zero, sleeping on chan int killed; // If non-zero, have been killed struct file *ofile[NOFILE]; // Open files struct inode *cwd; // Current directory char name[16]; // Process name (debugging)

56

slide-78
SLIDE 78

predicting the future

worst case: need to run the program to fjgure it out but heuristics can fjgure it out

(read: often works, but no gaurentee)

key observation: CPU bursts now are like CPU bursts later

intuition: interactive program with lots of I/O tends to stay interactive intuition: CPU-heavy program is going to keep using CPU

57

slide-79
SLIDE 79

taking advantage of history

priority 3 / 1 ms priority 2 / 10 ms priority 1 / 20 ms priority 0 / 100 ms idea: priority = CPU burst length

round robin at each priority with difgerent quantum

process A process B process C process D process E process F run highest priority process used whole timeslice? add to lower priority queue now process A fjnished early? put on higher priority next time process A

58

slide-80
SLIDE 80

taking advantage of history

priority 3 / 1 ms priority 2 / 10 ms priority 1 / 20 ms priority 0 / 100 ms idea: priority = CPU burst length

round robin at each priority with difgerent quantum

process A process B process C process D process E process F run highest priority process used whole timeslice? add to lower priority queue now process A fjnished early? put on higher priority next time process A

58

slide-81
SLIDE 81

taking advantage of history

priority 3 / 1 ms priority 2 / 10 ms priority 1 / 20 ms priority 0 / 100 ms idea: priority = CPU burst length

round robin at each priority with difgerent quantum

process A process B process C process D process E process F run highest priority process used whole timeslice? add to lower priority queue now process A fjnished early? put on higher priority next time process A

58

slide-82
SLIDE 82

taking advantage of history

priority 3 / 1 ms priority 2 / 10 ms priority 1 / 20 ms priority 0 / 100 ms idea: priority = CPU burst length

round robin at each priority with difgerent quantum

process A process B process C process D process E process F run highest priority process used whole timeslice? add to lower priority queue now process A fjnished early? put on higher priority next time process A

58

slide-83
SLIDE 83

multi-level feedback queue idea

higher priority = shorter time quantum (before interrupted) adjust priority and timeslice based on last timeslice intuition: process always uses same CPU burst length? ends up at “right” priority

rises up to queue with quantum just shorter than it’s burst then goes down to next queue, then back up, then down, then up, etc.

59

slide-84
SLIDE 84

cheating multi-level feedback queuing

algorithm: don’t use entire time quantum? priority increases getting all the CPU:

while (true) { useCpuForALittleLessThanMinimumTimeQuantum(); yieldCpu(); }

60

slide-85
SLIDE 85

multi-level feedback queuing and fairness

suppose we are running several programs:

  • A. one very long computation that doesn’t need any I/O

B1 through B1000. 1000 programs processing data on disk

  • C. one interactive program

how much time will A get? almost none — starvation

intuition: the B programs have higher priority than A because it has smaller CPU bursts

61

slide-86
SLIDE 86

multi-level feedback queuing and fairness

suppose we are running several programs:

  • A. one very long computation that doesn’t need any I/O

B1 through B1000. 1000 programs processing data on disk

  • C. one interactive program

how much time will A get? almost none — starvation

intuition: the B programs have higher priority than A because it has smaller CPU bursts

61

slide-87
SLIDE 87

providing fairness

an additional heuristic: avoid starvation track processes that haven’t run much recently …and run them earlier than they “should” be confmicts with SJF/SRTF goal …but typically done by multi-level feedback queue implementations

62