CPU Scheduling. Multiprogrammed OS

Similar documents
Objectives. Chapter 5: Process Scheduling. Chapter 5: Process Scheduling. 5.1 Basic Concepts. To introduce CPU scheduling

Objectives. Chapter 5: CPU Scheduling. CPU Scheduler. Non-preemptive and preemptive. Dispatcher. Alternating Sequence of CPU And I/O Bursts

Announcements. Basic Concepts. Histogram of Typical CPU- Burst Times. Dispatcher. CPU Scheduler. Burst Cycle. Reading

CPU Scheduling. CPU Scheduling

CPU Scheduling. Basic Concepts. Basic Concepts (2) Basic Concepts Scheduling Criteria Scheduling Algorithms Batch systems Interactive systems

W4118 Operating Systems. Instructor: Junfeng Yang

ICS Principles of Operating Systems

Chapter 5: CPU Scheduling. Operating System Concepts 8 th Edition

/ Operating Systems I. Process Scheduling. Warren R. Carithers Rob Duncan

Chapter 5 Process Scheduling

OPERATING SYSTEMS SCHEDULING

Operating System: Scheduling

CPU Scheduling Outline

Comp 204: Computer Systems and Their Implementation. Lecture 12: Scheduling Algorithms cont d

PROCESS SCHEDULING ALGORITHMS: A REVIEW

Scheduling. Scheduling. Scheduling levels. Decision to switch the running process can take place under the following circumstances:

Road Map. Scheduling. Types of Scheduling. Scheduling. CPU Scheduling. Job Scheduling. Dickinson College Computer Science 354 Spring 2010.

OS OBJECTIVE QUESTIONS

CPU Scheduling. CSC 256/456 - Operating Systems Fall TA: Mohammad Hedayati

Process Scheduling. Process Scheduler. Chapter 7. Context Switch. Scheduler. Selection Strategies

Introduction. Scheduling. Types of scheduling. The basics

Main Points. Scheduling policy: what to do next, when there are multiple threads ready to run. Definitions. Uniprocessor policies

Job Scheduling Model

Analysis and Comparison of CPU Scheduling Algorithms

A Comparative Study of CPU Scheduling Algorithms

Process Scheduling CS 241. February 24, Copyright University of Illinois CS 241 Staff

Processor Scheduling. Queues Recall OS maintains various queues

Deciding which process to run. (Deciding which thread to run) Deciding how long the chosen process can run

Operating Systems. III. Scheduling.

2. is the number of processes that are completed per time unit. A) CPU utilization B) Response time C) Turnaround time D) Throughput

CPU Scheduling. Core Definitions

Operating Systems Lecture #6: Process Management

A Group based Time Quantum Round Robin Algorithm using Min-Max Spread Measure

CPU SCHEDULING (CONT D) NESTED SCHEDULING FUNCTIONS

Scheduling Algorithms

Operating Systems, 6 th ed. Test Bank Chapter 7

Scheduling. Yücel Saygın. These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum

CPU Scheduling. Multitasking operating systems come in two flavours: cooperative multitasking and preemptive multitasking.

Scheduling 0 : Levels. High level scheduling: Medium level scheduling: Low level scheduling

Operating Systems Concepts: Chapter 7: Scheduling Strategies

CPU Scheduling 101. The CPU scheduler makes a sequence of moves that determines the interleaving of threads.

Operating Systems OBJECTIVES 7.1 DEFINITION. Chapter 7. Note:

REDUCING TIME: SCHEDULING JOB. Nisha Yadav, Nikita Chhillar, Neha jaiswal

A LECTURE NOTE ON CSC 322 OPERATING SYSTEM I DR. S. A. SODIYA

Readings for this topic: Silberschatz/Galvin/Gagne Chapter 5

This tutorial will take you through step by step approach while learning Operating System concepts.

A Review on Load Balancing In Cloud Computing 1

Operating System Tutorial

CS Fall 2008 Homework 2 Solution Due September 23, 11:59PM

Syllabus MCA-404 Operating System - II

Overview of Presentation. (Greek to English dictionary) Different systems have different goals. What should CPU scheduling optimize?

Multiprocessor Scheduling and Scheduling in Linux Kernel 2.6

Weight-based Starvation-free Improvised Round-Robin (WSIRR) CPU Scheduling Algorithm

Efficiency of Batch Operating Systems

Convenience: An OS makes a computer more convenient to use. Efficiency: An OS allows the computer system resources to be used in an efficient manner.

Analysis of Job Scheduling Algorithms in Cloud Computing

A Priority based Round Robin CPU Scheduling Algorithm for Real Time Systems

Chapter 2: OS Overview

Linux Process Scheduling Policy

W4118 Operating Systems. Instructor: Junfeng Yang

218 Chapter 5 CPU Scheduling

Konzepte von Betriebssystem-Komponenten. Linux Scheduler. Valderine Kom Kenmegne Proseminar KVBK Linux Scheduler Valderine Kom

Real-Time Scheduling 1 / 39

Lecture Outline Overview of real-time scheduling algorithms Outline relative strengths, weaknesses

OPERATING SYSTEM - VIRTUAL MEMORY

Module 6. Embedded System Software. Version 2 EE IIT, Kharagpur 1

Chapter 1 13 Essay Question Review

Final Report. Cluster Scheduling. Submitted by: Priti Lohani

OPERATING SYSTEMS. Table of Contents. Republic of Cameroon Peace Work Fatherland School Year 2013/2014

CS414 SP 2007 Assignment 1

Far-western University Central Office, Mahendranagar Operating System

CS 377: Operating Systems. Outline. A review of what you ve learned, and how it applies to a real operating system. Lecture 25 - Linux Case Study

Chapter 11 I/O Management and Disk Scheduling

Factors to Describe Job Shop Scheduling Problem

I/O Management. General Computer Architecture. Goals for I/O. Levels of I/O. Naming. I/O Management. COMP755 Advanced Operating Systems 1

Design and performance evaluation of Advanced Priority Based Dynamic Round Robin Scheduling Algorithm (APBDRR)

Performance Comparison of RTOS

Linux Block I/O Scheduling. Aaron Carroll December 22, 2007

Chapter 1 8 Essay Question Review

Technical Properties. Mobile Operating Systems. Overview Concepts of Mobile. Functions Processes. Lecture 11. Memory Management.

2.2 การจ ดการตารางงานของซ พ ย ( CPU Scheduling )

4. Fixed-Priority Scheduling

Module 8. Industrial Embedded and Communication Systems. Version 2 EE IIT, Kharagpur 1

Real-time scheduling algorithms, task visualization

Real-Time Systems Prof. Dr. Rajib Mall Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

Load Balancing Scheduling with Shortest Load First

Scheduling policy. ULK3e 7.1. Operating Systems: Scheduling in Linux p. 1

Chapter 19: Real-Time Systems. Overview of Real-Time Systems. Objectives. System Characteristics. Features of Real-Time Systems

Real-Time Scheduling (Part 1) (Working Draft) Real-Time System Example

REAL TIME OPERATING SYSTEMS. Lesson-10:

Common Approaches to Real-Time Scheduling

Linux scheduler history. We will be talking about the O(1) scheduler

Load Balancing in Distributed System Using FCFS Algorithm with RBAC Concept and Priority Scheduling

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 412, University of Maryland. Guest lecturer: David Hovemeyer.

Exercises : Real-time Scheduling analysis

Chapter 3. Operating Systems

AFDX networks. Computers and Real-Time Group, University of Cantabria

Final Project Report. Trading Platform Server

Timing of a Disk I/O Transfer

Task Attribute-Based Scheduling - Extending Ada s Support for Scheduling

Transcription:

CPU Scheduling Multiprogrammed OS

Efficient Use of Processor By switching between jobs Thread scheduling and process scheduling often used interchangeably Which is done depends on implementation of O/S. GOAL: CPU utilization keep the CPU as busy as possible

Old Systems Processor runs a process until it is finished Waits for user to tell it what to do next Sits idle when waiting Inefficient!

Single Processor One process can run at a time Other processes must wait until processor is free Objective: Keep the processor busy all the time.

Idea Process runs until it has to wait I/O request Keep several processes in memory at the same time When a process has to wait O/S takes away processor Gives processor to another process O/S usually schedule resources before use

Alternating CPU And I/O Bursts

Histogram of CPU-burst Times

CPU Scheduler Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. CPU scheduling decisions may take place when a process: 1. Switches from running to waiting state. 2. Switches from running to ready state. 3. Switches from waiting to ready. 4. Terminates.

Dispatcher Module Gives control of the CPU to the process selected by the short-term scheduler switch context switch to user mode jump to the proper location in the user program to restart that program Dispatch latency: time it takes for the dispatcher to stop one process and start another running.

Optimization Criterion We need some criterion to make decisions and measure efficiency Throughput: number of processes that complete their execution per time unit Turnaround time amount of time to execute a particular process

Optimization Criteria (cont) 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

Optimization Criteria (cont d) Max CPU utilization Max throughput Min turnaround time Min waiting time Min response time

First-In First-Out (FIFO) Also called First-Come, First-Served (FCFS) Scheduling When current execution stops, the oldest process in the ready queue is chosen Turnaround time: Total time the process spends in the system (waiting time + service time) FIFO performs much better for long processes than short ones

FIFO Scheduling Process Burst Time P 1 24 P 2 3 P 3 3 Suppose that the processes arrive in the order: P 1, P 2, P 3 The Gantt Chart for the schedule is: P 1 P 2 P 3 0 24 27 30 Waiting time for P 1 = 0; P 2 = 24; P 3 = 27 Average waiting time: (0 + 24 + 27)/3 = 17

FIFO Scheduling 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 1 Waiting time for P 1 = 6; P 2 = 0 ; P 3 = 3 Average waiting time: (6 + 0 + 3)/3 = 3 0 3 6 30 Much better than previous case. Convoy effect short process behind long

Shortest-Job-First (SJR) Scheduling Associate with each process the length of its next CPU burst. Use these lengths to schedule the process with the shortest time. Two schemes: nonpreemptive once CPU given to the process it cannot be preempted until completes its CPU burst. preemptive if a new process arrives with CPU burst length less than remaining time of current executing process, preempt. This scheme is know as the Shortest-Remaining-Time-First (SRTF). SJF is optimal gives minimum average waiting time for a given set of processes.

Example: Non-Preemptive SJF Process Arrival Time Burst Time P 1 0.0 7 P 2 2.0 4 P 3 4.0 1 P 4 5.0 4 SJF (non-preemptive) P 1 P 3 P 2 P 4 0 3 7 8 12 16 Average waiting time = (0 + 6 + 3 + 7)/4 = 4

Example of Preemptive SJF Process Arrival Time Burst Time P 1 0.0 7 P 2 2.0 4 P 3 4.0 1 P 4 5.0 4 SJF (preemptive) P 1 P 2 P 3 P 2 P 4 P 1 0 2 4 5 7 11 16

Determining Length of Next CPU Burst Can only estimate the length. Can be done by using the length of previous CPU bursts using exponential averaging. In this class we will not examine how the estimations are made. You may read about them if curious :)

Priority Scheduling A priority number is given to each process The CPU is allocated to the process with the highest priority (smallest integer highest priority). Preemptive nonpreemptive SJF is a priority scheduling where priority is the predicted next CPU burst time.

Problem Starvation low priority processes may never execute. Solution: Aging as time progresses increase the priority of the process.

Round Robin (RR) Each process gets a small unit of CPU time (time quantum), usually 10-100 milliseconds. When time if out the process is preempted and added to the end of the ready queue. If there are n processes in the ready queue and the time quantum is q, then each process gets 1/n of the CPU time in chunks of at most q time units at once. No process waits more than (n-1)q time units. Performance q large FIFO q small q must be large with respect to context switch, otherwise overhead is too high.

RR with Time Quantum = 20 Process Burst Time P 1 53 P 2 17 P 3 68 P 4 24 The Gantt chart is: P 1 P 2 P 3 P 4 P 1 P 3 P 4 P 1 P 3 P 3 0 20 37 57 77 97 117 121 134 154 162 Typically, higher average turnaround than SJF, but better response.

Time Quantum and Context Switch Time

Turnaround Time & Time Quantum

Multilevel Queue Ready queue is partitioned into separate queues: foreground (interactive) background (batch) Each queue has its own scheduling algorithm, foreground RR background FIFO 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 FIFO

Multilevel Queue Scheduling

Multilevel Feedback Queue A process can move between the various queues; aging can be implemented this way. Multilevel-feedback-queue scheduler defined by the following parameters: number of queues scheduling algorithms for each queue method used to determine when to upgrade a process method used to determine when to demote a process method used to determine which queue a process will enter when that process needs service

Example of Multilevel Feedback Queue Three queues: Q0 time quantum 8 milliseconds Q1 time quantum 16 milliseconds Q2 FIFO Scheduling A new job enters queue Q0 which is served FIFO. When it gains CPU, job receives 8 milliseconds. If it does not finish in 8 milliseconds, job is moved to queue Q 1. At Q1 job is again served FIFO and receives 16 additional milliseconds. If it still does not complete, it is preempted and moved to queue Q 2.

Multilevel Feedback Queues

Solaris 2 Scheduling

Windows 2000 Priorities

Dining Philosopher Problem

Synchronization Problem 5 philosophers at a table spaghetti to eat 5 forks can eat only with 2 forks no two philosophers next to each other can eat at same time how to survive? :)

States of existence Eat Think when a phil. gets two forks he eats for sometime, then lets go of forks and begins to think How do we solve this? We want NO starvation NO deadlock