1 / 22

What Is In This Presentation ?

What Is In This Presentation ?. It is about Process Scheduling . (zaman çizelgesi) The design of a scheduler It centers around Round Robin algorithms that perform . start.

kasie
Download Presentation

What Is In This Presentation ?

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. What Is In This Presentation? • It is about Process Scheduling.(zaman çizelgesi) • The design of a scheduler • It centers around Round Robinalgorithms that perform

  2. start In computer science, scheduling is the method by which threads, processes or data flows are given access to system resources (e.g. processor time, communications bandwidth).

  3. scheduling • This is usually done to load balance a system effectively or achieve a target quality of service. • The need for a scheduling algorithm arises from the requirement for most modern systems • toperformmultitasking (execute more than one process at a time) • andmultiplexing (transmit multiple flows simultaneously).

  4. The scheduler The scheduler is concerned mainly with: • Throughput(üretilen iş)- The total number of processes that complete their execution per time unit. • Latency (gecikme), specifically: • Turn-around time (dönüş süresi)- total time between submission of a process and its completion. • Response time (tepki süresi)- amount of time it takes from when a request was submitted until the first response is produced. • Fairness / Waiting Time(bekleme süresi)- Equal CPU time to each process (or more generally appropriate times according to each process' priority). It is the time for which the process remains in the ready queue.

  5. The scheduler • The scheduler assigns a fixed time unit per process, and cycles through them. • RR scheduling involves extensive overhead, especially with a small time unit. • Balanced throughput between FCFS and SJF, shorter jobs are completed faster than in FCFS and longer processes are completed faster than in SJF. • Poor average response time, waiting time is dependent on number of processes, and not average process length. • Because of high waiting times, deadlines are rarely met in a pure RR system. • Starvation can never occur, since no priority is given. • Order of time unit allocation is based upon process arrival time, similar to FCFS.

  6. There is no universal “best” scheduling algorithm, and many operating systems use extended or combinations of the scheduling algorithms above. • Windows uses a multilevel feedback queue, a combination of - -fixed priority preemptive scheduling, - round-robin, - and first in first out. In this system, threads can dynamically increase or decrease in priority depending on if it has been serviced already, or if it has been waiting extensively. • Every priority level is represented by its own queue, with round-robin scheduling amongst the high priority threads and FIFO among the lower ones. • The algorithm used may be as simple as round-robin in which each process is given equal time (for instance 1 ms, usually between 1 ms and 100 ms) in a cycling list. So, process A executes for 1 ms, then process B, then process C, then back to process A.

  7. Scheduling disciplines • Scheduling disciplines are algorithms used for distributing resources among parties which simultaneously and asynchronously request them Scheduling disciplines are used • in routers (to handle packet traffic) as well as • in operating systems (to share CPU time among both threads and processes), • disk drives (I/O scheduling), • printers (print spooler), most embedded systems, etc.

  8. Scheduling Goals • Maximize throughput and resource utilization. • Need to overlap CPU and I/O activities. • Minimize response time, waiting time and turnaround time. • Share CPU in a fair way. • May be difficult to meet all these goals-- sometimes need to make tradeoffs(An exchange that occurs as a compromise).

  9. Purpose of scheduling • The main purposes of scheduling algorithms are to minimize resource starvation and to ensure fairness amongst the parties utilizing the resources. Note :- Starvationoccurs if a low priority process never runs. The ssolutionis: build aging into a variable priority. • Scheduling deals with the problem of deciding which of the outstanding requests is to be allocated resources. There are many different scheduling algorithms • One of them are Round Robin Algorithem

  10. Round-robin scheduling Round-robin (RR) is one of the algorithms employed by process and network schedulers in computing. As the term is generally used, • time slices are assigned to each process in equal portions and in circular order, • handling all processes without priority (also known as cyclic executive). • Round-robin scheduling is simple, easy to implement, and starvation-free.

  11. Round-robin scheduling cont. • Round-robin scheduling can also be applied to other scheduling problems, such as data packet scheduling in computer networks. • It is an Operating System concept. • The name of the algorithm comes from the round-robin principle known from other fields, where each person takes an equal share of something in turn.

  12. RR Process scheduling • In order to schedule processes fairly, a round-robin scheduler generally employs time-sharing, giving each job a time slot or quantum[1] (its allowance of CPU time), and interrupting the job if it is not completed by then. • The job is resumed next time a time slot is assigned to that process. In the absence of time-sharing, or if the quanta were large relative to the sizes of the jobs, a process that produced large jobs would be favoured over other processes.

  13. ROUND ROBIN: • Use a timer to cause an interrupt after a predetermined time. • Preempts (have precedence over) if task exceeds it’s quantum. • Definitions: • Context Switch-Changing the processor from running one task (or process) to another. Implies changing memory. • Processor Sharing Use of a small quantum such that each process runs frequently at speed 1/n. • Reschedule latency How long it takes from when a process requests to run, until it finally gets control of the CPU.

  14. Choosing a time quantum • Choosing a time quantum • Too short - inordinate (excessive) fraction of the time is spent in context switches. • Too long - reschedule latency is too great. If many processes want the CPU, then it's a long time before a particular process can get the CPU. This then acts like FCFS. • Adjust so most processes won't use their slice. As processors have become faster, this is less of an issue.

  15. Round Robin (RR) • FCFS + preemptive scheduling. • First Come First Served (FCFS)-Scheduler selects the process at the head of the ready queue; typically non-preemptive • Ready queue is treated as a circular queue. • Each process gets the CPU for a time quantum (or time slice), typically 10 - 100 ms. • A process runs until it blocks, terminates, or uses up its time slice.

  16. Example • Example: Assuming a time quantum of 4 ms, what’s the average waiting time? • Issue: What’s the right value for the time quantum? • Too long => poor response time • Too short => poor throughput • RR pros & cons: • Works well for short jobs; typically used in timesharing systems. • High overhead due to frequent context switches. • Increases average waiting time, especially if CPU bursts are the same length and need more than one time quantum.

  17. Scheduling Algorithms • EXAMPLE DATA: • Process Arrival Service • Time Time • 1 0 8 • 2 1 4 • 3 2 9 • 4 3 5 Note: Example violates rules for quantum size since most processes don’t finish in one quantum. CPU SCHEDULING Round Robin, quantum = 4, no priority-based preemption P1 P2 P3 P4 P1 P3 P4 P3 0 4 8 12 16 20 24 25 26 Average wait = ( (20-0) + (8-1) + (26-2) + (25-3) )/4 = 74/4 = 18.5 5: CPU-Scheduling

  18. Example As an Example From networks • Round robin DNS & DDNS (Dynamic DNS) is often used to load balance requests between a number of Web servers. For example, a company has one domain name and three identical copies of the same web site residing on three servers with three different IP addresses. 5: CPU-Scheduling

  19. Weighted round robin • Weighted round robin (WRR) is a scheduling discipline • specifically for scheduling in ATM networks using fixed size packets (cells). • In the more general case of IP networks with variable size packets, in order to approximate GPS(Generalized processor sharing)the weight factors must be normalized. Service is shared between all non-empty classes in the same ratio as the weight factors (positive values for each service class). 5: CPU-Scheduling

  20. Deficit Round Robin • Deficit Round Robin (DRR), also Deficit Weighted Round Robin (DWRR), is a scheduling algorithm for the network scheduler. WRR serves every non-empty queue whereas DRR serves packets at the head of every non-empty queue whose deficit counteris greater than the packet's size at the head of the queue (HoQ). If the deficit counter is lower, • then the queue is skipped (HoQ packet is not served) • and its credit is increased by some given value called quantum. • This increased value is used to calculate the deficit counter the next time around when the scheduler examines this queue for serving its head-of-line packet. If the queue is served, then the Credit is decremented by the size of packet being served. 5: CPU-Scheduling

  21. What if? • What happens if the time allocated in a RoundRobin Scheduling is verylarge? And what happens if the time allocated is very low? • Ans: It results in a FCFS scheduling, that means Scheduler selects the process at the head of the ready queue; typically non-preemptive • If time is too low, the processor through put is reduced. More time is spent on context switching

  22. Summary

More Related