scheduling 3 threads
play

Scheduling 3 / Threads 1 last time shortest job fjrst/shortest - PowerPoint PPT Presentation

Scheduling 3 / Threads 1 last time shortest job fjrst/shortest remaining time fjrst response time optimizing SJF without preemption SRTF with preemption multi-level feedback scheduling process uses whole quantum? move down in


  1. Scheduling 3 / Threads 1

  2. last time shortest job fjrst/shortest remaining time fjrst response time optimizing SJF — without preemption SRTF — with preemption multi-level feedback scheduling process uses whole quantum? move down in priority process uses less than quantum? move up in priority (next time it runs) maybe extra work to avoid starvation proportional share scheduling 2x share — 2x CPU time lottery scheduling — weighted random set weights to approximate priority or whatever wanted 2 priority ∼ quantum length

  3. lottery scheduler assignment track “ticks” process runs = number of times scheduled simplifjcation: don’t care if process uses less than timeslice new system call: getprocesesinfo copy info from process table into user space new system call: settickets set number of tickets for current process should be inherited by fork scheduler: choose pseudorandom weighted by tickets caution! no fmoating point 3

  4. lottery scheduler and interactivity suppose two processes A, B, each have same # of tickets process A is CPU-bound process B does lots of I/O result: B runs less than A 50% when both runnable 0% of the time when only A runnable (waiting on I/O) is this fair? depends who you ask one idea: B should get more tickets for waiting 4 lottery scheduler: run equally when both can run

  5. lottery scheduler and interactivity suppose two processes A, B, each have same # of tickets process A is CPU-bound process B does lots of I/O result: B runs less than A 50% when both runnable 0% of the time when only A runnable (waiting on I/O) is this fair? depends who you ask one idea: B should get more tickets for waiting 4 lottery scheduler: run equally when both can run

  6. recall: proportional share randomness lottery scheduler: variance was a problem consistent over the long-term inconsistent over the short-term want something more like weighted round-robin run one, then the other but run some things more often (depending on weight/# tickets) 5

  7. deterministic proportional share scheduler Linux’s scheduler is a deterministic proportional share scheduler …with a difgerent solution to interactivity problem 6

  8. Linux’s Completely Fair Scheduler (CFS) Linux’s default scheduler is a proportional share scheduler… …without randomization (consistent) (handles many threads/processes) …which favors interactive programs …which adjusts timeslices dynamically shorter timeslices if many things to run 7 …with O (log N ) scheduling decision

  9. Linux’s Completely Fair Scheduler (CFS) Linux’s default scheduler is a proportional share scheduler… …without randomization (consistent) (handles many threads/processes) …which favors interactive programs …which adjusts timeslices dynamically shorter timeslices if many things to run 8 …with O (log N ) scheduling decision

  10. adjustments for threads that are new or were sleeping CFS: tracking runtime incremented when run based how long it runs more/less important thread? multiply adjustments by factor too big an advantage to start at runtime 0 data structure: balanced tree 9 each thread has a virtual runtime ( ∼ how long it’s run) scheduling decision: run thread with lowest virtual runtime

  11. CFS: tracking runtime incremented when run based how long it runs more/less important thread? multiply adjustments by factor too big an advantage to start at runtime 0 scheduling decision: run thread with lowest virtual runtime data structure: balanced tree 9 each thread has a virtual runtime ( ∼ how long it’s run) adjustments for threads that are new or were sleeping

  12. virtual time, always ready, 1 ms quantum A: 1.50 ms if everyone uses whole quantum same efgect as round robin run thread with lowest total time update current thread’s time at each time: 3 ms 2 ms 1 ms 0 ms C: 2.40 ms B: 2.25 ms A A C: 1.40 ms B: 2.25 ms A: 1.50 ms C C: 1.40 ms B: 1.25 ms A: 1.50 ms B C: 1.40 ms B: 1.25 ms A: 0.50 ms 10

  13. virtual time, always ready, 1 ms quantum A: 1.50 ms if everyone uses whole quantum same efgect as round robin run thread with lowest total time update current thread’s time at each time: 3 ms 2 ms 1 ms 0 ms C: 2.40 ms B: 2.25 ms A A C: 1.40 ms B: 2.25 ms A: 1.50 ms C C: 1.40 ms B: 1.25 ms A: 1.50 ms B C: 1.40 ms B: 1.25 ms A: 0.50 ms 10

  14. virtual time, always ready, 1 ms quantum A: 1.50 ms if everyone uses whole quantum same efgect as round robin run thread with lowest total time update current thread’s time at each time: 3 ms 2 ms 1 ms 0 ms C: 2.40 ms B: 2.25 ms A A C: 1.40 ms B: 2.25 ms A: 1.50 ms C C: 1.40 ms B: 1.25 ms A: 1.50 ms B C: 1.40 ms B: 1.25 ms A: 0.50 ms 10

  15. what about threads waiting for I/O, …? should be advantage for processes not using the CPU as much haven’t used CPU for a while — deserve priority now …but don’t want to let them hog the CPU Linux solution: newly ready task time = max of its prior virtual time a little less than minimum virtual time (of already ready tasks) not runnable briefmy? still get your share of CPU (catch up from prior virtual time) not runnable for a while? get bounded advantage 11

  16. what about threads waiting for I/O, …? should be advantage for processes not using the CPU as much haven’t used CPU for a while — deserve priority now …but don’t want to let them hog the CPU Linux solution: newly ready task time = max of its prior virtual time a little less than minimum virtual time (of already ready tasks) not runnable briefmy? still get your share of CPU (catch up from prior virtual time) not runnable for a while? get bounded advantage 11

  17. A doesn’t use whole time… time it’s entitled to 3 ms 2 ms 1 ms 0 ms C: 2.00 ms B: 2.25 ms A: 1.75 ms A C: 1.00 ms B: 2.25 ms A: 1.75 ms C since it still has A scheduled early C: 1.00 ms B: 2.25 ms A(ready): 0.75 ms A C: 1.00 ms B: 1.25 ms A(not ready): 0.75 ms B C: 1.00 ms B: 1.25 ms A: 0.25 ms 12

  18. A doesn’t use whole time… time it’s entitled to 3 ms 2 ms 1 ms 0 ms C: 2.00 ms B: 2.25 ms A: 1.75 ms A C: 1.00 ms B: 2.25 ms A: 1.75 ms C since it still has A scheduled early C: 1.00 ms B: 2.25 ms A(ready): 0.75 ms A C: 1.00 ms B: 1.25 ms A(not ready): 0.75 ms B C: 1.00 ms B: 1.25 ms A: 0.25 ms 12

  19. A doesn’t use whole time… time it’s entitled to 3 ms 2 ms 1 ms 0 ms C: 2.00 ms B: 2.25 ms A: 1.75 ms A C: 1.00 ms B: 2.25 ms A: 1.75 ms C since it still has A C: 1.00 ms B: 2.25 ms A(ready): 0.75 ms A C: 1.00 ms B: 1.25 ms A(not ready): 0.75 ms B C: 1.00 ms B: 1.25 ms A: 0.25 ms 12 A scheduled early

  20. A doesn’t use whole time… time it’s entitled to 3 ms 2 ms 1 ms 0 ms C: 2.00 ms B: 2.25 ms A: 1.75 ms A C: 1.00 ms B: 2.25 ms A: 1.75 ms C since it still has A C: 1.00 ms B: 2.25 ms A(ready): 0.75 ms A C: 1.00 ms B: 1.25 ms A(not ready): 0.75 ms B C: 1.00 ms B: 1.25 ms A: 0.25 ms 12 A scheduled early

  21. A’s long sleep… giving too much advantage 3 ms 2 ms 1 ms 0 ms C: 51.70 ms B: 52.00 ms A(sleeping): 50.75 ms C C: 51.70 ms B: 51.00 ms A(sleeping): 50.75 ms B adjusted to avoid B A’s virtual time C: 51.70 ms B: 51.00 ms A(now ready): 50.00 ms A C: 50.95 ms B: 51.00 ms A(sleeping): 1.50 ms C C: 50.95 ms B: 50.00 ms A(sleeping): 1.50 ms 13

  22. A’s long sleep… giving too much advantage 3 ms 2 ms 1 ms 0 ms C: 51.70 ms B: 52.00 ms A(sleeping): 50.75 ms C C: 51.70 ms B: 51.00 ms A(sleeping): 50.75 ms B adjusted to avoid B A’s virtual time C: 51.70 ms B: 51.00 ms A(now ready): 50.00 ms A C: 50.95 ms B: 51.00 ms A(sleeping): 1.50 ms C C: 50.95 ms B: 50.00 ms A(sleeping): 1.50 ms 13

  23. A’s long sleep… giving too much advantage 3 ms 2 ms 1 ms 0 ms C: 51.70 ms B: 52.00 ms A(sleeping): 50.75 ms C C: 51.70 ms B: 51.00 ms A(sleeping): 50.75 ms B adjusted to avoid B A’s virtual time C: 51.70 ms B: 51.00 ms A(now ready): 50.00 ms A C: 50.95 ms B: 51.00 ms A(sleeping): 1.50 ms C C: 50.95 ms B: 50.00 ms A(sleeping): 1.50 ms 13

  24. A’s long sleep… giving too much advantage 3 ms 2 ms 1 ms 0 ms C: 51.70 ms B: 52.00 ms A(sleeping): 50.75 ms C C: 51.70 ms B: 51.00 ms A(sleeping): 50.75 ms B adjusted to avoid B A’s virtual time C: 51.70 ms B: 51.00 ms A(now ready): 50.00 ms A C: 50.95 ms B: 51.00 ms A(sleeping): 1.50 ms C C: 50.95 ms B: 50.00 ms A(sleeping): 1.50 ms 13

  25. handling proportional sharing solution: multiply used time by weight e.g. 1 ms of CPU time costs process 2 ms of virtual time 14 higher weight = ⇒ process less favored to run

  26. CFS quantum lengths goals fjrst priority: constrain minimum quantum length (default: 0.75ms) avoid too-frequent context switching second priority: run every process “soon” (default: 6ms) avoid starvation quantum max(fjxed window / num processes, minimum quantum) 15

  27. CFS quantum lengths goals fjrst priority: constrain minimum quantum length (default: 0.75ms) avoid too-frequent context switching second priority: run every process “soon” (default: 6ms) avoid starvation 15 quantum ≈ max(fjxed window / num processes, minimum quantum)

  28. CFS: avoiding excessive context switching confmicting goals: schedule newly ready tasks immediately (assuming less virtual time than current task) avoid excessive context switches CFS rule: default threshold: 1 ms (otherwise, wait until quantum is done) 16 if virtual time of new task < current virtual time by threshold

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