SlideShare a Scribd company logo
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 2, Ver. IV (Mar – Apr. 2015), PP 13-16
www.iosrjournals.org
DOI: 10.9790/0661-17241316 www.iosrjournals.org 13 | Page
Comparative Analysis of Various Grid Based Scheduling
Algorithms
Ms. Maniza Hijab1
, Dr. Avula Damodaram2
, Dr. Uma N. Dulhare3
,
Ms. M. Tahseen4,
1,3,4
Information Technology Department, Muffakham Jah College of Engg.& Tech, Banjara Hills,
Hyderabad -155,A.P. India.
2
CSE Department, JNTUH & Director Academic Audit Cell, Jawaharlal Nehru Technological University
Kukatpally, Hyderabad-72, A.P. India.
Abstract : Grid computing provides access to heterogeneous resources which are distributed geographically
which makes resource scheduling a complex problem. Hence, scheduling algorithms are necessary which
allocate jobs to resources by taking into account the requirements of grid environment. The aim of scheduling is
to achieve highest possible throughput by matching the need of the application with the computing resources
available. In this paper, we review the various resource scheduling algorithms and discuss their pros and con.
Keywords: Grid Computing, Grid Scheduling, Scheduling Parameters, Scheduling Algorithms
I. Introduction
The Grid consists of various components and resources. Grid Computing is an important paradigm that
supports sharing and access to a large amount of computational and storage resources which are heterogeneous
and geographically distributed. Grid computing has the design goal of solving problems too big for any single
supercomputer, while retaining the flexibility to work on multiple smaller problems. Therefore Grid computing
provides a multi-user environment. Its secondary aims are better exploitation of available computing power and
catering for the intermittent demands of large computational exercises [1].The basic grid model is generally
composed of a number of hosts, each composed of several computational resources, which may be
homogeneous or heterogeneous. The four basic building blocks of grid model are user, resource broker, grid
information service (GIS) and resources.
Fig.1 Basic Resource Model [4]
When user requires high speed execution, the job is submitted to the broker in grid. Broker splits the
job into various tasks and distributes to several resources according to user’s requirements and availability of
resources. GIS keeps the status information of all resources which helps the broker for scheduling [2].
Appropriate and efficient allocation of tasks to the resources is called as job scheduling. Main aim of job
scheduling is to provide proper load balancing of nodes and reduce the response time by proper allocation of
jobs.
Comparative Analysis of Various Grid Based Scheduling Algorithms
DOI: 10.9790/0661-17241316 www.iosrjournals.org 14 | Page
1.1.Types of Grid Scheduling[3]
A. Static versus Dynamic
In static scheduling, resource information and task information is available before scheduling. In
dynamic scheduling, task allocation is done during its execution.
B. Centralized versus Decentralized
In centralized scheduling, a single scheduler is responsible for task scheduling whereas in decentralized
scheduling multiple distributed schedulers are responsible for scheduling.
C. Hierarchical
In hierarchical scheduling two schedulers are used, one at global level and the other at local level.
1.2. Comparison parameters
Various parameters discussed in this paper are:
Completion Time: Time taken by a machine in grid to complete a task.
Sufferage Value: The difference between second earliest completion time and the earliest completion time.
Task Priority: The tasks with highest priority are given more weightage.
Computation Costs of Task: cost to execute a task by a processor.
Communication Cost: cost of communication between two tasks.
Turnaround Time (TT): It is the total time taken between the submission of a task for execution and the return
of the result to the user.
Response Time (RT): It is the total time it taken to respond to a request. The response time is the sum of time
taken by the task waiting in queue and the service time.
II. Existing Scheduling Algorithms
2.1Min-Min Algorithm
In [5] the author proposed an algorithm which finds the machines on which a task is completed in
minimum time. This results in task-machine pairs with minimum completion time. Among all the task-machine
pairs the pair with minimum completion time is selected. Once the task is assigned to the machine it is removed
from the task list and the ready time of the machine is updated. This process is repeated until all the tasks are
completed.
Advantage: The response time is reduced as the minimum completion time of job is considered.
Disadvantage: Estimating the minimum completion time is difficult and may not be accurate. Time consuming
process.
2.2 Sufferage algorithm
In [6] the author proposed an algorithm which finds the machine on which a task is completed in
minimum time. The Sufferage value is calculated which is the difference between the second earliest completion
time and the earliest completion time. If the machine is unassigned then assign the task to the machine and
remove the task from task list. Otherwise, if the Sufferage value of a task already assigned to the machine is less
than the Sufferage value of the task selected then unassign the assigned task and add it to task list, assign the
selected task and remove it from task list. The ready times of all machines are updated.
Disadvantage: Determining the earliest completion time and Sufferage value is tedious and time-consuming
process and may not be accurate
2.3 Heterogeneous Earliest Finish Time (HEFT) Algorithm
In [8] the author proposed an algorithm which makes use of a directed acyclic graph. The average
computation costs of tasks and the communication costs of edges are calculated.The rank of all the tasks is
computed by traversing the graph upward. The tasks are sorted in decreasing order of rank. For each processor
the earliest finish time (EFT) of tasks is computed. A task is assigned to the processor which minimizes its EFT
Disadvantage: More time spent on calculating computation costs and communication costs.
Comparative Analysis of Various Grid Based Scheduling Algorithms
DOI: 10.9790/0661-17241316 www.iosrjournals.org 15 | Page
2.4 Critical Path-On- a Processor (CPOP) Algorithm
In [9] the author proposed an algorithm which makes use of directed acyclic graph. The mean of
computation costs of tasks and communication costs of edges are calculated. For each task two ranks are
computed by traversing the graph both upward and downward. The priority of each task is assigned by adding
the two ranks. This algorithm uses critical path of graph, obtained by adding the computation cost of tasks on
the path with the inter-task communication cost.The entry task is selected as critical path task. The task
immediately following the entry if having highest priority is selected as critical path task.A priority queue is
maintained for the tasks. If the selected task is on critical path it is assigned to critical path processor which
minimizes the cumulative computation cost of the task on the critical path. If no, then it is assigned to a
processor which minimizes the EFT of the task and the priority queue is updated.
Disadvantages:
a) It is not suitable for more number of job allocations because finding priority of job is tedious one.
b) Higher turnaround time.
c) CPU and memory wastage.
2.5 Reliability Aware Scheduling Algorithm with Duplication of HDC System (RASD) Algorithm
In [7]the author proposed an algorithm which makes use of a directed acyclic graph. The average
computation costs of tasks and the communication costs of edges are calculated. The rank of all the tasks is
computed by traversing the graph from the exit task.The tasks are sorted in decreasing order of rank. For a task
assigned to a processor find the reliability of communication edge between the task and its predecessor. For
each processor repeat the process and compute EFT of a task on a processor and also the reliability of the task
on the processor an the system overhead.
2.6 Hierarchical Job Scheduling for Clusters of Workstations (HJS)
This[2] hierarchical scheduling mode uses two levels of scheduling - top level(global scheduling) and
local level(local scheduling). The global scheduler uses single or multiple queues for scheduling jobs using
FCFS, SJF policy. The local scheduler uses only one queue for all types of jobs with any one policy FCFS, SJF.
The global scheduler has a number of functions. One of these is matching the resources requested by a job to
those available in the participating clusters. Another is to obtain the best utilization of the available clusters. The
local scheduler is responsible for scheduling jobs to a specific resource. At both levels, the schedulers strive to
maintain a good load balance.
Advantages:
a) It tries to reduce overall turnaround time and maximize system utilization for high system loads.
b) For high system loads it uses multi queue to maintain the delay of job scheduling at global level.
Disadvantages:
a) There may be a chance of underutilization of grid resources.
b) This algorithm does not consider the dynamic behavior of the grid resources.
III. Comparison of various grid scheduling algorithms
The following table shows the comparison of various grid scheduling algorithms. The basic parameters used for
comparison are response time, resource utilization and load balance. Abbreviations used are
D-Distributed, H-Hierarchical, C-Centralized, HO-Homogenous, HE-Heterogeneous,
RT-Response Time, RU- Resource Utilization, LB-Load Balance, DY-Dynamicity, HI-High,
AVG-Average, LO-Low
Algorithm
Parameters
Architecture
H/D/C
Environment
HE/HO
RT RU LB DY
Min-Min D HE HI HI AVG HI
Sufferage D HE HI HI AVG HI
HEFT D HE LO HI HI HI
COPS D HE LO HI HI HI
RASD D HE LO HI HI HI
HJS H HO AVG HI HI HI
Fig.2 Comparison of Different Grid Scheduling Algorithms
IV. Conclusion
In this paper we have discussed the different types of grid scheduling approaches and grid
scheduling algorithms. The different grid scheduling algorithms are compared based on various
factors like response time, resource utilization, load balancing etc.
Comparative Analysis of Various Grid Based Scheduling Algorithms
DOI: 10.9790/0661-17241316 www.iosrjournals.org 16 | Page
References
[1]. N. Malarvizhi and V.R.Uthariaraj, Hierarchical Load Balancing Scheme for Computational Intensive Jobs in Grid Computing
Environment, ICAC, IEEE, 2009
[2]. Grid Computing: Various Job Scheduling Strategies Abhang Swati Ashok Durole Pankaj Hari
[3]. Heuristics in Grid Scheduling, D. Thilagavathi and Dr. Antony SelvadossThanamani
[4]. Raksha Sharma, Vishnu Kant Soni, Manoj Kumar Mishra, PrachetBhuyan “A Survey of Job Scheduling and Resource
Management in Grid Computing”, 2010.
[5]. Study of an Iterative Technique to Minimize Completion Times of Non-Makespan Machines, by Luis Diego Briceno, Mohana
Oltikar, Howard Jay Siegel, and Anthony A. Maciejewski, 2007
[6]. M. Maheswaran, S. Ali, H. J. Siegel, D. Hensgen, and R. F. Freund, Dynamic mapping of a class of independent tasks onto
heterogeneous computing systems, J. Parallel Distrib. Comput. 59, 2(Nov. 1999), 107_121.
[7]. Reliability-aware scheduling strategy for heterogeneous distributed computing systems XiaoyongTanga, Kenli Li , Renfa Li,
BharadwajVeeravalli
[8]. Topcuoglu H, Hariri S, Wu M -Y. Performance-effective andlow complexity task scheduling for heterogeneous computing,IEEE
Trans Parallel DistribSyst, 2002, 13(3): 260–274
[9]. G.Q. Liu, K.L. Poh, M. Xie, Iterative list scheduling for heterogeneous computing, J. Parallel Distrib. Comput. 65 (5) (2005) 654-
665.

More Related Content

PDF
Reinforcement learning based multi core scheduling (RLBMCS) for real time sys...
PDF
J0210053057
PDF
Optimized Assignment of Independent Task for Improving Resources Performance ...
PDF
Task scheduling methodologies for high speed computing systems
PDF
PDF
DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTING
PDF
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
PDF
IRJET- Enhance Dynamic Heterogeneous Shortest Job first (DHSJF): A Task Schedu...
Reinforcement learning based multi core scheduling (RLBMCS) for real time sys...
J0210053057
Optimized Assignment of Independent Task for Improving Resources Performance ...
Task scheduling methodologies for high speed computing systems
DYNAMIC TASK PARTITIONING MODEL IN PARALLEL COMPUTING
Max Min Fair Scheduling Algorithm using In Grid Scheduling with Load Balancing
IRJET- Enhance Dynamic Heterogeneous Shortest Job first (DHSJF): A Task Schedu...

What's hot (16)

PDF
A novel methodology for task distribution
PDF
A survey of various scheduling algorithm in cloud computing environment
PDF
Efficient Resource Management Mechanism with Fault Tolerant Model for Computa...
PDF
Scheduling of Heterogeneous Tasks in Cloud Computing using Multi Queue (MQ) A...
PDF
[IJET V2I2P18] Authors: Roopa G Yeklaspur, Dr.Yerriswamy.T
PDF
A Survey of Job Scheduling Algorithms Whit Hierarchical Structure to Load Ba...
PDF
An enhanced adaptive scoring job scheduling algorithm with replication strate...
PDF
An Enhanced Throttled Load Balancing Approach for Cloud Environment
PDF
E01113138
PDF
A Review of Different Types of Schedulers Used In Energy Management
PDF
Service Request Scheduling in Cloud Computing using Meta-Heuristic Technique:...
PDF
Improved Max-Min Scheduling Algorithm
PDF
A vm scheduling algorithm for reducing power consumption of a virtual machine...
PDF
A vm scheduling algorithm for reducing power consumption of a virtual machine...
PDF
A study on dynamic load balancing in grid environment
PDF
VIRTUAL MACHINE SCHEDULING IN CLOUD COMPUTING ENVIRONMENT
A novel methodology for task distribution
A survey of various scheduling algorithm in cloud computing environment
Efficient Resource Management Mechanism with Fault Tolerant Model for Computa...
Scheduling of Heterogeneous Tasks in Cloud Computing using Multi Queue (MQ) A...
[IJET V2I2P18] Authors: Roopa G Yeklaspur, Dr.Yerriswamy.T
A Survey of Job Scheduling Algorithms Whit Hierarchical Structure to Load Ba...
An enhanced adaptive scoring job scheduling algorithm with replication strate...
An Enhanced Throttled Load Balancing Approach for Cloud Environment
E01113138
A Review of Different Types of Schedulers Used In Energy Management
Service Request Scheduling in Cloud Computing using Meta-Heuristic Technique:...
Improved Max-Min Scheduling Algorithm
A vm scheduling algorithm for reducing power consumption of a virtual machine...
A vm scheduling algorithm for reducing power consumption of a virtual machine...
A study on dynamic load balancing in grid environment
VIRTUAL MACHINE SCHEDULING IN CLOUD COMPUTING ENVIRONMENT
Ad

Viewers also liked (13)

PDF
How to Give Your Brand a Personality
PPTX
cape verde
PPTX
Missile tom
PDF
1414 15 w 4meters all in one di
PDF
The Cyberspace and Intensification of Privacy Invasion
PPTX
Act#13
DOCX
Media News For Big Movies.
PPTX
Gc law
DOCX
Itle of the project
PDF
An Effective Method to Hide Texts Using Bit Plane Extraction
PPS
3084 israel for-ever
PDF
Research Paper on FI
PPT
Microwave oven
How to Give Your Brand a Personality
cape verde
Missile tom
1414 15 w 4meters all in one di
The Cyberspace and Intensification of Privacy Invasion
Act#13
Media News For Big Movies.
Gc law
Itle of the project
An Effective Method to Hide Texts Using Bit Plane Extraction
3084 israel for-ever
Research Paper on FI
Microwave oven
Ad

Similar to Comparative Analysis of Various Grid Based Scheduling Algorithms (20)

PDF
Optimized Assignment of Independent Task for Improving Resources Performance ...
PDF
Optimized Assignment of Independent Task for Improving Resources Performance ...
PDF
A survey of various scheduling algorithm in cloud computing environment
DOC
Effective and Efficient Job Scheduling in Grid Computing
PDF
A Heterogeneous Static Hierarchical Expected Completion Time Based Scheduling...
PDF
GROUPING BASED JOB SCHEDULING ALGORITHM USING PRIORITY QUEUE AND HYBRID ALGOR...
PDF
GROUPING BASED JOB SCHEDULING ALGORITHM USING PRIORITY QUEUE AND HYBRID ALGOR...
PDF
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
PDF
An adaptive algorithm for task scheduling for computational grid
PDF
Job Resource Ratio Based Priority Driven Scheduling in Cloud Computing
PDF
Bragged Regression Tree Algorithm for Dynamic Distribution and Scheduling of ...
PDF
C1803052327
PDF
Quality of Service based Task Scheduling Algorithms in Cloud Computing
DOC
genetic paper
PDF
OPTIMIZED RESOURCE PROVISIONING METHOD FOR COMPUTATIONAL GRID
PDF
Optimized Resource Provisioning Method for Computational Grid
PDF
A Novel Methodology for Task Distribution in Heterogeneous Reconfigurable Com...
PDF
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
PDF
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
PDF
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
Optimized Assignment of Independent Task for Improving Resources Performance ...
Optimized Assignment of Independent Task for Improving Resources Performance ...
A survey of various scheduling algorithm in cloud computing environment
Effective and Efficient Job Scheduling in Grid Computing
A Heterogeneous Static Hierarchical Expected Completion Time Based Scheduling...
GROUPING BASED JOB SCHEDULING ALGORITHM USING PRIORITY QUEUE AND HYBRID ALGOR...
GROUPING BASED JOB SCHEDULING ALGORITHM USING PRIORITY QUEUE AND HYBRID ALGOR...
Scheduling Algorithm Based Simulator for Resource Allocation Task in Cloud Co...
An adaptive algorithm for task scheduling for computational grid
Job Resource Ratio Based Priority Driven Scheduling in Cloud Computing
Bragged Regression Tree Algorithm for Dynamic Distribution and Scheduling of ...
C1803052327
Quality of Service based Task Scheduling Algorithms in Cloud Computing
genetic paper
OPTIMIZED RESOURCE PROVISIONING METHOD FOR COMPUTATIONAL GRID
Optimized Resource Provisioning Method for Computational Grid
A Novel Methodology for Task Distribution in Heterogeneous Reconfigurable Com...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...
A NOVEL METHODOLOGY FOR TASK DISTRIBUTION IN HETEROGENEOUS RECONFIGURABLE COM...

More from iosrjce (20)

PDF
An Examination of Effectuation Dimension as Financing Practice of Small and M...
PDF
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
PDF
Childhood Factors that influence success in later life
PDF
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
PDF
Customer’s Acceptance of Internet Banking in Dubai
PDF
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
PDF
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
PDF
Student`S Approach towards Social Network Sites
PDF
Broadcast Management in Nigeria: The systems approach as an imperative
PDF
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
PDF
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
PDF
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
PDF
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
PDF
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
PDF
Media Innovations and its Impact on Brand awareness & Consideration
PDF
Customer experience in supermarkets and hypermarkets – A comparative study
PDF
Social Media and Small Businesses: A Combinational Strategic Approach under t...
PDF
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
PDF
Implementation of Quality Management principles at Zimbabwe Open University (...
PDF
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...
An Examination of Effectuation Dimension as Financing Practice of Small and M...
Does Goods and Services Tax (GST) Leads to Indian Economic Development?
Childhood Factors that influence success in later life
Emotional Intelligence and Work Performance Relationship: A Study on Sales Pe...
Customer’s Acceptance of Internet Banking in Dubai
A Study of Employee Satisfaction relating to Job Security & Working Hours amo...
Consumer Perspectives on Brand Preference: A Choice Based Model Approach
Student`S Approach towards Social Network Sites
Broadcast Management in Nigeria: The systems approach as an imperative
A Study on Retailer’s Perception on Soya Products with Special Reference to T...
A Study Factors Influence on Organisation Citizenship Behaviour in Corporate ...
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Design of a Balanced Scorecard on Nonprofit Organizations (Study on Yayasan P...
Public Sector Reforms and Outsourcing Services in Nigeria: An Empirical Evalu...
Media Innovations and its Impact on Brand awareness & Consideration
Customer experience in supermarkets and hypermarkets – A comparative study
Social Media and Small Businesses: A Combinational Strategic Approach under t...
Secretarial Performance and the Gender Question (A Study of Selected Tertiary...
Implementation of Quality Management principles at Zimbabwe Open University (...
Organizational Conflicts Management In Selected Organizaions In Lagos State, ...

Recently uploaded (20)

PDF
R24 SURVEYING LAB MANUAL for civil enggi
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PDF
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
web development for engineering and engineering
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PDF
Digital Logic Computer Design lecture notes
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PPT
Mechanical Engineering MATERIALS Selection
PDF
composite construction of structures.pdf
PDF
PPT on Performance Review to get promotions
R24 SURVEYING LAB MANUAL for civil enggi
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
July 2025 - Top 10 Read Articles in International Journal of Software Enginee...
UNIT 4 Total Quality Management .pptx
web development for engineering and engineering
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
CYBER-CRIMES AND SECURITY A guide to understanding
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
UNIT-1 - COAL BASED THERMAL POWER PLANTS
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Digital Logic Computer Design lecture notes
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
Mechanical Engineering MATERIALS Selection
composite construction of structures.pdf
PPT on Performance Review to get promotions

Comparative Analysis of Various Grid Based Scheduling Algorithms

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 2, Ver. IV (Mar – Apr. 2015), PP 13-16 www.iosrjournals.org DOI: 10.9790/0661-17241316 www.iosrjournals.org 13 | Page Comparative Analysis of Various Grid Based Scheduling Algorithms Ms. Maniza Hijab1 , Dr. Avula Damodaram2 , Dr. Uma N. Dulhare3 , Ms. M. Tahseen4, 1,3,4 Information Technology Department, Muffakham Jah College of Engg.& Tech, Banjara Hills, Hyderabad -155,A.P. India. 2 CSE Department, JNTUH & Director Academic Audit Cell, Jawaharlal Nehru Technological University Kukatpally, Hyderabad-72, A.P. India. Abstract : Grid computing provides access to heterogeneous resources which are distributed geographically which makes resource scheduling a complex problem. Hence, scheduling algorithms are necessary which allocate jobs to resources by taking into account the requirements of grid environment. The aim of scheduling is to achieve highest possible throughput by matching the need of the application with the computing resources available. In this paper, we review the various resource scheduling algorithms and discuss their pros and con. Keywords: Grid Computing, Grid Scheduling, Scheduling Parameters, Scheduling Algorithms I. Introduction The Grid consists of various components and resources. Grid Computing is an important paradigm that supports sharing and access to a large amount of computational and storage resources which are heterogeneous and geographically distributed. Grid computing has the design goal of solving problems too big for any single supercomputer, while retaining the flexibility to work on multiple smaller problems. Therefore Grid computing provides a multi-user environment. Its secondary aims are better exploitation of available computing power and catering for the intermittent demands of large computational exercises [1].The basic grid model is generally composed of a number of hosts, each composed of several computational resources, which may be homogeneous or heterogeneous. The four basic building blocks of grid model are user, resource broker, grid information service (GIS) and resources. Fig.1 Basic Resource Model [4] When user requires high speed execution, the job is submitted to the broker in grid. Broker splits the job into various tasks and distributes to several resources according to user’s requirements and availability of resources. GIS keeps the status information of all resources which helps the broker for scheduling [2]. Appropriate and efficient allocation of tasks to the resources is called as job scheduling. Main aim of job scheduling is to provide proper load balancing of nodes and reduce the response time by proper allocation of jobs.
  • 2. Comparative Analysis of Various Grid Based Scheduling Algorithms DOI: 10.9790/0661-17241316 www.iosrjournals.org 14 | Page 1.1.Types of Grid Scheduling[3] A. Static versus Dynamic In static scheduling, resource information and task information is available before scheduling. In dynamic scheduling, task allocation is done during its execution. B. Centralized versus Decentralized In centralized scheduling, a single scheduler is responsible for task scheduling whereas in decentralized scheduling multiple distributed schedulers are responsible for scheduling. C. Hierarchical In hierarchical scheduling two schedulers are used, one at global level and the other at local level. 1.2. Comparison parameters Various parameters discussed in this paper are: Completion Time: Time taken by a machine in grid to complete a task. Sufferage Value: The difference between second earliest completion time and the earliest completion time. Task Priority: The tasks with highest priority are given more weightage. Computation Costs of Task: cost to execute a task by a processor. Communication Cost: cost of communication between two tasks. Turnaround Time (TT): It is the total time taken between the submission of a task for execution and the return of the result to the user. Response Time (RT): It is the total time it taken to respond to a request. The response time is the sum of time taken by the task waiting in queue and the service time. II. Existing Scheduling Algorithms 2.1Min-Min Algorithm In [5] the author proposed an algorithm which finds the machines on which a task is completed in minimum time. This results in task-machine pairs with minimum completion time. Among all the task-machine pairs the pair with minimum completion time is selected. Once the task is assigned to the machine it is removed from the task list and the ready time of the machine is updated. This process is repeated until all the tasks are completed. Advantage: The response time is reduced as the minimum completion time of job is considered. Disadvantage: Estimating the minimum completion time is difficult and may not be accurate. Time consuming process. 2.2 Sufferage algorithm In [6] the author proposed an algorithm which finds the machine on which a task is completed in minimum time. The Sufferage value is calculated which is the difference between the second earliest completion time and the earliest completion time. If the machine is unassigned then assign the task to the machine and remove the task from task list. Otherwise, if the Sufferage value of a task already assigned to the machine is less than the Sufferage value of the task selected then unassign the assigned task and add it to task list, assign the selected task and remove it from task list. The ready times of all machines are updated. Disadvantage: Determining the earliest completion time and Sufferage value is tedious and time-consuming process and may not be accurate 2.3 Heterogeneous Earliest Finish Time (HEFT) Algorithm In [8] the author proposed an algorithm which makes use of a directed acyclic graph. The average computation costs of tasks and the communication costs of edges are calculated.The rank of all the tasks is computed by traversing the graph upward. The tasks are sorted in decreasing order of rank. For each processor the earliest finish time (EFT) of tasks is computed. A task is assigned to the processor which minimizes its EFT Disadvantage: More time spent on calculating computation costs and communication costs.
  • 3. Comparative Analysis of Various Grid Based Scheduling Algorithms DOI: 10.9790/0661-17241316 www.iosrjournals.org 15 | Page 2.4 Critical Path-On- a Processor (CPOP) Algorithm In [9] the author proposed an algorithm which makes use of directed acyclic graph. The mean of computation costs of tasks and communication costs of edges are calculated. For each task two ranks are computed by traversing the graph both upward and downward. The priority of each task is assigned by adding the two ranks. This algorithm uses critical path of graph, obtained by adding the computation cost of tasks on the path with the inter-task communication cost.The entry task is selected as critical path task. The task immediately following the entry if having highest priority is selected as critical path task.A priority queue is maintained for the tasks. If the selected task is on critical path it is assigned to critical path processor which minimizes the cumulative computation cost of the task on the critical path. If no, then it is assigned to a processor which minimizes the EFT of the task and the priority queue is updated. Disadvantages: a) It is not suitable for more number of job allocations because finding priority of job is tedious one. b) Higher turnaround time. c) CPU and memory wastage. 2.5 Reliability Aware Scheduling Algorithm with Duplication of HDC System (RASD) Algorithm In [7]the author proposed an algorithm which makes use of a directed acyclic graph. The average computation costs of tasks and the communication costs of edges are calculated. The rank of all the tasks is computed by traversing the graph from the exit task.The tasks are sorted in decreasing order of rank. For a task assigned to a processor find the reliability of communication edge between the task and its predecessor. For each processor repeat the process and compute EFT of a task on a processor and also the reliability of the task on the processor an the system overhead. 2.6 Hierarchical Job Scheduling for Clusters of Workstations (HJS) This[2] hierarchical scheduling mode uses two levels of scheduling - top level(global scheduling) and local level(local scheduling). The global scheduler uses single or multiple queues for scheduling jobs using FCFS, SJF policy. The local scheduler uses only one queue for all types of jobs with any one policy FCFS, SJF. The global scheduler has a number of functions. One of these is matching the resources requested by a job to those available in the participating clusters. Another is to obtain the best utilization of the available clusters. The local scheduler is responsible for scheduling jobs to a specific resource. At both levels, the schedulers strive to maintain a good load balance. Advantages: a) It tries to reduce overall turnaround time and maximize system utilization for high system loads. b) For high system loads it uses multi queue to maintain the delay of job scheduling at global level. Disadvantages: a) There may be a chance of underutilization of grid resources. b) This algorithm does not consider the dynamic behavior of the grid resources. III. Comparison of various grid scheduling algorithms The following table shows the comparison of various grid scheduling algorithms. The basic parameters used for comparison are response time, resource utilization and load balance. Abbreviations used are D-Distributed, H-Hierarchical, C-Centralized, HO-Homogenous, HE-Heterogeneous, RT-Response Time, RU- Resource Utilization, LB-Load Balance, DY-Dynamicity, HI-High, AVG-Average, LO-Low Algorithm Parameters Architecture H/D/C Environment HE/HO RT RU LB DY Min-Min D HE HI HI AVG HI Sufferage D HE HI HI AVG HI HEFT D HE LO HI HI HI COPS D HE LO HI HI HI RASD D HE LO HI HI HI HJS H HO AVG HI HI HI Fig.2 Comparison of Different Grid Scheduling Algorithms IV. Conclusion In this paper we have discussed the different types of grid scheduling approaches and grid scheduling algorithms. The different grid scheduling algorithms are compared based on various factors like response time, resource utilization, load balancing etc.
  • 4. Comparative Analysis of Various Grid Based Scheduling Algorithms DOI: 10.9790/0661-17241316 www.iosrjournals.org 16 | Page References [1]. N. Malarvizhi and V.R.Uthariaraj, Hierarchical Load Balancing Scheme for Computational Intensive Jobs in Grid Computing Environment, ICAC, IEEE, 2009 [2]. Grid Computing: Various Job Scheduling Strategies Abhang Swati Ashok Durole Pankaj Hari [3]. Heuristics in Grid Scheduling, D. Thilagavathi and Dr. Antony SelvadossThanamani [4]. Raksha Sharma, Vishnu Kant Soni, Manoj Kumar Mishra, PrachetBhuyan “A Survey of Job Scheduling and Resource Management in Grid Computing”, 2010. [5]. Study of an Iterative Technique to Minimize Completion Times of Non-Makespan Machines, by Luis Diego Briceno, Mohana Oltikar, Howard Jay Siegel, and Anthony A. Maciejewski, 2007 [6]. M. Maheswaran, S. Ali, H. J. Siegel, D. Hensgen, and R. F. Freund, Dynamic mapping of a class of independent tasks onto heterogeneous computing systems, J. Parallel Distrib. Comput. 59, 2(Nov. 1999), 107_121. [7]. Reliability-aware scheduling strategy for heterogeneous distributed computing systems XiaoyongTanga, Kenli Li , Renfa Li, BharadwajVeeravalli [8]. Topcuoglu H, Hariri S, Wu M -Y. Performance-effective andlow complexity task scheduling for heterogeneous computing,IEEE Trans Parallel DistribSyst, 2002, 13(3): 260–274 [9]. G.Q. Liu, K.L. Poh, M. Xie, Iterative list scheduling for heterogeneous computing, J. Parallel Distrib. Comput. 65 (5) (2005) 654- 665.