REVIEW ON THE GRID ARCHITECTURE FOR SCHEDULING AND LOAD BALANCING
|
|
|
- Ilene Day
- 10 years ago
- Views:
Transcription
1 REVIEW ON THE GRID ARCHITECTURE FOR SCHEDULING AND LOAD BALANCING B.PRIYA MCA Dept, Sri Sai Ram Engineering College, Chennai. Abstract: Grid is defined as A type of parallel and distributed system that enables the sharing, selection, and aggregation of geographically distributed autonomous and heterogeneous resources dynamically at runtime depending on their availability, capability, performance, cost, and users' quality-of-service requirements. Grid computing appears to be a promising trend for reasons such as its ability to make more cost-effective use of a given amount of computer resources, a way to solve problems that cannot be approached without an enormous amount of computing power, and the resources of many computers can be cooperatively and managed as a collaboration toward a common objective. A task in a grid is associated with the following parameters such as CPU/ Memory Size, deadline to complete the task, Priority etc. Scheduling is the process of ordering tasks on computational resources and ordering communication between tasks. It is carried out for shortening the job completion time and to improve the system throughput. A poor scheduling policy may leave many processors idle while a clever one may consume an unduly large portion of the total CPU cycles. Load balance is also an important issue in grid environment. The purpose of load balancing is to balance the load of each resource in order to enhance the resource utilization and increase the system throughput. The main objective of load balancing method is to speed up the execution of applications on resources whose workload varies at run time in unpredictable way. In this paper the various classification of the scheduling algorithms and the factors associated with load balancing algorithms are reviewed along with their tools and their application areas and a design model has been proposed for Grid Scheduling. Keywords: Computational Grid, GridSim, Grid Scheduler, Load Balancing. I. INTRODUCTION A grid is a system that coordinates resources that are not subject to centralized control using standard, open, general purpose interfaces and protocols to deliver non-trivial qualities of service. Grid Computing is an emerging computing model that treats all resources as a collection of manageable entities with common interfaces to such functionality as lifetime management, discoverable properties and accessibility via open protocols. Some of the characteristics of the grid include [1] (i) geographical distribution where the resources of grid may be located at distant places (ii) heterogeneity, a grid consists of hardware as well as software resources that may be files, software components, sensor programs, scientific instruments, display devices, computers, supercomputers networks etc (iii) resource sharing, different organizations may own the resources of the grid (iv) multiple administrations, each organization may establish different security and administrative policies to access their resources (v) Resource coordination, to get combined computing capabilities, grid resources must be coordinated. Some of the advantages of Grid Computing are listed below:[21] 1. Seamless and secure access to large number of geographically distributed 2. Reduction in average job response time may occur but an overhead of limited network bandwidth and latency exists. 3. Provides users around the world with dynamic and adaptive access to unparalleled levels of computing. 4. With the infrastructure provided by the Grid, scientists are able to perform complex tasks, integrate their work and collaborate remotely. 5. Grids can lead to savings in processing time. 6. Efficient, effective, and economic utilization of available 7. Increased availability and reliability of 8. Shared access (by multiple users) to large amounts of data. 9. Improved methods for collaborative work. 10. Unprecedented Price-to-Performance ratio. Implementing an e-governance solution will lower the cost of developing, deploying, managing government solutions and providing better services to the citizens. A The rest of the paper is organized as follows: Section 2 deals with the Scheduling and the load balancing concept, Section 3 deals with the various Grid Scheduling tools. Section 4 deals with the literature survey in Grid scheduling and load balancing. Section 5 deals with the various application areas associated with the Grid. Section 6 deals with the proposed system model for scheduling and load balancing. 36
2 Scheduling and load balancing in computational grid: A computational grid is a hardware and software infrastructure that provides dependable, consistent, pervasive, and inexpensive access to high-end computational capabilities. A computational Grid environment behaves like a virtual organization consisting of distributed The goal of a scheduling strategy is to maximize the performance of a parallel system, by transferring task from busy processors to other processors that are less busy or even idle. A scheduling strategy [6] involves two important decisions: 1. Determine the tasks that can be executed in parallel, and 2. Determine where to execute the parallel tasks. The task of scheduling depends on the following parameters: 1. Cost of the tasks 2. Dependencies between the various tasks 3. Locality associated. The various challenges for scheduling in Grid are: 1. All resources reside within a single administrative domain. 2. To provide a single system image, the scheduler controls all of the 3. The resource pool is invariant. 4. Contention caused by the incoming applications can be managed by the scheduler according to some policies, so that its impact on the performance that the site can provide to each application can be well predicted. 5. Computations and their data reside in the same site or data staging is a highly predictable process, usually from a predetermined source to a predetermined destination, which can be viewed as a constant overhead. The taxonomy of scheduling algorithms as depicted in [7] is given below: Figure 1: Taxonomy of scheduling algorithms Load balancing is the most important factor to improve the efficiency and performance of a multiple nodes in a grid based distributed network. The main goal of load balancing is to provide a distributed, low cost scheme that balances the load across all the processors. An independent program or a partitioned module of a parallel task or program is called as workload. In a grid some nodes may be heavily loaded while some may be idle. Therefore, load balancing is the problem of distributing workload among physically separated nodes during run time. A load balancing algorithm improves the performance of the system. However, the degree of improvement in the performance of the system depends not only on the specific algorithm used but also on the degree of uneven distribution of load over the nodes. Many scheduling and load balancing solutions have been proposed for conventional distributed computing systems. [2] A load balancing algorithm attempts to improve the response time of user s submitted applications by ensuring maximal utilization of available The various factors to be considered in load balancing are: 1. How to measure resource workload? 2. What criteria are retaining to define this workload? 3. How to avoid the negative effects of resources dynamicity on the workload; and 4. How to take into account the resources heterogeneity in order to obtain an instantaneous average workload representative of the system? Load balancing can be defined by the following policies [4]. 1. Information Policy - specifies what workload information is to be collected, when it is to collected and from where. 2. Triggering Policy - determines the appropriate at which to start a load balancing operation. 3. Resource type Policy - classifies resource as a server or a receiver of tasks according to its availability status. 4. Location Policy uses the results of the resource type policy to find a suitable partner for a resource provides or a resource receiver. 5. Selection Policy defines the tasks that should be migrated from overloaded resource to the idlest Load balancing algorithms can be classified into two categories such as static algorithms and dynamic algorithms. In static load balancing, the information about the characteristics of the jobs, the computing nodes and the communication network is known in advance. The decisions are made at compile time when resource requirements are estimated. Static algorithms are classified into optimal and suboptimal. Optimal scheduling considers minimum makespan and maximum utilization of Suboptimal is further classified into approximation algorithms and Heuristic. Approximation algorithms are used to find the approximation solutions to the optimization 37
3 problems. These algorithms are used for problems when the exact polynomial time is known. Heuristic algorithms are mainly preferred for its efficiency in terms of time and cost. Dynamic load balancing algorithms make changes to the distribution of work among nodes at run time. They use current or recent load information when making distribution decisions. Dynamic loadbalancingalgorithm allocates/reallocates resources at runtime. Despite the higher runtime complexity, dynamic algorithms can provide better performance than static algorithms. The advantage of dynamic load balancing over static scheduling is that the system need not be aware of the run-time behavior of the applications before execution. The flexibility inherent in dynamic load balancing allows for adaptation to the unforeseen application requirements at run-time. Dynamic load balancing is particularly useful in a system consisting of a network of workstations in which the primary performance goal is maximizing utilization of the processing power instead of minimizing execution time of the applications. The major disadvantage of dynamic load balancing schemes is the run-time overhead due to:[8] 1. the load information transfer among processors, 2. the decision-making process for the selection of processes and processors for job transfers, and 3. the communication delays due to task relocation itself. When the scheduler makes the assignment of the tasks to the nodes, load balancing concept comes in. the various factors that affect the scheduling in Grid are: 1. A new task arrives and has to be queued to a particular node. 2. Scheduling the task to a node. 3. When load is unbalanced, rescheduling of task has to take place. 4. Allocating the task to the node after it has completed its schedule. 5. Releasing the node on completion of the task. II. TOOLS ASSOCIATED WITH GRID SCHEDULING: The steps necessary to realize a Grid include[19,20]: 1. The integration of individual software and hardware components in to a combined networked resource. 2. The Deployment of Low-level middleware to provide a secure and transparent access to 3. The deployment of User-level middleware and tools for application development and the aggregation of distributed 4. The development and optimization of distributed applications to take advantage of the available resources and infrastructure. The various tools associated with Grid Scheduling are: OptorSim: In the search for an optimal scheduling and replication strategy, the grid simulator OptorSim[16] was developed as part of the European DataGrid project. Simulations of various high energy physics (HEP) grid scenarios have been undertaken using different job scheduling and file replication algorithms, with the emphasis being on physics analysis use-cases. OptorSim which has the structure of EDG, includes the following elements to achieve a realistic simulated environment. These include storage resources where data can be kept, computing resources to which jobs can be sent, scheduler to decide to which resource the job has to be sent, the network which connects the sites and finally replica management. GridSim: The GridSim toolkit provides a comprehensive facility for simulation of different classes of heterogeneous resources, users, applications, resource brokers, and schedulers. It can be used to simulate application schedulers for single or multiple administrative domains distributed computing systems such as clusters and Grids. Application schedulers in the Grid environment, called resource brokers, perform resource discovery, selection, and aggregation of a diverse set of distributed resources for an individual user. This means that each user has his or her own private resource broker and hence it can be targeted to optimize for the requirements and objectives of its owner. In contrast, schedulers, managing resources such as clusters in a single administrative domain, have complete control over the policy used for allocation of [3] SimGrid: SimGrid is a toolkit that provides core functionalities for the simulation of distributed applications in heterogeneous distributed environments. The specific goal of the project is to facilitate research in the area of distributed and parallel application scheduling on distributed computing platforms ranging from simple network of workstations to Computational Grids. Henri Casanova in [17] has used Simgrid for the study of scheduling algorithms for distributed application. III. LITERATURE SURVEY: Some of the Grid related projects are Globus, Condor and Nimrod G. Globus[11] uses open source toolkit for building gird systems and applications. It allows sharing of computing power, databases and other tools securely online. It provides facilities for Resource monitoring, discovery, security and file 38
4 management. Nimrod G is a tool to manage the execution of the parametric studies across distributed computers. They have been various scheduling algorithms developed for various applications. Ramya et al[9] proposed an Optimized Hierarchical Load Balancing Algorithm(OHLBA) which dynamically creates an optimal schedule to complete the jobs within minimum makespan. The Average Computational Power (ACP) for each cluster is found out to select the The Average load of each resource (ALC) is found for load analysis. A threshold value is compared with the ALC to submit a job to the cluster which is in underload. Sumathi et al[10] proposed a Hybrid Core Scheduling algorithm for Workflow management in Grid. The Hybrid Core algorithm dynamically schedules tasks of workflows to grid sites based on the performance of the sites when running previous jobs from the same workflow for E-Governance applications. Salman Meraji et al[12] proposed a new scheduling algorithm to improve task assignment performance by schedulers through minimizing makespan amounts and maximizing resource utilization percentage and matching proximity. Keerthika et al[13] proposes a Bicriteria Scheduling algorithm (BSA) that considers user satisfaction along with fault tolerance. The algorithm calculates the total completion time and then the fitness value based on failure rate. Deadline hit count is another new metric introduced in this work. This represents the number of tasks successfully completed within the user deadline. This is a measure of user satisfaction which is the key requirement in grid system. Joshua Samuel Raj et al[14] proposed an enhancement of Hierarchical Load Balancing Algorithm by evaluating the cluster imbalance. This proposed Enhanced Hierrarchical Load Balancing algorithm(alhba), the idle condition of the cluster is evaluated while scheduling. The alogrithm then computes the Average Load of cluster and the Expected Computing Power (ECP) of each job for scheduling. The queue length of each cluster is found out. When the queue length is greater, jobs are stolen and allocated to free clusters. A. D. Isalkar et al[15]proposed an Utility-Based Load Balancing Algorithm (ULB), dynamic, a lowoverhead, runtime mechanism that balances the load among shared resources between multiple applications depending on the utility that each application is likely to obtain for a given amount of The proposed mechanism monitors each application at runtime using a novel, cost-effective, hardware circuit. The information collected by the monitoring circuits is used by a load balancing algorithm to decide the amount of resources allocated to each application. IV. APPLICATION AREAS OF GRID: There is a wide range of application areas associated with Grid. They are: 1. Medical Applications: In diagnostics huge amounts of data are generated at one place by specialized devices. These data have to be transported to the specialists, possibly located at several locations, while the patient might be at a third location. The task of a Grid in this scenario is to prepare and transport the medical data, so that they are available at the right location at the right time [18]. 2. Support for multinational enterprises: Multinational enterprises work at several locations in several time zones. Data, e.g., multimedia data from inspections, must be preprocessed and forwarded to specialists who can take decisions. Several Multimedia Applications make use of a Grid for processing media streams. Within multimedia QoS control is very important. Applications often include the handling of Digital Rights Management. E.g., multimedia data can be watermarked scrambled etc. 3. Applications from bio-informatics, seismology, meteorology, etc. are data and computingintensive, and need often other information 4. E-governance :E-governance is the application of information and accountability in Government related tasks. It enables citizens to make the best use of automated administration processes that are accessible on-line. Grid computing is an ideal solution to these type of applications [10]. 5. E-Learning : Scheduling of the various activities in an Intelligent Tutoring System (ITS) can be made possible by grid. V. PROPOSED MODEL-GASLB The details of the various Grid resources are updated in a Grid Information Server(GIS). The GIS collects and predicts the resource state information such as 1. CPU Capacities 2. Memory Size 3. Network Bandwidth 4. Software Availabilities and 5. The load of a site in a particular period. The Grid scheduler (GS), also termed as Meta Scheduler receives applications from Grid users, selects feasible resources for these applications according to acquired information from the Grid Information Service module, and finally generates application-to-resource mappings, based on certain objective functions and predicted resource performance such as: 1. User Demand 2. Communication time 3. Failure handling mechanisms and 4. Reduced Makespan (the difference between the start and end of a job) 39
5 The proposed model for scheduling and load balancing proposed by the author termed as Grid Architecture for Scheduling and Load balancing (GASLB) is shown in Figure 2: Figure 2: Grid Architecture for Scheduling and Load Balancing (GASLB) The GS works in three phases. They are : 1. Resource Listing and Filtering 2. Resource Selecting and Scheduling according to certain objectives (i.e Resource Allocation) 3. Analyzing the Cluster Load 4. Job Submission.(i.e Job Execution) The third phase deals with the Load balancing concept. CONCLUSION: The various scheduling and the load balancing criteria have been reviewed along with the various tools associated with Grid Scheduling. The paper provides an study on the scheduling of various tasks in different application areas. It is intended to propose a scheduling algorithm to improve the performance in an E-Governance application for effective scheduling of the various tasks. REFERENCES [1] Miguel L. Bote-Lorenzo, Yannis A. Dimitriadis, and Eduardo Gomez-Sanchez, Grid Characteristics and Uses: a Grid Definition, In the Postproc. Of the first European Across Grid Conference (ACG 03), Springer-Verlag LNCS 2970, pp , Santago de Compostela, Spain, Feb [2] A Study on the Assessment of Load Balancing Algorithms in Grid Based Network Sachin Kumar, Niraj Singhal, International Journal of Soft Computing and Engineering (IJSCE) ISSN: , Volume-2, Issue-1, March 2012 [3] H. D. Karatza, Job scheduling in heterogeneous distributed systems, Journal of Systems and Software, (1994), pp [4] Fair Scheduling Algorithm with Dynamic Load Balancing Using In Grid Computing Mr.V. P. Narkhede, Prof. S. T. Khandare Lecturer, Department Of IT, Anuradha Engineering College, Chikhli, India 2Associate Professor, Department Of CSE, B.N.C.O.E., Pusad, India, International Journal Of Engineering And Science Vol.2, Issue 10 (April 2013), Pp Issn(e): , Issn(p): [5] International Journal of Advanced Science and Technology Vol.58, (2013), pp ISSN: IJAST Copyright c 2013 SERSC, A Hybrid Scheduling Algorithm with Load Balancing for Computational Grid,P. Keerthika and N. Kasthuri [6] [7] T.Casavant, and Kuhl, A Taxonomy of Scheduling in General purpose Distributed Computing Systems, IEEE Trans. on Software Engineering, vol. 14, no. 2, pp , Feb [8] ETTURE/SchedLB.pdf [9] Ramya R and Shalini Thomas. Article: An Optimal Job Scheduling Algorithm in computational Grids. IJCA Special Issue on International Conference on Communication, Computing and Information Technology ICCCMIT(1):12-16, February [10] Constructing a Grid Simulation for E-Governance Applications Using GridSim P. Sumathi, M. Punithavalli, Journal of Computer Science 4 (8): , 2008 ISSN Science Publications. [11] Globus website: [12] Salman Meraji, M. Reza Salehnamadi, A Batch Mode Scheduling Algorithm for Grid Computing J. Basic. Appl. Sci. Res., 3(4) , 2013, 2013, TextRoad Publication [13] P.Keerthika and N. Kasthuri, An Efficient Grid Scheduling algorithm with Fault tolerance and User Satisfaction, Mathematical problems in Engineering, Volume 2013(2013), Article ID [14] Joshua Samuel Raj, Hridya K. S and V. Vasudevan, Augmenting Hierarchical Load Balancing with Intelligence in Grid Environment, International Journal of Grid and Distributed Computing Vol. 5, No. 2, June, 2012 [15] Utility Based Load Balancing With Grid Computing Approach, Prof. A. D. Isalkar, Prof. S. T. Khandare Ijpret, 2013; Volume 1(8): [16] David G.Cameron, Ruben Carvajal-Schaffino, A.Paul Millar, Caitriana Nicholson, Kurt Stockinger, Floriano Zini, Evaluating Scheduling and Replica Optimisation Strategies in OptorSim, International Conference on Grid Computing, Proceedings of the 4 th International Workshop on Grid Computing, 2003, page 52. [17] Henri Casanova, Simgrid: a Toolkit for the Simulation of Application Scheduling, Proceedings of the first IEEE/ACM InternationalSymposium on Cluster Computing and the Grid (CCGRID), 2001 [18] Ian Foster, Carl Kesselman, Jeffrey M. Nick and Steven Tuecke, The Physiology of the Grid: An Open Grid Services Architecture for Distributed Systems Integration. [19] International Journal of Grid and Distributed Computing Vol. 4, No. 3, September, 2011, A Taxonomy of Grid Resource Selection Mechanisms Adil Yousif, Abdul Hanan Abdullah, Muhammad Shafie Abd Latiff and Mohammed Bakri Bashir Faculty of Computer Science & Information System Universiti Teknologi Malaysia UTM, Malaysia [20] Rajkumar Buyya, David Abramson and Srikumar Venugopal, The Grid Economy, Special Issue on Grid Computing, Proceedings of the IEEE, Manish Parashar and Craig Lee(Eds). IEEE Press, New York, USA., March PP [21] Liang Fang, Aleksander Slominski, and Dennis Gannon,Computer Science Dept, Indiana University, Web Services Security and Load Balancing in Grid Environment. 40
Fair Scheduling Algorithm with Dynamic Load Balancing Using In Grid Computing
Research Inventy: International Journal Of Engineering And Science Vol.2, Issue 10 (April 2013), Pp 53-57 Issn(e): 2278-4721, Issn(p):2319-6483, Www.Researchinventy.Com Fair Scheduling Algorithm with Dynamic
A Taxonomy and Survey of Grid Resource Planning and Reservation Systems for Grid Enabled Analysis Environment
A Taxonomy and Survey of Grid Resource Planning and Reservation Systems for Grid Enabled Analysis Environment Arshad Ali 3, Ashiq Anjum 3, Atif Mehmood 3, Richard McClatchey 2, Ian Willers 2, Julian Bunn
A Study on the Application of Existing Load Balancing Algorithms for Large, Dynamic, Heterogeneous Distributed Systems
A Study on the Application of Existing Load Balancing Algorithms for Large, Dynamic, Heterogeneous Distributed Systems RUPAM MUKHOPADHYAY, DIBYAJYOTI GHOSH AND NANDINI MUKHERJEE Department of Computer
Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing
www.ijcsi.org 227 Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing Dhuha Basheer Abdullah 1, Zeena Abdulgafar Thanoon 2, 1 Computer Science Department, Mosul University,
An Empirical Study and Analysis of the Dynamic Load Balancing Techniques Used in Parallel Computing Systems
An Empirical Study and Analysis of the Dynamic Load Balancing Techniques Used in Parallel Computing Systems Ardhendu Mandal and Subhas Chandra Pal Department of Computer Science and Application, University
Improving Performance in Load Balancing Problem on the Grid Computing System
Improving Performance in Problem on the Grid Computing System Prabhat Kr.Srivastava IIMT College of Engineering Greater Noida, India Sonu Gupta IIMT College of Engineering Greater Noida, India Dheerendra
Keywords Distributed Computing, On Demand Resources, Cloud Computing, Virtualization, Server Consolidation, Load Balancing
Volume 5, Issue 1, January 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Survey on Load
A Novel Load Balancing Algorithms in Grid Computing
A Novel Load Balancing Algorithms in Grid Computing Shikha Gautam M.Tech. Student Computer Science SITM LKO Abhay Tripathi Assistant Professor Computer Science SITM LKO Abstract: The Grid is emerging as
A Simulation Model for Grid Scheduling Analysis and Optimization
A Simulation Model for Grid Scheduling Analysis and Optimization Florin Pop Ciprian Dobre Gavril Godza Valentin Cristea Computer Science Departament, University Politehnica of Bucharest, Romania {florinpop,
Collaborative & Integrated Network & Systems Management: Management Using Grid Technologies
2011 International Conference on Computer Communication and Management Proc.of CSIT vol.5 (2011) (2011) IACSIT Press, Singapore Collaborative & Integrated Network & Systems Management: Management Using
A Comparative Performance Analysis of Load Balancing Algorithms in Distributed System using Qualitative Parameters
A Comparative Performance Analysis of Load Balancing Algorithms in Distributed System using Qualitative Parameters Abhijit A. Rajguru, S.S. Apte Abstract - A distributed system can be viewed as a collection
Keywords: Dynamic Load Balancing, Process Migration, Load Indices, Threshold Level, Response Time, Process Age.
Volume 3, Issue 10, October 2013 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Load Measurement
An approach to grid scheduling by using Condor-G Matchmaking mechanism
An approach to grid scheduling by using Condor-G Matchmaking mechanism E. Imamagic, B. Radic, D. Dobrenic University Computing Centre, University of Zagreb, Croatia {emir.imamagic, branimir.radic, dobrisa.dobrenic}@srce.hr
A Novel Approach for Efficient Load Balancing in Cloud Computing Environment by Using Partitioning
A Novel Approach for Efficient Load Balancing in Cloud Computing Environment by Using Partitioning 1 P. Vijay Kumar, 2 R. Suresh 1 M.Tech 2 nd Year, Department of CSE, CREC Tirupati, AP, India 2 Professor
@IJMTER-2015, All rights Reserved 355
e-issn: 2349-9745 p-issn: 2393-8161 Scientific Journal Impact Factor (SJIF): 1.711 International Journal of Modern Trends in Engineering and Research www.ijmter.com A Model for load balancing for the Public
Grid Computing Vs. Cloud Computing
International Journal of Information and Computation Technology. ISSN 0974-2239 Volume 3, Number 6 (2013), pp. 577-582 International Research Publications House http://www. irphouse.com /ijict.htm Grid
MEASURING PERFORMANCE OF DYNAMIC LOAD BALANCING ALGORITHMS IN DISTRIBUTED COMPUTING APPLICATIONS
MEASURING PERFORMANCE OF DYNAMIC LOAD BALANCING ALGORITHMS IN DISTRIBUTED COMPUTING APPLICATIONS Priyesh Kanungo 1 Professor and Senior Systems Engineer (Computer Centre), School of Computer Science and
CDBMS Physical Layer issue: Load Balancing
CDBMS Physical Layer issue: Load Balancing Shweta Mongia CSE, School of Engineering G D Goenka University, Sohna [email protected] Shipra Kataria CSE, School of Engineering G D Goenka University,
A Novel Switch Mechanism for Load Balancing in Public Cloud
International OPEN ACCESS Journal Of Modern Engineering Research (IJMER) A Novel Switch Mechanism for Load Balancing in Public Cloud Kalathoti Rambabu 1, M. Chandra Sekhar 2 1 M. Tech (CSE), MVR College
An Implementation of Load Balancing Policy for Virtual Machines Associated With a Data Center
An Implementation of Load Balancing Policy for Virtual Machines Associated With a Data Center B.SANTHOSH KUMAR Assistant Professor, Department Of Computer Science, G.Pulla Reddy Engineering College. Kurnool-518007,
Keywords: Cloudsim, MIPS, Gridlet, Virtual machine, Data center, Simulation, SaaS, PaaS, IaaS, VM. Introduction
Vol. 3 Issue 1, January-2014, pp: (1-5), Impact Factor: 1.252, Available online at: www.erpublications.com Performance evaluation of cloud application with constant data center configuration and variable
Various Schemes of Load Balancing in Distributed Systems- A Review
741 Various Schemes of Load Balancing in Distributed Systems- A Review Monika Kushwaha Pranveer Singh Institute of Technology Kanpur, U.P. (208020) U.P.T.U., Lucknow Saurabh Gupta Pranveer Singh Institute
A novel load balancing algorithm for computational grid
International Journal of Computational Intelligence Techniques, ISSN: 0976 0466 & E-ISSN: 0976 0474 Volume 1, Issue 1, 2010, PP-20-26 A novel load balancing algorithm for computational grid Saravanakumar
Payment minimization and Error-tolerant Resource Allocation for Cloud System Using equally spread current execution load
Payment minimization and Error-tolerant Resource Allocation for Cloud System Using equally spread current execution load Pooja.B. Jewargi Prof. Jyoti.Patil Department of computer science and engineering,
Service Oriented Distributed Manager for Grid System
Service Oriented Distributed Manager for Grid System Entisar S. Alkayal Faculty of Computing and Information Technology King Abdul Aziz University Jeddah, Saudi Arabia [email protected] Abstract
An ACO Algorithm for Scheduling Data Intensive Application with Various QOS Requirements
An ACO Algorithm for Scheduling Data Intensive Application with Various QOS Requirements S.Aranganathan and K.M.Mehata Department of CSE B.S. Abdur Rahman University Chennai 600048, Tamilnadu, India ABSTRACT
Efficient Service Broker Policy For Large-Scale Cloud Environments
www.ijcsi.org 85 Efficient Service Broker Policy For Large-Scale Cloud Environments Mohammed Radi Computer Science Department, Faculty of Applied Science Alaqsa University, Gaza Palestine Abstract Algorithms,
An Effective Dynamic Load Balancing Algorithm for Grid System
An Effective Dynamic Load Balancing Algorithm for Grid System Prakash Kumar #1, Pradeep Kumar #2, Vikas Kumar *3 1,2 Department of CSE, NIET, MTU University, Noida, India 3 Linux Administrator, Eurus Internetworks
High Performance Cluster Support for NLB on Window
High Performance Cluster Support for NLB on Window [1]Arvind Rathi, [2] Kirti, [3] Neelam [1]M.Tech Student, Department of CSE, GITM, Gurgaon Haryana (India) [email protected] [2]Asst. Professor,
Grid Scheduling Dictionary of Terms and Keywords
Grid Scheduling Dictionary Working Group M. Roehrig, Sandia National Laboratories W. Ziegler, Fraunhofer-Institute for Algorithms and Scientific Computing Document: Category: Informational June 2002 Status
Global Load Balancing and Primary Backup Approach for Fault Tolerant Scheduling in Computational Grid
Global Load Balancing and Primary Backup Approach for Fault Tolerant Scheduling in Computational Grid S. Gokuldev & Shahana Moideen Department of Computer Science and Engineering SNS College of Engineering,
A Survey on Load Balancing and Scheduling in Cloud Computing
IJIRST International Journal for Innovative Research in Science & Technology Volume 1 Issue 7 December 2014 ISSN (online): 2349-6010 A Survey on Load Balancing and Scheduling in Cloud Computing Niraj Patel
How To Partition Cloud For Public Cloud
An Enhanced Load balancing model on cloud partitioning for public cloud Agidi.Vishnu vardhan*1, B.Aruna Kumari*2, G.Kiran Kumar*3 M.Tech Scholar, Dept of CSE, MLR Institute of Technology, Dundigal, Dt:
IMPROVEMENT OF RESPONSE TIME OF LOAD BALANCING ALGORITHM IN CLOUD ENVIROMENT
IMPROVEMENT OF RESPONSE TIME OF LOAD BALANCING ALGORITHM IN CLOUD ENVIROMENT Muhammad Muhammad Bala 1, Miss Preety Kaushik 2, Mr Vivec Demri 3 1, 2, 3 Department of Engineering and Computer Science, Sharda
A REVIEW PAPER ON LOAD BALANCING AMONG VIRTUAL SERVERS IN CLOUD COMPUTING USING CAT SWARM OPTIMIZATION
A REVIEW PAPER ON LOAD BALANCING AMONG VIRTUAL SERVERS IN CLOUD COMPUTING USING CAT SWARM OPTIMIZATION Upasana Mittal 1, Yogesh Kumar 2 1 C.S.E Student,Department of Computer Science, SUSCET, Mohali, (India)
Sla Aware Load Balancing Algorithm Using Join-Idle Queue for Virtual Machines in Cloud Computing
Sla Aware Load Balancing Using Join-Idle Queue for Virtual Machines in Cloud Computing Mehak Choudhary M.Tech Student [CSE], Dept. of CSE, SKIET, Kurukshetra University, Haryana, India ABSTRACT: Cloud
Email: [email protected]. 2 Prof, Dept of CSE, Institute of Aeronautical Engineering, Hyderabad, Andhrapradesh, India,
www.semargroup.org, www.ijsetr.com ISSN 2319-8885 Vol.03,Issue.06, May-2014, Pages:0963-0968 Improving Efficiency of Public Cloud Using Load Balancing Model SHRAVAN KUMAR 1, DR. N. CHANDRA SEKHAR REDDY
Resource Cost Optimization for Dynamic Load Balancing on Web Server System
Article can be accessed online at http://www.publishingindia.com Resource Cost Optimization for Dynamic Load Balancing on Web Server System Harikesh Singh*, Shishir Kumar** Abstract The growth of technology
Abstract. 1. Introduction
A REVIEW-LOAD BALANCING OF WEB SERVER SYSTEM USING SERVICE QUEUE LENGTH Brajendra Kumar, M.Tech (Scholor) LNCT,Bhopal 1; Dr. Vineet Richhariya, HOD(CSE)LNCT Bhopal 2 Abstract In this paper, we describe
Presentation of Multi Level Data Replication Distributed Decision Making Strategy for High Priority Tasks in Real Time Data Grids
Presentation of Multi Level Data Replication Distributed Decision Making Strategy for High Priority Tasks in Real Time Data Grids Naghmeh Esmaieli [email protected] Mahdi Jafari [email protected]
SERVICE BROKER ROUTING POLICES IN CLOUD ENVIRONMENT: A SURVEY
SERVICE BROKER ROUTING POLICES IN CLOUD ENVIRONMENT: A SURVEY Rekha P M 1 and M Dakshayini 2 1 Department of Information Science & Engineering, VTU, JSS academy of technical Education, Bangalore, Karnataka
Scheduling Allowance Adaptability in Load Balancing technique for Distributed Systems
Scheduling Allowance Adaptability in Load Balancing technique for Distributed Systems G.Rajina #1, P.Nagaraju #2 #1 M.Tech, Computer Science Engineering, TallaPadmavathi Engineering College, Warangal,
Load Balancing and Maintaining the Qos on Cloud Partitioning For the Public Cloud
Load Balancing and Maintaining the Qos on Cloud Partitioning For the Public Cloud 1 S.Karthika, 2 T.Lavanya, 3 G.Gokila, 4 A.Arunraja 5 S.Sarumathi, 6 S.Saravanakumar, 7 A.Gokilavani 1,2,3,4 Student, Department
Load Balancing Scheduling with Shortest Load First
, pp. 171-178 http://dx.doi.org/10.14257/ijgdc.2015.8.4.17 Load Balancing Scheduling with Shortest Load First Ranjan Kumar Mondal 1, Enakshmi Nandi 2 and Debabrata Sarddar 3 1 Department of Computer Science
A Load Balancing Model Based on Cloud Partitioning for the Public Cloud
International Journal of Information & Computation Technology. ISSN 0974-2239 Volume 4, Number 16 (2014), pp. 1605-1610 International Research Publications House http://www. irphouse.com A Load Balancing
Survey of Load Balancing Techniques in Cloud Computing
Survey of Load Balancing Techniques in Cloud Computing Nandkishore Patel 1, Ms. Jasmine Jha 2 1, 2 Department of Computer Engineering, 1, 2 L. J. Institute of Engineering and Technology, Ahmedabad, Gujarat,
PERFORMANCE ANALYSIS OF PaaS CLOUD COMPUTING SYSTEM
PERFORMANCE ANALYSIS OF PaaS CLOUD COMPUTING SYSTEM Akmal Basha 1 Krishna Sagar 2 1 PG Student,Department of Computer Science and Engineering, Madanapalle Institute of Technology & Science, India. 2 Associate
Performance Analysis of VM Scheduling Algorithm of CloudSim in Cloud Computing
IJECT Vo l. 6, Is s u e 1, Sp l-1 Ja n - Ma r c h 2015 ISSN : 2230-7109 (Online) ISSN : 2230-9543 (Print) Performance Analysis Scheduling Algorithm CloudSim in Cloud Computing 1 Md. Ashifuddin Mondal,
Load Balancing in Distributed Data Base and Distributed Computing System
Load Balancing in Distributed Data Base and Distributed Computing System Lovely Arya Research Scholar Dravidian University KUPPAM, ANDHRA PRADESH Abstract With a distributed system, data can be located
CHAPTER 7 SUMMARY AND CONCLUSION
179 CHAPTER 7 SUMMARY AND CONCLUSION This chapter summarizes our research achievements and conclude this thesis with discussions and interesting avenues for future exploration. The thesis describes a novel
Advanced Load Balancing Mechanism on Mixed Batch and Transactional Workloads
Advanced Load Balancing Mechanism on Mixed Batch and Transactional Workloads G. Suganthi (Member, IEEE), K. N. Vimal Shankar, Department of Computer Science and Engineering, V.S.B. Engineering College,
Design and Implementation of Efficient Load Balancing Algorithm in Grid Environment
Design and Implementation of Efficient Load Balancing Algorithm in Grid Environment Sandip S.Patil, Preeti Singh Department of Computer science & Engineering S.S.B.T s College of Engineering & Technology,
A Novel Approach of Load Balancing Strategy in Cloud Computing
A Novel Approach of Load Balancing Strategy in Cloud Computing Antony Thomas 1, Krishnalal G 2 PG Scholar, Dept of Computer Science, Amal Jyothi College of Engineering, Kanjirappally, Kerala, India 1 Assistant
CloudAnalyzer: A cloud based deployment framework for Service broker and VM load balancing policies
CloudAnalyzer: A cloud based deployment framework for Service broker and VM load balancing policies Komal Mahajan 1, Deepak Dahiya 1 1 Dept. of CSE & ICT, Jaypee University Of Information Technology, Waknaghat,
Web Service Based Data Management for Grid Applications
Web Service Based Data Management for Grid Applications T. Boehm Zuse-Institute Berlin (ZIB), Berlin, Germany Abstract Web Services play an important role in providing an interface between end user applications
Efficient Load Balancing Algorithm in Grid Environment
Efficient Load Balancing Algorithm in Grid Environment Thesis submitted in partial fulfillment of the requirements for the award of degree of Master of Engineering in Software Engineering By: Ratnesh Kumar
CHAPTER 5 WLDMA: A NEW LOAD BALANCING STRATEGY FOR WAN ENVIRONMENT
81 CHAPTER 5 WLDMA: A NEW LOAD BALANCING STRATEGY FOR WAN ENVIRONMENT 5.1 INTRODUCTION Distributed Web servers on the Internet require high scalability and availability to provide efficient services to
Implementing Parameterized Dynamic Load Balancing Algorithm Using CPU and Memory
Implementing Parameterized Dynamic Balancing Algorithm Using CPU and Memory Pradip Wawge 1, Pritish Tijare 2 Master of Engineering, Information Technology, Sipna college of Engineering, Amravati, Maharashtra,
Energy Conscious Virtual Machine Migration by Job Shop Scheduling Algorithm
Energy Conscious Virtual Machine Migration by Job Shop Scheduling Algorithm Shanthipriya.M 1, S.T.Munusamy 2 ProfSrinivasan. R 3 M.Tech (IT) Student, Department of IT, PSV College of Engg & Tech, Krishnagiri,
Distributed and Dynamic Load Balancing in Cloud Data Center
Available Online at www.ijcsmc.com International Journal of Computer Science and Mobile Computing A Monthly Journal of Computer Science and Information Technology IJCSMC, Vol. 4, Issue. 5, May 2015, pg.233
CloudSim: A Toolkit for Modeling and Simulation of Cloud Computing Environments and Evaluation of Resource Provisioning Algorithms
CloudSim: A Toolkit for Modeling and Simulation of Cloud Computing Environments and Evaluation of Resource Provisioning Algorithms Rodrigo N. Calheiros, Rajiv Ranjan, Anton Beloglazov, César A. F. De Rose,
Energy Constrained Resource Scheduling for Cloud Environment
Energy Constrained Resource Scheduling for Cloud Environment 1 R.Selvi, 2 S.Russia, 3 V.K.Anitha 1 2 nd Year M.E.(Software Engineering), 2 Assistant Professor Department of IT KSR Institute for Engineering
Hierarchical Status Information Exchange Scheduling and Load Balancing For Computational Grid Environments
IJCSNS International Journal of Computer Science and Network Security, VOL.0 No.2, February 200 77 Hierarchical Status Information Exchange Scheduling and Load Balancing For Computational Grid Environments
International Journal of Advance Research in Computer Science and Management Studies
Volume 3, Issue 6, June 2015 ISSN: 2321 7782 (Online) International Journal of Advance Research in Computer Science and Management Studies Research Article / Survey Paper / Case Study Available online
Comparison of PBRR Scheduling Algorithm with Round Robin and Heuristic Priority Scheduling Algorithm in Virtual Cloud Environment
www.ijcsi.org 99 Comparison of PBRR Scheduling Algorithm with Round Robin and Heuristic Priority Scheduling Algorithm in Cloud Environment Er. Navreet Singh 1 1 Asst. Professor, Computer Science Department
Cloud Computing Simulation Using CloudSim
Cloud Computing Simulation Using CloudSim Ranjan Kumar #1, G.Sahoo *2 # Assistant Professor, Computer Science & Engineering, Ranchi University, India Professor & Head, Information Technology, Birla Institute
Load Balancing of Web Server System Using Service Queue Length
Load Balancing of Web Server System Using Service Queue Length Brajendra Kumar 1, Dr. Vineet Richhariya 2 1 M.tech Scholar (CSE) LNCT, Bhopal 2 HOD (CSE), LNCT, Bhopal Abstract- In this paper, we describe
LOAD BALANCING IN CLOUD COMPUTING USING PARTITIONING METHOD
LOAD BALANCING IN CLOUD COMPUTING USING PARTITIONING METHOD Mitesh Patel 1, Kajal Isamaliya 2, Hardik kadia 3, Vidhi Patel 4 CE Department, MEC, Surat, Gujarat, India 1 Asst.Professor, CSE Department,
Effective Virtual Machine Scheduling in Cloud Computing
Effective Virtual Machine Scheduling in Cloud Computing Subhash. B. Malewar 1 and Prof-Deepak Kapgate 2 1,2 Department of C.S.E., GHRAET, Nagpur University, Nagpur, India [email protected] and [email protected]
ISSN:2320-0790. Keywords: HDFS, Replication, Map-Reduce I Introduction:
ISSN:2320-0790 Dynamic Data Replication for HPC Analytics Applications in Hadoop Ragupathi T 1, Sujaudeen N 2 1 PG Scholar, Department of CSE, SSN College of Engineering, Chennai, India 2 Assistant Professor,
Performance Analysis of Load Balancing Algorithms in Distributed System
Advance in Electronic and Electric Engineering. ISSN 2231-1297, Volume 4, Number 1 (2014), pp. 59-66 Research India Publications http://www.ripublication.com/aeee.htm Performance Analysis of Load Balancing
Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration
Efficient Scheduling Of On-line Services in Cloud Computing Based on Task Migration 1 Harish H G, 2 Dr. R Girisha 1 PG Student, 2 Professor, Department of CSE, PESCE Mandya (An Autonomous Institution under
How To Allocate Resources In A Multi Resource Allocation Model
Proposed Joint Multiple Resource Allocation Method for Cloud Computing Services with Heterogeneous QoS Yuuki Awano Dept. of Computer and Information Science Seikei University Musashino, Tokyo, Japan [email protected]
A RANDOMIZED LOAD BALANCING ALGORITHM IN GRID USING MAX MIN PSO ALGORITHM
International Journal of Research in Computer Science eissn 2249-8265 Volume 2 Issue 3 (212) pp. 17-23 White Globe Publications A RANDOMIZED LOAD BALANCING ALGORITHM IN GRID USING MAX MIN ALGORITHM C.Kalpana
A Survey on Load Balancing Algorithms in Cloud Environment
A Survey on Load s in Cloud Environment M.Aruna Assistant Professor (Sr.G)/CSE Erode Sengunthar Engineering College, Thudupathi, Erode, India D.Bhanu, Ph.D Associate Professor Sri Krishna College of Engineering
A Survey on Load Balancing Techniques Using ACO Algorithm
A Survey on Load Balancing Techniques Using ACO Algorithm Preeti Kushwah Department of Computer Science & Engineering, Acropolis Institute of Technology and Research Indore bypass road Mangliya square
The International Journal Of Science & Technoledge (ISSN 2321 919X) www.theijst.com
THE INTERNATIONAL JOURNAL OF SCIENCE & TECHNOLEDGE Efficient Parallel Processing on Public Cloud Servers using Load Balancing Manjunath K. C. M.Tech IV Sem, Department of CSE, SEA College of Engineering
Heterogeneous Workload Consolidation for Efficient Management of Data Centers in Cloud Computing
Heterogeneous Workload Consolidation for Efficient Management of Data Centers in Cloud Computing Deep Mann ME (Software Engineering) Computer Science and Engineering Department Thapar University Patiala-147004
Research Statement for Henri Casanova
Research Statement for Henri Casanova Advances in networking technology have made it possible to deploy distributed scientific applications on platforms that aggregate large numbers of diverse and distant
Performance Prediction, Sizing and Capacity Planning for Distributed E-Commerce Applications
Performance Prediction, Sizing and Capacity Planning for Distributed E-Commerce Applications by Samuel D. Kounev ([email protected]) Information Technology Transfer Office Abstract Modern e-commerce
Analysis of Service Broker Policies in Cloud Analyst Framework
Journal of The International Association of Advanced Technology and Science Analysis of Service Broker Policies in Cloud Analyst Framework Ashish Sankla G.B Pant Govt. Engineering College, Computer Science
Migration of Virtual Machines for Better Performance in Cloud Computing Environment
Migration of Virtual Machines for Better Performance in Cloud Computing Environment J.Sreekanth 1, B.Santhosh Kumar 2 PG Scholar, Dept. of CSE, G Pulla Reddy Engineering College, Kurnool, Andhra Pradesh,
Proposal of Dynamic Load Balancing Algorithm in Grid System
www.ijcsi.org 186 Proposal of Dynamic Load Balancing Algorithm in Grid System Sherihan Abu Elenin Faculty of Computers and Information Mansoura University, Egypt Abstract This paper proposed dynamic load
Load Balancing in Fault Tolerant Video Server
Load Balancing in Fault Tolerant Video Server # D. N. Sujatha*, Girish K*, Rashmi B*, Venugopal K. R*, L. M. Patnaik** *Department of Computer Science and Engineering University Visvesvaraya College of
Load Balancing in cloud computing
Load Balancing in cloud computing 1 Foram F Kherani, 2 Prof.Jignesh Vania Department of computer engineering, Lok Jagruti Kendra Institute of Technology, India 1 [email protected], 2 [email protected]
