• Skip to main content
  • Skip to primary sidebar
  • Computer Architecture
  • Computer Networks
  • DBMS
  • OS
  • Software Engineering
  • Security
  • OOT
binary-terms-logo

Binary Terms

The Computer Science & IT Guide

First Come First Serve (FCFS) Scheduling Algorithm

22nd July 2019 by Neha T Leave a Comment

First Come First Serve (FCFS) is the simplest CPU scheduling algorithm where the process that arrives first in the ready queue will be serviced first by CPU. Secondly, the FCFS is a non-preemptive scheduling algorithm in which once the process is allotted the CPU cycles it releases CPU when the process terminates or if it requests I/O.

We can understand it with an example, people standing in a line at a ticket counter, the person who is first in the line will buy the ticket first. Likewise, the process arriving first will be serviced first by CPU.

FCFS is a Batch System algorithm in which the user doesn’t expect a quick reply from the system. Batch system accepts the algorithms that serve process with the long-time period.

Further, we will discuss how the FCFS algorithm schedules the processes in the CPU.

Contents: First Come First Serve (FCFS) Scheduling Algorithm

  1. Working
  2. Computation
  3. Convoy Effect
  4. Advantages
  5. Disadvantages
  6. Key Takeaways

Working

In the table below you can see we have 4 processes p1, p2, p3, p4 along with their arrival time and their burst time.

ProcessesArrival TimeBurst Time
P105
P2324
P353
P4820

Here, the arrival time is not the real-time of the system it is the relative time of the system. Arrival time is the time at which the process arrives in the ready queue, lower the time, earlier is the process arrives. With reference to the arrival time given in the table, the processes arrive in the order p1, p2, p3, p4.

Burst time is the time required by the process to complete its execution. There are two types of burst time CPU burst and I/O burst. CPU burst is the time required by the process to utilize CPU cycles. I/O burst is the time required by the process to utilize I/O devices. Consider the Burst time given in the table is CPU burst time and is in milliseconds. We have no I/O bursts here.

Now let us serve the processes in the First-Come-First-Serve order using the Gantt Chart.
Gantt Chart 1

Observe the Gantt Chart and table above, the process P1 arrives at 0 millisecond i.e. earlier than any other process in the ready queue. So P1 doesn’t have to wait (waiting time=0) and is allotted the CPU first. Now P1 requires 5 milliseconds to execute meanwhile process P2 has arrived in ready queue, but P2 has to wait till P1 is completely executed because of non-preemptive nature of this scheduling algorithm (waiting time P2 = 2 milliseconds).

While P2 is performing its execution both the remaining process P3 and P4 arrive in the ready queue. Process P3 gets chance to execute at 29th millisecond (waiting time P3 = 24 milliseconds) and it requires 3 milliseconds to execute. While P4 get CPU at 32nd milliseconds and require 3 milliseconds to complete its execution.

Computation

The formula for calculating the following:

Formula first come first serve

ProcessesTurnaround TimeWaiting Time Response Time
P1500
P22625
P3272429
P4422432

Throughput = 4/50

Average waiting time = 12.5

Convoy Effect

For understanding the Convoy effect easily consider a scenario where CPU has to serve one CPU-bound process and many I/O bound processes. As we know the CPU-bound process requires heavy time for computation i.e. it has long CPU burst and requires less time for I/O. Whereas, I/O-bound process less time for computation and it has short CPU burst.

Consider the CPU-bound process holds the CPU first and start execution. At the same time, I/O bound processes will finish doing their I/O and will return to the ready queue waiting for the CPU. When the I/O-bound processes are waiting in the ready queue and CPU-bound process is getting executed in CPU, I/O devices are sitting idle.

After some time, the CPU-bound finishes its CPU burst time and moves on to I/O devices. So the I/O-bound processes hold the CPU and quickly finishes their execution as they have short CPU burst and move to the I/O devices, now, the CPU sits idle. This is a convoy effect where the short processes have to wait for one big process to finish its CPU burst. This also lower downs the CPU and I/O device utilization.

Advantages of the First Come First Serve Scheduling

  1. It is the simplest and easy to implement algorithm programmatically. The FCFS algorithm is implemented using a FIFO Queue in the data structure. Just like in FIFO, the new data element enters from the tail of the queue and exit from the head of the queue. Similarly, in FCFS the CPU scheduler first serves the process present at the head of the ready queue.
  2. It works well with the processes that have long burst time. we will understand this with the help of the example we discussed above. Look at the process P3, its waiting time in the ready queue is 24 milliseconds that is approximately 8 times of its execution time i.e. 3 milliseconds. On the other hand, look at the process P4, though it has longer burst time i.e. 20 milliseconds than P3 (burst time 3 millisecond), its waiting time in the ready queue (24 milliseconds) is far more acceptable for the lengthy process like P4 than that of P3. P4 has to wait only 3 milliseconds more than P3. So, we can surely say that the First Come First Serve scheduling performs better for processes that have long burst time.

Disadvantages of the First Come First Serve scheduling

  1. In First Come First Serve scheduling the average waiting time is not optimal. Let us verify this using the above example where we get the average waiting time 12.5 millisecond. Suppose if the processes would have come in the order P1, P3, P2, P4 (don’t consider the arrival time).
    Gantt Chart 2
    The average waiting time would have been (0+5+8+32)/4= 11.25
  2. The First Come First Serve scheduling is Non-preemptive in nature. Thus, it would not be productive for the time-sharing environment. Because in time-sharing systems each process gets the equal share of the CPU at regular interval.
  3. As the First come First Serve scheduling is Non-preemptive, it does not understand the priority of processes. It would be worse in case an interrupt causing system failure occurs and it has to wait long in the queue to get processed.
  4. The First Come First Serve exhibits convey effect which lower downs the CPU or I/O utilization as for the execution of one big process the other short processes have to wait for long.

Key Takeaways

  • Here the process that arrives first get a chance to hold the CPU first for execution.
  • It is a Non-preemptive Scheduling.
  • It is a batch system scheduling algorithm.
  • It performs better for the processes with long burst time.
  • It develops the convey effect.
  • It doesn’t respond to the priority of the process.
  • This FCFS schedule generates a high average waiting time.

It is simple to understand and easy to implement the algorithm. Though it generates the high average waiting time it is good for processes with long burst time.

Related Terms:

  1. Shared Memory System in IPC
  2. Contiguous Memory Allocation
  3. Swapping in Operating System
  4. Semaphore in Operating System
  5. Process Control Block (PCB)

Reader Interactions

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Primary Sidebar

Most Searched Terms

  • Directory Structure
  • Contiguous Memory Allocation
  • Addressing Mode and its Types
  • Pipelining
  • Vector Processing
  • Register Organization
  • Direct Memory Access (DMA)
  • Process Control Block (PCB)
  • Swapping in Operating System
  • Relational Data Model

Recent Additions

  • Segmentation in OS
  • Semaphore in Operating System
  • Thread Libraries in OS
  • Principles of Cloud Computing
  • Security Challenges in Cloud Computing
  • Identity as a Service (IDaaS)
  • Data Privacy in Cloud Computing
  • Federated Cloud
  • Software as a Service (SaaS)
  • Platform as a Service (PaaS)

Categories

  • Cloud Computing
  • Computer Architecture
  • Computer Networks
  • Data Warehouse and Mining
  • DBMS
  • Object Oriented Technology
  • Operating System
  • Security
  • Software Engineering

Copyright © 2021 · Binary Terms · Contact Us · About Us · Privacy