Scheduling: Introduction

0. 文件地址

Scheduling: Introduction
Homework

1. Workload Assumptions

Scheduling: Introduction

2. Scheduling Metrics

Scheduling: Introduction
Scheduling: Introduction

3. First In, First Out (FIFO)

Scheduling: Introduction

4. Shortest Job First (SJF)

Scheduling: Introduction

5. Shortest Time-to-Completion First (STCF)

Scheduling: Introduction
Scheduling: Introduction

6. A New Metric: Response Time

Scheduling: Introduction

7. Round Robin

Scheduling: Introduction
Scheduling: Introduction

Scheduling: Introduction
Scheduling: Introduction

Scheduling: Introduction
Scheduling: Introduction

8. Incorporating I/O

Scheduling: Introduction

9. Homework (Simulation)

Scheduling: Introduction

Question & Answer

Scheduling: Introduction

1. Compute the response time and turnaround time when running three jobs of length 200 with the SJF and FIFO schedulers

FIFO:

Scheduling: Introduction
Scheduling: Introduction

SJF:

Scheduling: Introduction
Scheduling: Introduction

2. Now do the same but with jobs of different lengths: 100, 200, and 300.

2.1

FIFO: 100 200 300
Scheduling: Introduction
Scheduling: Introduction

SJF: 100 200 300
Scheduling: Introduction
Scheduling: Introduction

2.2

FIFO: 300 200 100
Scheduling: Introduction
Scheduling: Introduction
SJF: 300 200 100
Scheduling: Introduction
Scheduling: Introduction

3. Now do the same, but also with the RR scheduler and a time-slice of 1.

Scheduling: Introduction

Scheduling: Introduction
Scheduling: Introduction
Scheduling: Introduction
Scheduling: Introduction

4. For what types of workloads does SJF deliver the same turnaround times as FIFO?

When the workload doesn’t arrive from large to small.

5. For what types of workloads and quantum lengths does SJF deliver the same response times as RR?

The RR scheduling strategy is to execute a time slice in sequence in the job list, let the length of the time slice be T, then the response time of the Nth job is (N-1) * T, and SJF needs to finish one job before executing another job. Therefore, the execution time of each job of the SJF strategy should be equal to the time slice of the RR strategy.

6.What happens to response time with SJF as job lengths increase? Can you use the simulator to demonstrate the trend?

When the job length increases, the waiting response time for subsequent jobs will increase accordingly.

Scheduling: Introduction
Scheduling: Introduction

7. What happens to response time with RR as quantum lengths increase? Can you write an equation that gives the worst-case response time, given N jobs?

Assuming the length of the time slice is T, the response time of the Nth job = (N - 1)* T.
When the quantum lengths increase, the response time will increase accordingly.