week 8 scheduling Flashcards

to learn

1
Q

what is scheduling problem

A

Have processes competing for resources (eg CPU, disk other
devices)
Important OS function: define a schedule to manage access of
processes to these resources
Typically done by having queues of processes waiting for a
specific resource and selecting a process in the queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

how is scheduling done?

A

Typically done by having queues of processes waiting for a
specific resource and selecting a process in the queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what are the type of scheduling queues:

A

Job queue
Ready queue
Device queues

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is a job queue is scheduling:

A
  • set of all processes in the system
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is a ready queue is scheduling:

A
  • set of all processes residing in main memory,
    ready and waiting to execute
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is a device queue in scheduling:

A
  • set of processes waiting for an I/O device
    Processes migrate among the various queues
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

can processes move to different queues

A

yes! Processes migrate among the various queues

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is a problem with cpu scheduling

A

Which process ready to execute commands gets the
CPU?
key function of a programming system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Prerequisites for successful scheduling: (2 things)

A

1.) CPU-I/O-Burst Cycle
Experience shows: I/O occurs after fixed amount of time in ≥ 90%
⇒ appropriate time for re-scheduling

2.) Preemptive Scheduling: Processes can be forced to relinquish
processor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is the scheduling criteria:

A

CPU utilisation
Throughput: Number of processes completed within a given
time
Turnaround time: Time it takes for each process to be
executed
Waiting time: Amount of time spent in the ready-queue
Response time: time between submission of request and
production of first response

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is throughput

A

Number of processes completed within a given
time

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is turnaround time

A

Time it takes for each process to be
executed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is waiting time

A

Amount of time spent in the ready-queue

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is response time

A

time between submission of request and production of first response

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what are the two categories in processes

A

I/O-bound process
CPU-bound process

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

I/O bound process

A
  • spends more time doing I/O than computations, many short CPU bursts
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

cpu bound process

A

spends more time doing computations;
few very long CPU bursts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

describe first come first serve algorithm (FCFS)

A

Jobs are put in a queue, and served according to arrival time
Easy to implement but CPU-intensive processes can cause long
waiting time.
FCFS with preemption is called Round-Robin
standard method in time sharing systems
Problem: get the time quantum (time before preemption) right.
- too short: too many context switches
- too long: Process can monopolise CPU

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

benefit of fcfs

A

easy to implement

20
Q

what is round robin

A

FCFS with preemption
standard method in time sharing systems

21
Q

what is a problem with round robin

A

Problem: get the time quantum (time before preemption) right.
- too short: too many context switches
- too long: Process can monopolise CPU

22
Q

what happens if time before preemption in round robin is too short:

A

too short: too many context switches

23
Q

what happens if time before preemption in round robin is too long:

A
  • too long: Process can monopolise CPU
24
Q

describe shortest job first

A

Next job is one with shortest CPU-burst time (shortest CPU-time
before next I/O-operation)
Not implementable, but this is algorithm with the smallest average
waiting time
⇒ Strategy against which to measure other ones
Approximation: Can we predict the burst-time?
Only hope is extrapolation from previous behaviour
done by weighting recent times more than older ones.
τn+1 = αtn + (1 − α)τn

25
Q

what is the shortest cpu burst time

A

(shortest CPU-time
before next I/O-operation)

26
Q

what is a positive of shortest job first

A

algorithm with the smallest average
waiting time

27
Q

disadvantage of shortest job first

28
Q

priority scheduling assumption

A

A priority is associated with each process
CPU is allocated to process with highest priority
Equal-priority processes scheduled according to FCFS

29
Q

how are Equal-priority processes scheduled

A

according to FCFS

30
Q

what are the two variations of priority scheduling

A

With preemption: newly-arrived process with higher priority
may gain processor immediately if process with lower priority
is running
Without preemption: newly arrived process always waits

31
Q

what is priority scheduling with preemption

A

newly-arrived process with higher priority
may gain processor immediately if process with lower priority
is running

32
Q

what is priority scheduling without preemption

A

newly arrived process always waits

33
Q

why is preemption good in priority scheduling

A

Preemption good for ensuring quick response time for high-priority
processes

34
Q

disadvantage of priority scheduling

A

Starvation of low-priority processes possible
Solution: Increase priority of processes after a while (Ageing)

35
Q

Solution to Starvation of low-priority processes possible

A

Increase priority of processes after a while (Ageing)

36
Q

describe Multilevel Queue Scheduling

A

Applicable when processes can be partitioned into groups (eg
interactive and batch processes):

Split ready-queue into several separate queues, with separate
scheduling algorithm

Scheduling between queues usually implemented as pre-emptive
priority scheduling

37
Q

what are the possible set ups of queues in describe Multilevel Queue Scheduling

A

System processes
Interactive processes
Interactive editing processes
Batch processes

38
Q

what is another way of processing cpu queues

A

according to length of CPU-burst

39
Q

Scheduling for Multiprocessor Systems

A

CPU scheduling more complex when multiple CPU’s are available
Most common case: Symmetric multiprocessing (SMP):
all processors are identical, can be scheduled independently
have separate ready-queue for each processor (Linux), or
shared ready-queue

40
Q

what are the two types of process affinity

A

Process affinity for CPU on which it is currently running
Soft Affinity:
Hard Affinity:

41
Q

soft affinity in process affinity

A

current CPU only preferred when re-scheduled

42
Q

hard affinity in process affinity

A

Process may be bound to specific CPU
Advantage: caches remain valid, avoiding time-consuming
cache invalidation and recovery

43
Q

advantage of hard affinity in process affinity

A

Advantage: caches remain valid, avoiding time-consuming
cache invalidation and recovery

44
Q

Linux Implementation for scheduling

A

Several schedulers may co-exist, assign fixed percentage of
CPU-time to each scheduler
Important schedulers:
Round-robin scheduler with priorities (the default scheduler)
Real-time scheduler (process needs to be assigned explicitly to
this one) (typically FIFO)

45
Q

default scheduler in linux

A

Round-robin scheduler with priorities

46
Q

real time scheduler in linux

A

Real-time scheduler (process needs to be assigned explicitly to
this one) (typically FIFO)

47
Q

how is round robin with priorities implemented

A

maintain tree of processed ordered by runtime allocated so far
pick next process as one with least runtime allocated so far
insert new process in ready queue at appropriate place in tree
Priorities handled by giving weights to run-times