CPU Scheduling Outline
|
|
|
- Jasper Cameron
- 10 years ago
- Views:
Transcription
1 CPU Scheduling Outline What is scheduling in the OS? What are common scheduling criteria? How to evaluate scheduling algorithms? What are common scheduling algorithms? How is thread scheduling different from process scheduling? What are the issues in multiple-processor scheduling? Operating systems case studies. 1
2 Basic Concepts Multiprogramming most processes alternate between CPU bursts and I/O bursts CPU free and idle during I/O burst schedule another process on the CPU maximizes CPU utilization CPU bound process spends most of its time in the CPU at least a few long CPU bursts I/O bound process spends most its time performing I/O several short CPU bursts 2
3 CPU Scheduler Responsible for the selection of the next running process part of the OS dispatcher selects from among the processes in memory that are ready to execute based on a particular strategy When does CPU scheduling happen? process switches from running to waiting state process switches from running to ready state process switches from waiting to ready state process terminates Scheduling under 1 and 4 is nonpreemptive All other scheduling is preemptive 3
4 Preemptive Vs. Non-preemptive CPU Scheduling Non-preemptive scheduling process voluntarily releases the CPU (conditions 1 and 4) easy, requires no special hardware poor response time for interactive and real-time systems Preemptive scheduling OS can force a running process involuntarily relinquish the CPU arrival of a higher priority process running process exceeds its time-slot may require special hardware, eg., timer may require synchronization mechanisms to maintain data consistency complicates design of the kernel favored by most OSes 4
5 Dispatcher Scheduler is a part of the dispatcher module in the OS Functions of the dispatcher get the new process from the scheduler switch out the context of the current process give CPU control to the new process jump to the proper location in the new program to restart that program Time taken by the dispatcher to stop one process and start another running is called the dispatch latency 5
6 Scheduling Queues Job queue: consists of all processes all jobs (processes), once submitted, are in the job queue scheduled by the long-term scheduler Ready queue: consists of processes in memory processes ready and waiting for execution scheduled by the short-term or CPU scheduler Device queue: processes waiting for a device multiple processes can be blocked for the same device I/O completion moves process back to ready queue 6
7 Scheduling Queues (2) 7
8 Performance Metrics for CPU Scheduling CPU utilization: percentage of time that the CPU is busy Throughput: number of processes that complete their execution per time unit Turnaround time: amount of time to execute a particular process (submission time to completion time) Waiting time: amount of time a process has been waiting in the ready queue Response time: amount of time it takes from when a request was submitted until the first response is produced Scheduling goals maximize CPU utilization and throughput minimize turnaround time, waiting time and response time be fair to all processes and all users 8
9 Method for Evaluating CPU Scheduling Algorithms Evaluation criteria define relative importance of the performance metrics include other system-specific measures Deterministic modeling takes a particular predetermined workload and defines the performance of each algorithm for that workload simple and fast, gives exact numbers difficult to generalize results can recognize algorithm performance trends over several inputs used for explaining scheduling algorithms used in the rest of this chapter! 9
10 Workload Models and Gantt Charts Workload model: Gantt charts: Process Arrival Time Burst Time P1 0 8 P2 1 4 P P4 6 2 bar chart to illustrate a particular schedule figure shows batch schedule P1 P2 P3 P
11 Deterministic Modeling Example Suppose we have processes A, B, and C, submitted at time 0. We want to know the response time, waiting time, and turnaround time of process A turnaround time wait time response time = A B C A B C A C A C Time 11
12 Deterministic Modeling Example Suppose we have processes A, B, and C, submitted at time 0. We want to know the response time, waiting time, and turnaround time of process B. turnaround time wait time response time + A B C A B C A C A C Time 12
13 Deterministic Modeling Example Suppose we have processes A, B, and C, submitted at time 0. We want to know the response time, waiting time, and turnaround time of process C turnaround time wait time response time A B C A B C A C A C Time 13
14 Method for Evaluating CPU Scheduling Algorithms (2) Queueing models analytically model the queue behavior (under some assumptions) involves a lot of complicated math can only handle a limited number of distributions and algorithms may not be very accurate because of unrealistic assumptions Simulations get a workload information from a system simulate the scheduling algorithm compute the performance metrics time and space intensive is practically the best evaluation method 14
15 Simulation Illustration 15
16 Scheduling Algorithms First Come, First Served (FCFS) Shortest Job First (SJF) Priority Based Round Robin (RR) Multilevel Queue Scheduling Multilevel Feedback Queue Scheduling 16
17 First Come, First Served Scheduling Assigns the CPU based on the order of the requests. Implemented using a FIFO queue. No preemption Advantages straightforward, simple to write and understand Disadvantages average waiting time may be too long huge variation based on when processes arrive cannot balance CPU-bound and I/O-bound processes convoy effect, short process behind long process cannot be used for time-sharing systems 17
18 FCFS Scheduling Example Process Arrival Time Burst Time P P2 0 3 P3 0 3 Suppose that the processes arrive in the order: P 1, P 2, P 3 P 1 P 2 P Waiting time for P 1 = 0; P 2 = 24; P 3 = 27 Average waiting time: ( )/3 = 17 18
19 FCFS Scheduling (2) Suppose that the processes arrive in the order P 2, P 3, P 1 The Gantt chart for the schedule is: P 2 P 3 P Waiting time for P 1 = 6; P 2 = 0 ; P 3 = 3 Average waiting time: ( )/3 = 3 Much better than previous case but large variation 19
20 Shortest Job First (SJF) Scheduling Order each process based on the length of its next CPU burst Allocate CPU to the process from the front of the list shortest next CPU burst Advantages SJF is optimal achieves minimum average waiting time for a given set of processes Disadvantages difficult to know the length of the next CPU request can ask the user, who may not know any better! model-based prediction can lead to process starvation 20
21 Example of SJF Process Arrival Time Burst Time P1 0 6 P2 0 8 P3 0 7 P4 0 3 SJF scheduling chart P 4 P P 3 1 P Average waiting time = ( ) / 4 = 7 21
22 Estimate Length of Next CPU Burst Can only estimate the length next CPU burst similar to previous CPU bursts? how relevant is the history of previous CPU bursts? Calculated as an exponential average of the previous CPU bursts for the process Formula: t n actual length of n n 1 3., 0 1 th CPU burst predictedvaluefor thenext CPU burst n 1 t n 1 n 22
23 Estimate Length of the Next CPU Burst (2) =0 n+1 = n Recent history does not count =1 n+1 = t n Only the actual last CPU burst counts If we expand the formula, we get: n+1 = t n +(1 - ) t n (1 - ) j t n -j + +(1 - ) n +1 0 Since both and (1 - ) are less than or equal to 1, each successive term has less weight than its predecessor 23
24 Estimate Length of the Next CPU Burst (3) 24
25 Preemptive SJF Scheduling New shorter process can preempt longer current running process Process Arrival Time Burst Time P1 0 8 P2 1 4 P3 2 9 P4 3 5 Shortest Remaining Time First scheduling chart: P P 2 P 4 P 1 P Average waiting time =
26 Priority Scheduling A priority number associated with each process CPU allocated to the process with the highest priority equal priority processes scheduled in FCFS order Internally determined priorities time limit, memory requirements, etc SJF uses next CPU burst for its priority (how?) Externally specified priorities process importance, user-level, etc Can be preemptive or non-preemptive Text uses low numbers for high priorities 26
27 Advantages Priority Scheduling (2) priorities can be made as general as needed Disadvantage low priority process may never execute (indefinite blocking or starvation) Aging technique to prevent starvation increase priority of processes with time 27
28 Round Robin Scheduling (RR) Round robin algorithm arrange jobs in FCFS order allocate CPU to the first job in the queue for one time-slice preempt job, add it to the end of the queue allocate CPU to the next job and continue... One time slice is called a time quantum Is by definition preemptive can be considered as FCFS with preemption Advantages simple, avoids starvation Disadvantages may involve a large context switch overhead higher average waiting time than SJF an I/O bound process on a heavily loaded system will run slower 28
29 Example of RR with Time Quantum = 4 Process Burst Times P1 24 P2 3 P3 3 The Gantt scheduling chart is: P 1 P 2 P 3 P 1 P 1 P 1 P 1 P Average waiting time =
30 Performance Round Robin Scheduling (2) depends on the length of the time quantum large time quantum FCFS like behavior small time quantum large context switch overhead Generally, time quanta range from milliseconds context switch time is less than 10 microseconds RR has larger waiting time, but provides better response time for interactive systems Turnaround time depends on the size of the time quantum 30
31 Turnaround Time Varies With The Time Quantum 31
32 Multilevel Queue Ready queue is partitioned into separate queues: foreground (interactive) background (batch) Each queue has its own scheduling algorithm foreground RR background FCFS Scheduling must be done between the queues Fixed priority scheduling; (i.e., serve all from foreground then from background). Possibility of starvation. Time slice each queue gets a certain amount of CPU time which it can schedule amongst its processes; i.e., 80% to foreground in RR, 20% to background in FCFS 32
33 Multilevel Queue Scheduling Used when processes can be easily classified into groups each group has a different scheduling requirement Algorithm partition ready queue into multiple queues determine some scheduling algorithm for each processes in each queue FCFS, SJF, RR, etc. determine inter-queue scheduling fixed priority, fixed CPU utilization per queue, etc. permanently assign a process to a particular queue 33
34 Multilevel Queue Scheduling Example Example: foreground Vs. background processes foreground are interactive, background are batch processes foreground have priority over background intra-queue scheduling foreground response time, background low overhead, no starvation foreground RR, background FCFS scheduling between the queues fixed priority scheduling; foreground higher priority time slice; 80% to foreground in RR, 20% to background in FCFS 34
35 Multilevel Queue Scheduling Example (2) 35
36 Multilevel Feedback Queue Scheduling Allows process to move between queues used to dynamically sort process based on their typical CPU bursts Algorithm multiple queues with different fixed priorities round robin at each priority level run highest priority jobs first, once those finish, run next highest priority, etc jobs start in the highest priority queue if time slice expires, drop the job by one level if time slice does not expire, push the job up by one level 36
37 Example of Multilevel Feedback Queues time = 0 Priority 0 (time slice = 1): A B C Priority 1 (time slice = 2): Priority 2 (time slice = 4): Time 37
38 Example of Multilevel Feedback Queues time = 1 Priority 0 (time slice = 1): Priority 1 (time slice = 2): Priority 2 (time slice = 4): B C A 0 1 A Time 38
39 Example of Multilevel Feedback Queues time = 2 Priority 0 (time slice = 1): C 0 4 Priority 1 (time slice = 2): Priority 2 (time slice = 4): 0 A 1 B 3 A B Time 39
40 Example of Multilevel Feedback Queues Priority 0 (time slice = 1): time = 3 Priority 1 (time slice = 2): Priority 2 (time slice = 4): A B C A B C Time 40
41 Example of Multilevel Feedback Queues Priority 0 (time slice = 1): time = 3 Priority 1 (time slice = 2): Priority 2 (time slice = 4): A B C Suppose A is blocked on I/O A B C Time 41
42 Example of Multilevel Feedback Queues time = 3 Priority 0 (time slice = 1): 0 A 1 Priority 1 (time slice = 2): Priority 2 (time slice = 4): 0 B 2 C 5 Suppose A is blocked on I/O A B C Time 42
43 Example of Multilevel Feedback Queues time = 5 Priority 0 (time slice = 1): A 0 1 Priority 1 (time slice = 2): C 0 3 Priority 2 (time slice = 4): Suppose A now returns from I/O A B C B Time 43
44 Example of Multilevel Feedback Queues Priority 0 (time slice = 1): time = 6 Priority 1 (time slice = 2): C 0 3 Priority 2 (time slice = 4): A B C B A Time 44
45 Example of Multilevel Feedback Queues Priority 0 (time slice = 1): time = 8 Priority 1 (time slice = 2): Priority 2 (time slice = 4): 0 C 3 A B C B A C Time 45
46 Example of Multilevel Feedback Queues Priority 0 (time slice = 1): time = 9 Priority 1 (time slice = 2): Priority 2 (time slice = 4): A B C B A C C Time 46
47 Multilevel Feedback Queues Approximates SRTF a CPU-bound job drops like a rock I/O-bound jobs stay near the top Still unfair for long running jobs counter-measure: Aging increase the priority of long running jobs if they are not serviced for a period of time tricky to tune aging 47
48 Lottery Scheduling Adaptive scheduling approach to address the fairness problem Algorithm each process owns some tickets on each time slice, a ticket is randomly picked on average, the allocated CPU time is proportional to the number of tickets given to each job To approximate SJF, short jobs get more tickets To avoid starvation, each job gets at least one ticket 48
49 Lottery Scheduling Example Short jobs: 10 tickets each Long jobs: 1 ticket each # short jobs/# long jobs % of CPU for each short job % of CPU for each long job 1/1 91% 9% 0/2 0% 50% 2/0 50% 0% 10/1 10% 1% 1/10 50% 5% 49
50 Thread Scheduling On systems supporting threads kernel threads are the real scheduling entities user threads need to be mapped to kernel threads for execution scheduling attributes may be set at thread creation Contention-scope PTHREAD_SCOPE_PROCESS group user threads to contend for common kernel thread(s) PTHREAD_SCOPE_SYSTEM directly assign to kernel thread, contends with other kernel threads inheritsched PTHREAD_INHERIT_SCHED inherit scheduling policy and priority from parent thread PTHREAD_EXPLICIT_SCHED explicitly specify scheduling policy and priority of the new thread 50
51 schedpolicy Thread Scheduling (2) SCHED_OTHER regular non-real-time scheduling SCHED_RR real-time round-robin scheduling SCHED_FIFO real-time FCFS scheduling schedparam set/get the priority of the thread All parameters only relevant if thread library supports non-one-to-one user level threads for real-time scheduling 51
52 Pthread Scheduling Example int main(int argc, char *argv[]){ int i; pthread t tid[5]; pthread attr t attr; pthread attr init(&attr); /* get the default attributes */ /* set the scheduling algorithm to PROCESS or SYSTEM */ pthread attr setscope(&attr, PTHREAD SCOPE SYSTEM); /* set the scheduling policy - FIFO, RT, or OTHER */ pthread attr setschedpolicy(&attr, SCHED OTHER); } for (i = 0; i < 5; i++) pthread create(&tid[i],&attr,runner,null); for (i = 0; i < NUM THREADS; i++) pthread join(tid[i], NULL); void *runner(void *param){ } printf("i am a thread\n"); pthread exit(0); 52
53 Multiple-Processor Scheduling Issues Multiprocessor Scheduling asymmetric multiprocessing only one processor accesses the system data structures simple symmetric multiprocessing (SMP) each processor is self-scheduling need to maintain scheduler data structures synchronization Processor affinity process has affinity for processor on which it is currently running reduce memory and cache overhead memory affinity important for NUMA architectures soft and hard processor affinity how strictly OS maintains affinity policy 53
54 NUMA and CPU Scheduling 54
55 Multiple-Processor Scheduling Issues Load balancing keep workload evenly distributed across all CPUs important if each processor has its own queue of ready processes push and pull migration push or pull tasks towards idle processors Multicore processors multiple processor cores on same physical chip uniform memory access, faster intercore communication may be simultaneously multithreaded (SMT, or hyperthreaded) instructions from multiple threads simultaneously live in different pipeline stages OS given a view of one processor per hardware thread may reduce memory stalls may increase resource contention 55
56 Case Studies: Solaris Scheduling Priority-based scheduling Six classes real time, system, fair share, fixed priority, time shar, and interactive (in order of priority) different priorities and scheduling algorithms in different classes The default class is time sharing uses multilevel feedback queue with variable time slices inverse relationship between priorities and time slices good response time for interactive processes and good throughput for CPU-bound processes see the dispatch table 56
57 Solaris Dispatch Table 57
58 Case Studies: Solaris Scheduling (2) Real-time scheduling class highest priority, bounded time response should be careful before putting a process in this class System scheduling class reserved for kernel threads (scheduling and paging daemon) Fixed priority scheduling class priorities not dynamically adjusted Fair share scheduling class based on lottery scheduling processes grouped into projects; each project assigned some nubmer of lottery tokens processes within each project share the token fairly Process class priorities converted to global priorities 58
59 Map to Global Priorities 59
60 Case Studies: Linux Scheduling (v2.5) Linux scheduling (version 2.5) constant order O(1) scheduling time support for SMP systems provide fairness and support for interactive tasks Priority-based, preemptive, global round-robin scheduling two priority ranges: time-sharing and real-time Real-time range from 0 to 99 and nice value from 100 to 140 numerically lower values have higher priorities higher priority tasks are give longer time slice Task run-able as long as time left in time slice (active) If no time left (expired), not run-able until all other tasks use their slices see mapping figure 60
61 Priorities and Time-slice length 61
62 Case Studies: Linux Scheduling (v2.5) More about Linux scheduling maintains two arrays: active and expired tasks linked in arrays according to their priorities active tasks on expiration of their time quanta move to the expired array real-time tasks have static priorities normal tasks have dynamic priorities 62
63 Case Studies: Linux Scheduling (v2.5) Even more about Linux scheduling After the time slice of a process is used up, the process must wait until all ready processes to use up their time slice (or be blocked) round-robin approach no starvation problem for a user process, its priority may + or 5 depending whether the process is I/O- bound or CPU-bound I/O bound process is given higher priority 63
64 Case Studies: Linux Scheduling (v ) Completely Fair Scheduler (CFS) Scheduling classes, each with specific priority scheduler picks highest priority task in highest scheduling class rather than quantum based on fixed time allotments, based on proportion of CPU time two scheduling classes included (default, real-time), others can be added Quantum calculated based on nice value from -20 to +19 lower value is higher priority calculates target latency interval of time during which task should run at least once target latency can increase if say number of active tasks increases CFS scheduler maintains per task virtual run time in variable vruntime associated with decay factor based on priority of task lower priority is higher decay rate normal default priority yields virtual run time = actual run time task with lowest virtual run time runs next 64
65 Case Studies: Linux Scheduling (v ) 65
66 Case Studies: Summary Basic idea for schedule user processes is the same for all systems lower priority for CPU bound process increase priority for I/O bound process The scheduling in Solaris / Linux is more concerned about fairness more popular as the OSes for servers The scheduling in Window XP is more concerned about user perceived performance more popular as the OS for personal computers 66
Chapter 5: CPU Scheduling. Operating System Concepts 8 th Edition
Chapter 5: CPU Scheduling Silberschatz, Galvin and Gagne 2009 Chapter 5: CPU Scheduling Basic Concepts Scheduling Criteria Scheduling Algorithms Thread Scheduling Multiple-Processor Scheduling Operating
Chapter 5 Process Scheduling
Chapter 5 Process Scheduling CPU Scheduling Objective: Basic Scheduling Concepts CPU Scheduling Algorithms Why Multiprogramming? Maximize CPU/Resources Utilization (Based on Some Criteria) CPU Scheduling
Objectives. Chapter 5: Process Scheduling. Chapter 5: Process Scheduling. 5.1 Basic Concepts. To introduce CPU scheduling
Objectives To introduce CPU scheduling To describe various CPU-scheduling algorithms Chapter 5: Process Scheduling To discuss evaluation criteria for selecting the CPUscheduling algorithm for a particular
Objectives. Chapter 5: CPU Scheduling. CPU Scheduler. Non-preemptive and preemptive. Dispatcher. Alternating Sequence of CPU And I/O Bursts
Objectives Chapter 5: CPU Scheduling Introduce CPU scheduling, which is the basis for multiprogrammed operating systems Describe various CPU-scheduling algorithms Discuss evaluation criteria for selecting
2. is the number of processes that are completed per time unit. A) CPU utilization B) Response time C) Turnaround time D) Throughput
Import Settings: Base Settings: Brownstone Default Highest Answer Letter: D Multiple Keywords in Same Paragraph: No Chapter: Chapter 5 Multiple Choice 1. Which of the following is true of cooperative scheduling?
Announcements. Basic Concepts. Histogram of Typical CPU- Burst Times. Dispatcher. CPU Scheduler. Burst Cycle. Reading
Announcements Reading Chapter 5 Chapter 7 (Monday or Wednesday) Basic Concepts CPU I/O burst cycle Process execution consists of a cycle of CPU execution and I/O wait. CPU burst distribution What are the
CPU Scheduling. Basic Concepts. Basic Concepts (2) Basic Concepts Scheduling Criteria Scheduling Algorithms Batch systems Interactive systems
Basic Concepts Scheduling Criteria Scheduling Algorithms Batch systems Interactive systems Based on original slides by Silberschatz, Galvin and Gagne 1 Basic Concepts CPU I/O Burst Cycle Process execution
CPU Scheduling. CPU Scheduling
CPU Scheduling Electrical and Computer Engineering Stephen Kim ([email protected]) ECE/IUPUI RTOS & APPS 1 CPU Scheduling Basic Concepts Scheduling Criteria Scheduling Algorithms Multiple-Processor Scheduling
CPU Scheduling. Core Definitions
CPU Scheduling General rule keep the CPU busy; an idle CPU is a wasted CPU Major source of CPU idleness: I/O (or waiting for it) Many programs have a characteristic CPU I/O burst cycle alternating phases
ICS 143 - Principles of Operating Systems
ICS 143 - Principles of Operating Systems Lecture 5 - CPU Scheduling Prof. Nalini Venkatasubramanian [email protected] Note that some slides are adapted from course text slides 2008 Silberschatz. Some
Scheduling. Scheduling. Scheduling levels. Decision to switch the running process can take place under the following circumstances:
Scheduling Scheduling Scheduling levels Long-term scheduling. Selects which jobs shall be allowed to enter the system. Only used in batch systems. Medium-term scheduling. Performs swapin-swapout operations
Comp 204: Computer Systems and Their Implementation. Lecture 12: Scheduling Algorithms cont d
Comp 204: Computer Systems and Their Implementation Lecture 12: Scheduling Algorithms cont d 1 Today Scheduling continued Multilevel queues Examples Thread scheduling 2 Question A starvation-free job-scheduling
CPU SCHEDULING (CONT D) NESTED SCHEDULING FUNCTIONS
CPU SCHEDULING CPU SCHEDULING (CONT D) Aims to assign processes to be executed by the CPU in a way that meets system objectives such as response time, throughput, and processor efficiency Broken down into
Deciding which process to run. (Deciding which thread to run) Deciding how long the chosen process can run
SFWR ENG 3BB4 Software Design 3 Concurrent System Design 2 SFWR ENG 3BB4 Software Design 3 Concurrent System Design 11.8 10 CPU Scheduling Chapter 11 CPU Scheduling Policies Deciding which process to run
Operating System: Scheduling
Process Management Operating System: Scheduling OS maintains a data structure for each process called Process Control Block (PCB) Information associated with each PCB: Process state: e.g. ready, or waiting
OPERATING SYSTEMS SCHEDULING
OPERATING SYSTEMS SCHEDULING Jerry Breecher 5: CPU- 1 CPU What Is In This Chapter? This chapter is about how to get a process attached to a processor. It centers around efficient algorithms that perform
Operating Systems. III. Scheduling. http://soc.eurecom.fr/os/
Operating Systems Institut Mines-Telecom III. Scheduling Ludovic Apvrille [email protected] Eurecom, office 470 http://soc.eurecom.fr/os/ Outline Basics of Scheduling Definitions Switching
Road Map. Scheduling. Types of Scheduling. Scheduling. CPU Scheduling. Job Scheduling. Dickinson College Computer Science 354 Spring 2010.
Road Map Scheduling Dickinson College Computer Science 354 Spring 2010 Past: What an OS is, why we have them, what they do. Base hardware and support for operating systems Process Management Threads Present:
4003-440/4003-713 Operating Systems I. Process Scheduling. Warren R. Carithers ([email protected]) Rob Duncan ([email protected])
4003-440/4003-713 Operating Systems I Process Scheduling Warren R. Carithers ([email protected]) Rob Duncan ([email protected]) Review: Scheduling Policy Ideally, a scheduling policy should: Be: fair, predictable
W4118 Operating Systems. Instructor: Junfeng Yang
W4118 Operating Systems Instructor: Junfeng Yang Outline Introduction to scheduling Scheduling algorithms 1 Direction within course Until now: interrupts, processes, threads, synchronization Mostly mechanisms
Multiprocessor Scheduling and Scheduling in Linux Kernel 2.6
Multiprocessor Scheduling and Scheduling in Linux Kernel 2.6 Winter Term 2008 / 2009 Jun.-Prof. Dr. André Brinkmann [email protected] Universität Paderborn PC² Agenda Multiprocessor and
CPU Scheduling. CSC 256/456 - Operating Systems Fall 2014. TA: Mohammad Hedayati
CPU Scheduling CSC 256/456 - Operating Systems Fall 2014 TA: Mohammad Hedayati Agenda Scheduling Policy Criteria Scheduling Policy Options (on Uniprocessor) Multiprocessor scheduling considerations CPU
Processor Scheduling. Queues Recall OS maintains various queues
Processor Scheduling Chapters 9 and 10 of [OS4e], Chapter 6 of [OSC]: Queues Scheduling Criteria Cooperative versus Preemptive Scheduling Scheduling Algorithms Multi-level Queues Multiprocessor and Real-Time
Scheduling. Yücel Saygın. These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum
Scheduling Yücel Saygın These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum 1 Scheduling Introduction to Scheduling (1) Bursts of CPU usage alternate with periods
Process Scheduling CS 241. February 24, 2012. Copyright University of Illinois CS 241 Staff
Process Scheduling CS 241 February 24, 2012 Copyright University of Illinois CS 241 Staff 1 Announcements Mid-semester feedback survey (linked off web page) MP4 due Friday (not Tuesday) Midterm Next Tuesday,
Job Scheduling Model
Scheduling 1 Job Scheduling Model problem scenario: a set of jobs needs to be executed using a single server, on which only one job at a time may run for theith job, we have an arrival timea i and a run
Scheduling 0 : Levels. High level scheduling: Medium level scheduling: Low level scheduling
Scheduling 0 : Levels High level scheduling: Deciding whether another process can run is process table full? user process limit reached? load to swap space or memory? Medium level scheduling: Balancing
Main Points. Scheduling policy: what to do next, when there are multiple threads ready to run. Definitions. Uniprocessor policies
Scheduling Main Points Scheduling policy: what to do next, when there are multiple threads ready to run Or multiple packets to send, or web requests to serve, or Definitions response time, throughput,
Real-Time Scheduling 1 / 39
Real-Time Scheduling 1 / 39 Multiple Real-Time Processes A runs every 30 msec; each time it needs 10 msec of CPU time B runs 25 times/sec for 15 msec C runs 20 times/sec for 5 msec For our equation, A
Introduction. Scheduling. Types of scheduling. The basics
Introduction In multiprogramming systems, when there is more than one runable (i.e., ready), the operating system must decide which one to activate. The decision is made by the part of the operating system
Scheduling Algorithms
Scheduling Algorithms List Pros and Cons for each of the four scheduler types listed below. First In First Out (FIFO) Simplicity FIFO is very easy to implement. Less Overhead FIFO will allow the currently
Operating Systems Lecture #6: Process Management
Lecture #6: Process Written by based on the lecture series of Dr. Dayou Li and the book Understanding 4th ed. by I.M.Flynn and A.McIver McHoes (2006) Department of Computer Science and Technology,., 2013
Operating Systems Concepts: Chapter 7: Scheduling Strategies
Operating Systems Concepts: Chapter 7: Scheduling Strategies Olav Beckmann Huxley 449 http://www.doc.ic.ac.uk/~ob3 Acknowledgements: There are lots. See end of Chapter 1. Home Page for the course: http://www.doc.ic.ac.uk/~ob3/teaching/operatingsystemsconcepts/
CPU Scheduling 101. The CPU scheduler makes a sequence of moves that determines the interleaving of threads.
CPU Scheduling CPU Scheduling 101 The CPU scheduler makes a sequence of moves that determines the interleaving of threads. Programs use synchronization to prevent bad moves. but otherwise scheduling choices
EECS 750: Advanced Operating Systems. 01/28 /2015 Heechul Yun
EECS 750: Advanced Operating Systems 01/28 /2015 Heechul Yun 1 Recap: Completely Fair Scheduler(CFS) Each task maintains its virtual time V i = E i 1 w i, where E is executed time, w is a weight Pick the
CPU Scheduling. Multitasking operating systems come in two flavours: cooperative multitasking and preemptive multitasking.
CPU Scheduling The scheduler is the component of the kernel that selects which process to run next. The scheduler (or process scheduler, as it is sometimes called) can be viewed as the code that divides
Operatin g Systems: Internals and Design Principle s. Chapter 10 Multiprocessor and Real-Time Scheduling Seventh Edition By William Stallings
Operatin g Systems: Internals and Design Principle s Chapter 10 Multiprocessor and Real-Time Scheduling Seventh Edition By William Stallings Operating Systems: Internals and Design Principles Bear in mind,
Operating Systems, 6 th ed. Test Bank Chapter 7
True / False Questions: Chapter 7 Memory Management 1. T / F In a multiprogramming system, main memory is divided into multiple sections: one for the operating system (resident monitor, kernel) and one
W4118 Operating Systems. Instructor: Junfeng Yang
W4118 Operating Systems Instructor: Junfeng Yang Outline Advanced scheduling issues Multilevel queue scheduling Multiprocessor scheduling issues Real-time scheduling Scheduling in Linux Scheduling algorithm
Linux scheduler history. We will be talking about the O(1) scheduler
CPU Scheduling Linux scheduler history We will be talking about the O(1) scheduler SMP Support in 2.4 and 2.6 versions 2.4 Kernel 2.6 Kernel CPU1 CPU2 CPU3 CPU1 CPU2 CPU3 Linux Scheduling 3 scheduling
OS OBJECTIVE QUESTIONS
OS OBJECTIVE QUESTIONS Which one of the following is Little s formula Where n is the average queue length, W is the time that a process waits 1)n=Lambda*W 2)n=Lambda/W 3)n=Lambda^W 4)n=Lambda*(W-n) Answer:1
Linux O(1) CPU Scheduler. Amit Gud amit (dot) gud (at) veritas (dot) com http://amitgud.tk
Linux O(1) CPU Scheduler Amit Gud amit (dot) gud (at) veritas (dot) com http://amitgud.tk April 27, 2005 Agenda CPU scheduler basics CPU scheduler algorithms overview Linux CPU scheduler goals What is
PROCESS SCHEDULING ALGORITHMS: A REVIEW
Volume No, Special Issue No., May ISSN (online): -7 PROCESS SCHEDULING ALGORITHMS: A REVIEW Ekta, Satinder Student, C.R. College of Education, Hisar, Haryana, (India) Assistant Professor (Extn.), Govt.
ò Paper reading assigned for next Thursday ò Lab 2 due next Friday ò What is cooperative multitasking? ò What is preemptive multitasking?
Housekeeping Paper reading assigned for next Thursday Scheduling Lab 2 due next Friday Don Porter CSE 506 Lecture goals Undergrad review Understand low-level building blocks of a scheduler Understand competing
Threads Scheduling on Linux Operating Systems
Threads Scheduling on Linux Operating Systems Igli Tafa 1, Stavri Thomollari 2, Julian Fejzaj 3 Polytechnic University of Tirana, Faculty of Information Technology 1,2 University of Tirana, Faculty of
Process Scheduling. Process Scheduler. Chapter 7. Context Switch. Scheduler. Selection Strategies
Chapter 7 Process Scheduling Process Scheduler Why do we even need to a process scheduler? In simplest form, CPU must be shared by > OS > Application In reality, [multiprogramming] > OS : many separate
A Group based Time Quantum Round Robin Algorithm using Min-Max Spread Measure
A Group based Quantum Round Robin Algorithm using Min-Max Spread Measure Sanjaya Kumar Panda Department of CSE NIT, Rourkela Debasis Dash Department of CSE NIT, Rourkela Jitendra Kumar Rout Department
Konzepte von Betriebssystem-Komponenten. Linux Scheduler. Valderine Kom Kenmegne [email protected]. Proseminar KVBK Linux Scheduler Valderine Kom
Konzepte von Betriebssystem-Komponenten Linux Scheduler Kenmegne [email protected] 1 Contents: 1. Introduction 2. Scheduler Policy in Operating System 2.1 Scheduling Objectives 2.2 Some Scheduling
Linux Process Scheduling Policy
Lecture Overview Introduction to Linux process scheduling Policy versus algorithm Linux overall process scheduling objectives Timesharing Dynamic priority Favor I/O-bound process Linux scheduling algorithm
Process Scheduling II
Process Scheduling II COMS W4118 Prof. Kaustubh R. Joshi [email protected] hdp://www.cs.columbia.edu/~krj/os References: OperaWng Systems Concepts (9e), Linux Kernel Development, previous W4118s Copyright
Readings for this topic: Silberschatz/Galvin/Gagne Chapter 5
77 16 CPU Scheduling Readings for this topic: Silberschatz/Galvin/Gagne Chapter 5 Until now you have heard about processes and memory. From now on you ll hear about resources, the things operated upon
CS4410 - Fall 2008 Homework 2 Solution Due September 23, 11:59PM
CS4410 - Fall 2008 Homework 2 Solution Due September 23, 11:59PM Q1. Explain what goes wrong in the following version of Dekker s Algorithm: CSEnter(int i) inside[i] = true; while(inside[j]) inside[i]
Completely Fair Scheduler and its tuning 1
Completely Fair Scheduler and its tuning 1 Jacek Kobus and Rafał Szklarski 1 Introduction The introduction of a new, the so called completely fair scheduler (CFS) to the Linux kernel 2.6.23 (October 2007)
Lecture Outline Overview of real-time scheduling algorithms Outline relative strengths, weaknesses
Overview of Real-Time Scheduling Embedded Real-Time Software Lecture 3 Lecture Outline Overview of real-time scheduling algorithms Clock-driven Weighted round-robin Priority-driven Dynamic vs. static Deadline
Process Scheduling in Linux
The Gate of the AOSP #4 : Gerrit, Memory & Performance Process Scheduling in Linux 2013. 3. 29 Namhyung Kim Outline 1 Process scheduling 2 SMP scheduling 3 Group scheduling - www.kandroid.org 2/ 41 Process
10.04.2008. Thomas Fahrig Senior Developer Hypervisor Team. Hypervisor Architecture Terminology Goals Basics Details
Thomas Fahrig Senior Developer Hypervisor Team Hypervisor Architecture Terminology Goals Basics Details Scheduling Interval External Interrupt Handling Reserves, Weights and Caps Context Switch Waiting
Chapter 19: Real-Time Systems. Overview of Real-Time Systems. Objectives. System Characteristics. Features of Real-Time Systems
Chapter 19: Real-Time Systems System Characteristics Features of Real-Time Systems Chapter 19: Real-Time Systems Implementing Real-Time Operating Systems Real-Time CPU Scheduling VxWorks 5.x 19.2 Silberschatz,
159.735. Final Report. Cluster Scheduling. Submitted by: Priti Lohani 04244354
159.735 Final Report Cluster Scheduling Submitted by: Priti Lohani 04244354 1 Table of contents: 159.735... 1 Final Report... 1 Cluster Scheduling... 1 Table of contents:... 2 1. Introduction:... 3 1.1
Operating System Tutorial
Operating System Tutorial OPERATING SYSTEM TUTORIAL Simply Easy Learning by tutorialspoint.com tutorialspoint.com i ABOUT THE TUTORIAL Operating System Tutorial An operating system (OS) is a collection
A Comparative Study of CPU Scheduling Algorithms
IJGIP Journal homepage: www.ifrsa.org A Comparative Study of CPU Scheduling Algorithms Neetu Goel Research Scholar,TEERTHANKER MAHAVEER UNIVERSITY Dr. R.B. Garg Professor Delhi School of Professional Studies
CS414 SP 2007 Assignment 1
CS414 SP 2007 Assignment 1 Due Feb. 07 at 11:59pm Submit your assignment using CMS 1. Which of the following should NOT be allowed in user mode? Briefly explain. a) Disable all interrupts. b) Read the
CHAPTER 1 INTRODUCTION
1 CHAPTER 1 INTRODUCTION 1.1 MOTIVATION OF RESEARCH Multicore processors have two or more execution cores (processors) implemented on a single chip having their own set of execution and architectural recourses.
Scheduling policy. ULK3e 7.1. Operating Systems: Scheduling in Linux p. 1
Scheduling policy ULK3e 7.1 Goals fast process response time good throughput for background jobs avoidance of process starvation reconciliation of needs of low- and high-priority processes Operating Systems:
Linux Process Scheduling. sched.c. schedule() scheduler_tick() hooks. try_to_wake_up() ... CFS CPU 0 CPU 1 CPU 2 CPU 3
Linux Process Scheduling sched.c schedule() scheduler_tick() try_to_wake_up() hooks RT CPU 0 CPU 1 CFS CPU 2 CPU 3 Linux Process Scheduling 1. Task Classification 2. Scheduler Skeleton 3. Completely Fair
Analysis and Comparison of CPU Scheduling Algorithms
Analysis and Comparison of CPU Scheduling Algorithms Pushpraj Singh 1, Vinod Singh 2, Anjani Pandey 3 1,2,3 Assistant Professor, VITS Engineering College Satna (MP), India Abstract Scheduling is a fundamental
Chapter 5 Linux Load Balancing Mechanisms
Chapter 5 Linux Load Balancing Mechanisms Load balancing mechanisms in multiprocessor systems have two compatible objectives. One is to prevent processors from being idle while others processors still
Real-Time Systems Prof. Dr. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur
Real-Time Systems Prof. Dr. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No. # 26 Real - Time POSIX. (Contd.) Ok Good morning, so let us get
Overview of the Linux Scheduler Framework
Overview of the Linux Scheduler Framework WORKSHOP ON REAL-TIME SCHEDULING IN THE LINUX KERNEL Pisa, June 27th, 2014 Marco Cesati University of Rome Tor Vergata Marco Cesati (Univ. of Rome Tor Vergata)
Task Scheduling for Multicore Embedded Devices
Embedded Linux Conference 2013 Task Scheduling for Multicore Embedded Devices 2013. 02. 22. Gap-Joo Na ([email protected]) Contents 2 What is multicore?? 1. Multicore trends 2. New Architectures 3. Software
Multilevel Load Balancing in NUMA Computers
FACULDADE DE INFORMÁTICA PUCRS - Brazil http://www.pucrs.br/inf/pos/ Multilevel Load Balancing in NUMA Computers M. Corrêa, R. Chanin, A. Sales, R. Scheer, A. Zorzo Technical Report Series Number 049 July,
Exercises : Real-time Scheduling analysis
Exercises : Real-time Scheduling analysis Frank Singhoff University of Brest June 2013 Exercise 1 : Fixed priority scheduling and Rate Monotonic priority assignment Given a set of tasks defined by the
Project No. 2: Process Scheduling in Linux Submission due: April 28, 2014, 11:59pm
Project No. 2: Process Scheduling in Linux Submission due: April 28, 2014, 11:59pm PURPOSE Getting familiar with the Linux kernel source code. Understanding process scheduling and how different parameters
Tasks Schedule Analysis in RTAI/Linux-GPL
Tasks Schedule Analysis in RTAI/Linux-GPL Claudio Aciti and Nelson Acosta INTIA - Depto de Computación y Sistemas - Facultad de Ciencias Exactas Universidad Nacional del Centro de la Provincia de Buenos
Linux process scheduling
Linux process scheduling David Morgan General neediness categories realtime processes whenever they demand attention, need it immediately other processes interactive care about responsiveness demand no
A Review on Load Balancing In Cloud Computing 1
www.ijecs.in International Journal Of Engineering And Computer Science ISSN:2319-7242 Volume 4 Issue 6 June 2015, Page No. 12333-12339 A Review on Load Balancing In Cloud Computing 1 Peenaz Pathak, 2 Er.Kamna
Module 8. Industrial Embedded and Communication Systems. Version 2 EE IIT, Kharagpur 1
Module 8 Industrial Embedded and Communication Systems Version 2 EE IIT, Kharagpur 1 Lesson 37 Real-Time Operating Systems: Introduction and Process Management Version 2 EE IIT, Kharagpur 2 Instructional
Multi-core Programming System Overview
Multi-core Programming System Overview Based on slides from Intel Software College and Multi-Core Programming increasing performance through software multi-threading by Shameem Akhter and Jason Roberts,
This tutorial will take you through step by step approach while learning Operating System concepts.
About the Tutorial An operating system (OS) is a collection of software that manages computer hardware resources and provides common services for computer programs. The operating system is a vital component
Lecture 3 Theoretical Foundations of RTOS
CENG 383 Real-Time Systems Lecture 3 Theoretical Foundations of RTOS Asst. Prof. Tolga Ayav, Ph.D. Department of Computer Engineering Task States Executing Ready Suspended (or blocked) Dormant (or sleeping)
Real-Time Operating Systems for MPSoCs
Real-Time Operating Systems for MPSoCs Hiroyuki Tomiyama Graduate School of Information Science Nagoya University http://member.acm.org/~hiroyuki MPSoC 2009 1 Contributors Hiroaki Takada Director and Professor
Chapter 2: OS Overview
Chapter 2: OS Overview CmSc 335 Operating Systems 1. Operating system objectives and functions Operating systems control and support the usage of computer systems. a. usage users of a computer system:
Analysis of Job Scheduling Algorithms in Cloud Computing
Analysis of Job Scheduling s in Cloud Computing Rajveer Kaur 1, Supriya Kinger 2 1 Research Fellow, Department of Computer Science and Engineering, SGGSWU, Fatehgarh Sahib, India, Punjab (140406) 2 Asst.Professor,
Process Scheduling in Linux
Process Scheduling in Linux Scheduling Mechanism: how to switch. Scheduling Policy: when to switch and what process to choose. Some scheduling objectives: fast process response time avoidance of process
Load Balancing Scheduling with Shortest Load First
, pp. 171-178 http://dx.doi.org/10.14257/ijgdc.2015.8.4.17 Load Balancing Scheduling with Shortest Load First Ranjan Kumar Mondal 1, Enakshmi Nandi 2 and Debabrata Sarddar 3 1 Department of Computer Science
Syllabus MCA-404 Operating System - II
Syllabus MCA-404 - II Review of basic concepts of operating system, threads; inter process communications, CPU scheduling criteria, CPU scheduling algorithms, process synchronization concepts, critical
A Priority based Round Robin CPU Scheduling Algorithm for Real Time Systems
A Priority based Round Robin CPU Scheduling Algorithm for Real Time Systems Ishwari Singh Rajput Department of Computer Science and Engineering Amity School of Engineering and Technology, Amity University,
REDUCING TIME: SCHEDULING JOB. Nisha Yadav, Nikita Chhillar, Neha jaiswal
Journal Of Harmonized Research (JOHR) Journal Of Harmonized Research in Engineering 1(2), 2013, 45-53 ISSN 2347 7393 Original Research Article REDUCING TIME: SCHEDULING JOB Nisha Yadav, Nikita Chhillar,
REAL TIME OPERATING SYSTEMS. Lesson-10:
REAL TIME OPERATING SYSTEMS Lesson-10: Real Time Operating System 1 1. Real Time Operating System Definition 2 Real Time A real time is the time which continuously increments at regular intervals after
Multi-core architectures. Jernej Barbic 15-213, Spring 2007 May 3, 2007
Multi-core architectures Jernej Barbic 15-213, Spring 2007 May 3, 2007 1 Single-core computer 2 Single-core CPU chip the single core 3 Multi-core architectures This lecture is about a new trend in computer
Operating Systems OBJECTIVES 7.1 DEFINITION. Chapter 7. Note:
Chapter 7 OBJECTIVES Operating Systems Define the purpose and functions of an operating system. Understand the components of an operating system. Understand the concept of virtual memory. Understand the
Real-time scheduling algorithms, task visualization
Rochester Institute of Technology RIT Scholar Works Theses Thesis/Dissertation Collections 2006 Real-time scheduling algorithms, task visualization Kevin Churnetski Follow this and additional works at:
The CPU Scheduler in VMware vsphere 5.1
VMware vsphere 5.1 Performance Study TECHNICAL WHITEPAPER Table of Contents Executive Summary... 4 Introduction... 4 Terminology... 4 CPU Scheduler Overview... 5 Design Goals... 5 What, When, and Where
Linux Block I/O Scheduling. Aaron Carroll [email protected] December 22, 2007
Linux Block I/O Scheduling Aaron Carroll [email protected] December 22, 2007 As of version 2.6.24, the mainline Linux tree provides four block I/O schedulers: Noop, Deadline, Anticipatory (AS)
Understanding Linux on z/vm Steal Time
Understanding Linux on z/vm Steal Time June 2014 Rob van der Heij [email protected] Summary Ever since Linux distributions started to report steal time in various tools, it has been causing
Chapter 1 8 Essay Question Review
Chapter 1 8 Essay Question Review 1. Explain why an operating system can be viewed as a resource allocator. Ans: A computer system has many resources that may be required to solve a problem: CPU time,
