Performance Analysis of Session-Level Load Balancing Algorithms

Size: px
Start display at page:

Download "Performance Analysis of Session-Level Load Balancing Algorithms"

Transcription

1 Performance Analysis of Session-Level Load Balancing Algorithms Dennis Roubos, Sandjai Bhulai, and Rob van der Mei Vrije Universiteit Amsterdam Faculty of Sciences De Boelelaan 1081a 1081 HV Amsterdam The Netherlands {droubos, sbhulai, Abstract Load balancing (LB) is crucial for the efficient operation of big server clusters. In the past, many different LB strategies on the request level have been developed with great effectiveness in parallel applications. However, the LB problem is not yet solved completely; new applications and architectures require new features. In particular, secure environments require that LB is done at session level instead of request level; that is, once a session has been assigned to a server, all subsequent service requests are directed to the assigned server. Despite the fact that many commercial products have been brought to the market to implement LB at the session level, little insight has been obtained into the efficiency of such session-level LB algorithms, leaving ample room for performance improvement and optimization. Motivated by this, we study session-level LB with a focus on algorithms that are simple and easy to implement in real systems. The performance of the load balancer is highly dependent on the request profiles of the different sessions and the information that is available for decision making. We make this trade-off between the information that is available to the load balancer and the efficiency of the algorithm explicit by developing new algorithms, and compare their efficiency with existing algorithms. The algorithms are mainly based on the load of each server and the number of active sessions running on them. Extensive validation in an experimental setting shows that our algorithms outperform the existing ones, and as such, provide a simple, easy-toimplement yet effective means to improve the efficiency of large server clusters. Keywords: Load balancing, performance evaluation, session-level load balancing. 1 Introduction Many content-intensive applications have scaled beyond the point where a single server can provide adequate processing power. This raises the need for flexibility to deploy additional servers quickly and transparently to end-users. Load balancing (LB) is the process of distributing service requests across a group of servers. It has emerged as a powerful solution that addresses several requirements that are becoming increasingly important in computer networks, such as increased scalability, high performance, and high availability and disaster recovery. 1

2 Load balancing makes multiple servers appear as a single server by transparently distributing user requests among the servers, and thus creates scalability. The high performance is achieved by directing service requests to the servers that are least busy and therefore capable of providing the fastest response times. The improvement in application availability occurs when LB automatically redistributes end-user service requests to other servers within a server farm when a server fails. Moreover, it improves security by protecting the server farm against multiple forms of DoS (Denial of Service) attacks. The literature on the performance and effectiveness of LB algorithms is widespread. We refer to [11] for an excellent overview of the available LB techniques applied in different application areas. However, the vast majority of the performance-related papers on LB that have appeared are focused on request-level LB (also often referred to as server LB), i.e., where each individual request of a client may be directed to a different server, or service (cf. [8] for an overview of request-level LB algorithms). A main disadvantage of request-level LB algorithms is that they are highly vulnerable to unsecured transactions. In secure environments where confidentiality of data and integrity of the network is of high importance, it is crucial that LB is done at the session level instead of request level. Unauthorized data queries should be kept separate from accessing the data of clients directly. Therefore, a farm of terminal servers can serve as an intermediate layer to the outside world so that clients should request a session for all activities for outgoing data traffic. In these cases, the LB algorithm is carried out only when a user requests a new session. Once the session has been assigned to a server, all subsequent service requests generated in this session are directed to this server. Note that it is not desirable to switch this session to a different terminal server due to large overhead and switching times. This creates additional complexity for LB algorithms, since, e.g., the future requests during an active session are not known. Motivated by this, a wide variety of commercial session-level LB products have been brought to the market (see, e.g., [4, 3, 5]). Rather surprisingly, however, despite the large number of available products, relatively little is known about the efficiency of these session-level LB algorithms. These observations have raised the need for studying and optimizing the effectiveness of session-level LB algorithms. In this paper, we study load balancing of sessions on a farm of terminal servers. Whenever a new session is requested by a client, the load balancer needs to assign it to one of the available terminal servers. The sessions remain active for as long as the clients do not terminate their sessions. Hence, all activities (e.g., browsing the web, opening files) by a client induce load on the terminal server on which the session is assigned to. We focus on load-balancing algorithms that are easy to implement in real systems. Since the load balancer has little information on future requests to arrive, the algorithms are mainly based on the load of each terminal server and the number of active sessions running on them. We make this trade-off between the information that is available to the load balancer and the efficiency of the algorithm explicit by developing new algorithms, and compare their efficiency with existing algorithms. We show that our algorithm outperforms the existing ones through extensive validation in an experimental setting. Therefore, we provide a simple, easy-to-implement yet effective means to improve the efficiency of large server clusters. 2

3 T T 1 CL 1. CL i. CL I LB T S 1. T S j. T S J Figure 1: Configuration of the system under study. The paper is organized as follows. In Section 2 we present our model for the behaviour of the clients and the terminal servers. The LB algorithms used by the load balancer are treated in Section 3. These algorithms are validated in Section 4 in an experimental environment. Next, we use the model to evaluate other LB algorithms for several client and session profiles in Section 5. Finally, we conclude the paper in Section 6. 2 Model The configuration of the system under study consists of a set of clients {CL i i = 1,..., I}, a load balancer (LB), and a set of terminal servers {T S j j = 1,..., J} as depicted in Figure 1. Each client CL i can be in a state s {0, 1}, representing whether the client has an active session or not. The time a client stays in state s is modeled by the random variable T s which has a general distribution. This process models clients in the system that start a session after a period of T 0 time units have elapsed, and terminate sessions after an active period of T 1 time units. This process resembles the on-off process, which is a well-known model for capturing the long-range dependence in traffic models. As soon as a client requests a new session, the load balancer decides which terminal server to assign the session to. The clients send requests during an active session, which are directed to the terminal server on which the session is active. The requests that are generated during a session are jobs that generate workload for the servers. We distinguish K different types of requests that are generated by the clients. The time between two successive requests has a general distribution. The job size is represented by the random variable X k, which has a general distribution. The processor time that it takes to complete a job of type k is a function f k of X k. The terminal servers serve each job according to a discipline where each of the active jobs receive a fraction of the processor capacity. To calculate the fraction of processor capacity that each job receives at a particular moment, consider a terminal server with N processors and n jobs running on its system simultaneously at that time. Then we determine the fraction of processor capacity according to the following steps: 3

4 type k CL 1 type k + 1 time t T 1 T 0 T 1 CL 2 time t Figure 2: Example of two clients. The big dashed boxes are sessions with session length T 1 and an inter-session time of T 0. The little solid and dashed boxes are jobs that require f k (X k ) processor time. Step 0 Let assign := 100 N, n_assigned := 0; Step 1 Each job j receives r := assign/(n n_assigned)% of the capacity; Step 2a For each job j that needs a fraction of b% < r%, and which does not have a fraction assigned yet, assign the fraction b and let n_assigned := n_assigned + 1 and assign := assign b; Step 2b If n_assigned = n, done; Step 2c Else, if at least one assignment has been made in step 2a, goto step 1, else goto step 3; Step 3 Assign to all remaining jobs a fraction assign/(n n_assigned)% of the processor capacity. Note that the fraction b in Step 2a above depends on the job type. Therefore, the previous algorithm can lead to two possible outcomes. Either all jobs receive a fraction of the processor capacity that sum up to 100 N, or the jobs do not consume all processor capacity, and thus, the processor remains idle for some fraction of time. For illustration, Figure 2 shows an example with two clients CL 1 and CL 2. Both clients have several sessions over time with several jobs running within each session. Notice that f k (X k ) is the amount of processor time it takes to complete a job of size X k. However, this is not the time that a client necessarily perceives due to processor sharing, since the presence of other jobs in the system can slow down the processing rate for a job of type k. In reality, the processor handles only one task at the time. However, switching between tasks is very fast and, therefore, we can model the handling of all tasks simultaneously at time scales in the order of seconds with each task having a longer service duration. Hence, the use of the processor sharing discipline is well-justified, i.e., clients perceive the processing times to be different than the actual processor time that the task needs. The load balancer uses information about the load of each terminal server to assign a session to one of the terminal servers. We define the load as the number of active jobs, i.e., jobs that are waiting for processor capacity as well as jobs that use processor capacity. 4

5 The load is calculated every 5 seconds by the system. We denote the r-th update of the load by load(r), which is calculated as follows [10]: load(r) = load(r 1) e 5 60m + n(r) (1 e 5 60m ), with m equal to 1, 5, or 15 for the calculation of the m-minute load average (denoted by m-la), and n(r) the number of active jobs at the r-th update moment. Note that the model has the flexibility to handle multiple client classes as well by changing the probability distribution of T 0 and T 1, and thus effectively creating clients with different session profiles. Similarly, the request profiles can be changed by making the request parameters client dependent. Our objective is to minimize a performance measure that takes into account the differences in load between any of the available terminal servers. Minimizing this difference means better load balancing, while better load balancing implies a better overall response time, as is generally known. Therefore, we consider the average of the absolute differences in the 1-LA between any of the terminal servers as our performance measure throughout the paper. 3 Algorithms In this section, we present load balancing algorithms that are evaluated in our experiments. The first part of this section is devoted to seven main LB algorithms, while the last part considers four methods to do periodic updates of the, so-called weights, that are used by some of the main LB algorithms. In the sequel, we will use T S j for the j-th terminal server, c j for the number of active sessions on terminal server T S j, w j for the weight of terminal server T S j, and l j for the load of terminal server T S j at the moment a session needs to be assigned to a terminal server. 3.1 Main LB algorithms RR Round Robin is a simple, well-known algorithm that does not use the state of the system and is often used when no state information is available. It assigns a new session to server T S (j+1) mod J if the previous session was assigned to server T S j. WRR Weighted Round Robin is a variant on RR that uses weights to create a scheme for assigning sessions to terminal servers. We distinguish between two schemes in assigning new sessions. The first scheme is described below and is implemented in LVS (Linux Virtual Server) [2]: LVS Scheme Step 0 Set v j = w j, and determine the GCD (greatest common divisor) of the weights v j ; Step 1 Divide all v j by the GCD; Step 2 Add the server with index equal to arg max j v j to the scheme and lower v j with 1. Repeat step 2 until all v j = 0. 5

6 The second scheme is the Golden Ratio method [9], which can be described as follows: Golden Ratio Scheme Step 0 Let M = j w j and φ 1 = 1 2 ( 5 1); Step 1 Order the M numbers 1 φ 1 mod 1, 2 φ 1 mod 1,..., M φ 1 mod 1 from smallest to largest; Step 2 Let the k-th smallest number correspond with the k-th position in the scheme; Step 3 Assign 1 φ 1 mod 1, 2 φ 1 mod 1,..., w j φ 1 mod 1 to the first terminal server, (w 1 + 1) φ 1 mod 1,..., (w 1 + w 2 ) φ 1 mod 1 to the second terminal server, and so on. Both the LVS and the Golden Ratio scheme yield as output a periodic sequence, say (α 1, α 2,..., α P ), based on the weights as input. This sequence prescribes that the i-th session is assigned to terminal server T S f(i) with f(i) = α i mod P. LC Least Connection is a well-known, greedy algorithm in the sense that it assigns a new session to the terminal server with the least number of connections at that time instance. Thus, it assigns a new session to server T S j for which c j = min{c 1, c 2,..., c J }. WLC Weighted Least Connection is similar to LC, but uses weights for the assignment of new sessions. It assigns a new session to server T S j for which c j w j = min { c 1 w 1, c 2 w 2,..., c J w J }. LBA Load Based Assignment is similar to LC, since it assigns to the terminal server with the least load instead of the server with the least number of connections. Thus, it assigns a new session to terminal server T S j for which l j = min{l 1, l 2,..., l J }. WRST Weighted Remaining Session Time balancing tries to infer the future load by looking at the total expected remaining session time and compares this to the actual load. The algorithm does not only take the current load into account, but also an inference of the load in future. Therefore, it could be better to assign a new client to a heavier-loaded terminal server in case this terminal server handles active sessions that will be closed in short times. To our knowledge, an algorithm like WRST has not been mentioned in the literature yet. The precise description of the algorithm is as follows. Let E(RST j ) be the total expected remaining session time of sessions on terminal server T S j. This number can be determined as follows: E(RST j ) = s S j E(RST s current session duration of s = t start time of s), 6

7 with S j the set of all sessions active on T S j and t the time an assignment has to be made. The conditional expectation can be calculated explicitly, given the (empirical) probability distribution of the session length, by computing the residual lifetime. It assigns a new session to terminal server T S j for which l j E(RST j ) = min{l 1 E(RST 1 ),..., l J E(RST J )}. PR Probability Assignment is similar to RR, however, it uses random assignments instead of deterministic assignments. Moreover, the assignment probabilities are determined by weights that can be updated dynamically. Thus, a new session is assigned to terminal server T S j with probability p j, where p j is given by p j = w j J k=1 w. k 3.2 Update algorithms In this subsection we explain how the weights of some of the main LB algorithms can be updated. We present four update algorithms, LP1, LP2, LOB, and AL. The first algorithm updates the weights proportional to the load on the terminal servers. However, under the LVS scheme, this could create unbalanced assignments, which could potentially lead to a decrease in the LB performance. LP2 alleviates this problem by normalizing the smallest weight to one. The LOB algorithm adopts the approach where the least loaded terminal server receives the highest weight. Finally, the AL algorithm [1] takes not only the load into account, but additionally uses information on the number of sessions assigned to a terminal server as well. In the sequel, we assume deterministic update moments with fixed update intervals. Moreover, by w j (τ) and c j (τ) we denote the τ-th update of the weight of terminal server T S j and the number of sessions on terminal server T S j at the moment of the τ-th update, respectively. Note that the update intervals for the weights can be potentially different from the update intervals for the load. LP1 Load Proportional 1 updates the weights according to w j (τ) = P J k=1 l k l j if l j 0, max { 1, N k=0 l k} if lj = 0. LP2 Load Proportional 2 is the same as LP1 with the exception that LP2 divides each w j by the minimum over all weights. Hence, there is at least one weight equal to 1 while the proportions are maintained. LOB Load Order Based assigns the weights 1, 2,..., J to the descended ordered list of the terminal servers based on the load. 7

8 AL Aggregated Load considers an aggregated load number AL j and the update of the weights is given by w j (τ) = w j (τ 1) AL AL j, with AL = max { 1, 1 J J } AL k, if 0 w j (τ) 100 and w j (τ) w j (τ 1) 2.5, else w j (τ) = w j (τ 1). The number AL j represents information about the load of terminal server T S j and the number of new sessions assigned to server T S j during the last update interval. Let AL j be defined by AL j = 0.7 l j INPUT j, where INPUT j is given by: INPUT j = { n j 1/J P J k=1 n k if J k=1 n k 0, 0 if J k=1 n k = 0, with n j = ( c j (τ) c j (τ 1) )+. For every update algorithm, we round off all the weights to the nearest integer number so that it is useful for determining a scheme. Furthermore, the combination of the main LB algorithm with an update algorithm is denoted by their names with a dash in between, e.g., WRR-LP1 means that the main LB algorithm WRR is used and the weights are updated according to the LP1 method. 4 Model validation The outcomes of the mathematical model are compared to the experimental results. In an experimental environment with two terminal servers, we configured an LVS load balancer to assign clients to one of the two available terminal servers. The clients were simulated by a couple of PCs. We ensured that the processors of the terminal servers were the bottleneck. We were able to control a variety of parameters, such as the probability distributions for the length of a session and for the time in between. Within an active session, the clients retrieved HTML pages from a predefined set of possible websites. The time in between such requests was specified through a probability distribution. We performed extensive experiments and compared the outcomes of the LB algorithms with a simulation of the model of Section 2. In these experiments, our performance measure that we focused on was the average of the absolute differences of the 1-LA between both terminal servers. For a couple of representative experiments, these results can be found in the first two columns of Table 1. The value between brackets is the standard deviation of the same performance measure. The last column depicts the relative difference with respect to the experimental environment. In the considered cases, it turned out that the performance was within the confidence interval obtained via simulation. Furthermore, the same relative performance was obtained using the mathematical model and the experimental environment. We conclude that our model describes the performance of a real system very well. Consequently, we can use the model for further experiments for evaluating different LB strategies (see Section 5). 8 k=1

9 Algorithm Simulation Experimental env. Difference (in %) RR (1.5540) (1.3842) 2.8% (12.3%) WLC-LP (0.6865) (0.4158) 10.3% (65.1%) WRR-AL (2.1346) (2.6669) 6.2% (20.0%) Table 1: Performance obtained via simulation and the observed values in an experimental environment. 5 Numerical results In this section we consider different scenarios and focus on the performance measure, i.e, the average of the absolute differences in the 1-LA between the terminal servers. Hence, all experiments use the 1-LA as load information, unless mentioned otherwise. We show that there is a significant difference between the studied LB algorithms. Furthermore, we show the impact of the size of the update interval on the performance measure and we analyze both the LVS and the Golden Ratio scheme. Suppose the session length T 1 has a lognormal(7.7697, ) distribution and that T 0 has an exponential distribution with parameter The time unit is in the order of seconds, so, on average, each client starts a new session approximately 90 minutes after the last session was closed by that client. We distinguish between two request types, namely HTML and PDF requests. An HTML request has a file size X 1 in bytes that is distributed according to a lognormal( , ) distribution. A PDF request, which is on average larger than an HTML file, has a file size X 2 with a lognormal( , ) distribution. The time in between two HTML (PDF) requests is exponentially distributed with parameter ( ). The functions S k for k = 1, 2 are given by S k (x k ) = x k. Note that the lognormal distribution typically occurs in practice [6, 7]. Moreover, the parameters of the distribution in this setting have been obtained from analyzing data from an operational environment. The average usage of the processor is 80% for HTML jobs and 50% for PDF jobs. We simulate 100 clients, use 2 terminal servers with each having 2 processors. A simulation run consists of 5 independent runs, each having a length of 100,000 seconds and a warm-up period of 10,000 seconds. In the experiments, we update the weights every 150 seconds, unless stated otherwise. The initial weights are equal to 1 for the LP1, LP2, and LOB method, and is equal to 10 for the AL method. For the PR method, we choose all weights equal with no updates, so that PR assigns the sessions uniformly over the terminal servers. Finally, we mention that the WRR algorithm uses the LVS scheme unless stated otherwise. Table 2 shows the average absolute difference between the 1-LA numbers. Three algorithms are performing significantly better than the other two methods. The results could be expected, since the PR (in this case) and the RR method are stateless LB algorithms, i.e., the LB scheme is independent of the actual state of the system. In Table 3, we investigated the influence of the update interval. Most of the time it is best to update the weights frequently. However, there is no general rule that can be 9

10 Algorithm Performance measure LC 2.35 WRST 2.38 LBA 2.50 PR 3.91 RR 4.09 Table 2: Performance of five main LB algorithms. applied to determine the optimal update frequency. There is a significant improvement in performance when using the update algorithms together with WRR and PR while the performance of LC cannot be increased by huge steps. Table 3 shows that a small update interval is quite good, but using a too small interval performs worse. In particular, a small update interval works well in combination with AL. Update interval (seconds) Algorithm WRR-LP WRR-LP WRR-AL WLC-LP WLC-LP WLC-LOB WLC-AL PR-LP PR-LP PR-LOB PR-AL Table 3: Performance for different update intervals. By increasing the number of terminal servers and keeping the number of clients constant, we see that the choice of the algorithm becomes less important, i.e., the performance of all algorithms becomes almost the same. The algorithms that use load information, can base their calculations on three load numbers. Using the most updated load information, namely the 1-LA, gives the best performance relative to the 5-LA and the 15-LA. There is a simple explanation for this phenomenon. Big changes in the load are represented faster in the 1-LA than it would be in the 5-LA or 15-LA. It is important to see whether the performance of the algorithms is specific to the chosen system parameters. Therefore, consider the same system, but with 200/250 clients and 4 terminal servers. Table 4 before the double lines gives the results. We see that if the performance was already good, then the performance remains good in the two new 10

11 100 clients; 2 TS 200 clients; 4 TS 250 clients; 4 TS Algorithm Diff. Ind. Rank Diff. Ind. Rank Diff. Ind. Rank Diff. Ind. RR LC PR LBA WRST WRR-LP WRR-LP WRR-AL WLC-LP WLC-LP WLC-LOB WLC-AL PR-LP PR-LP PR-LOB PR-AL Table 4: Performance for different situations. situations. Now, consider a totally different situation in which we make the following changes to the original situation: only HTML requests remain, the length of a session is uniformly distributed on [300, 1800], and there are 250 clients. From the last two columns in Table 4, we may conclude that an update algorithm can be better avoided, since in most of the situations it is worse than just RR or LC. In the description of the WRR method, we identified two schemes (the LVS and the Golden Ratio Scheme) to assign clients to the terminal servers. To test which one of them is better, we considered the original system, but now with 150 clients and 2 terminal servers. Table 5 shows the average absolute difference between the 1-LA for both schemes as well as for the PR method. We conclude that the LVS method works best in combination with LP1, while the Golden Ratio method works best in combination with all remaining update algorithms (i.e., LP2, LOB, and AL). However, when we compare the performance of PR in combination with LP1 and LP2, we conclude that PR performs better than LVS or Golden Ratio. We modify the situation in which there are 50 users of type 1 and 50 users of type 2. Type 1 clients can only retrieve HTML pages, while type 2 users can only send PDF requests. All other settings remain the same. It is then observed that WRST also performs better than LC. WRST has an average absolute difference equal to 0.77, while LC has a value equal to Conclusion In this research, our objective was to find easily implementable algorithms to balance the load over the available terminal servers, since this yields better response times. We have seen that three algorithms perform very well in general: WRST, LC, and LBA. The 11

12 Algorithm WRR-LVS WRR-Golden Ratio PR LP LP LOB AL Table 5: Performance for three different methods. performance of RR can be improved significantly, e.g., by using a mechanism to update the weights of WRR periodically. However, caution must be paid to using update mechanisms, since the performance does not improve in all situations. Furthermore, there is no general rule that states how to choose the size of the update interval. Moreover, we observed that using that 1-LA provides the best load information. LB algorithms can be divided into two groups, static and dynamic algorithms. The performance of static algorithms is poor, due to the fact that these algorithms do not take state information into account. Load balancing can be done better by using additional information on the terminal servers. Information on the usage of a terminal server, expressed in the load, and information on the session lengths turn out to be useful. This can be seen from the performance of our developed algorithm WRST that does use this information. It outperforms the existing methods; compared to LC, it performs equally well and in most cases even better. Furthermore, we looked at two possible schemes for server assignments to use in combination with WRR. It is better to make a scheme according to the Golden Ratio method. This scheme yields balanced sequences of server assignments for a given ratio of weights. This is in contrast to the LVS method, where it is relatively easy to overload an underloaded server when all new sessions are assigned to the underloaded server. References [1] [2] [3] [4] [5] [6] V.A. Bolotin. Telephone circuit holding time distribution. The Fundamental Role of Teletraffic in the Evolution of Telecommunications Networks, pages , [7] V.A. Bolotin, Y. Levy, and D. Liu. Characterizing data connection and messages by mixtures of lognormal distributions on logarithmic scale. Teletraffic Engineering in a Competitive World, pages ,

13 [8] T. Bourke. Server Load Balancing. O Reilly Media, [9] O.J. Boxma, H. Levy, and J.A. Weststrate. Efficient visit orders for polling systems. Performance Evaluation, 18: , [10] N.J. Gunther. Analyzing Computer Systems Performance using Perl::PDQ. Springer- Verlag, [11] C. Koppaparu. Load Balancing Servers, Firewalls and Caches. John Wiley & Sons,

Dynamic Adaptive Feedback of Load Balancing Strategy

Dynamic Adaptive Feedback of Load Balancing Strategy Journal of Information & Computational Science 8: 10 (2011) 1901 1908 Available at http://www.joics.com Dynamic Adaptive Feedback of Load Balancing Strategy Hongbin Wang a,b, Zhiyi Fang a,, Shuang Cui

More information

An Optimized Load-balancing Scheduling Method Based on the WLC Algorithm for Cloud Data Centers

An Optimized Load-balancing Scheduling Method Based on the WLC Algorithm for Cloud Data Centers Journal of Computational Information Systems 9: 7 (23) 689 6829 Available at http://www.jofcis.com An Optimized Load-balancing Scheduling Method Based on the WLC Algorithm for Cloud Data Centers Lianying

More information

LOAD BALANCING AS A STRATEGY LEARNING TASK

LOAD BALANCING AS A STRATEGY LEARNING TASK LOAD BALANCING AS A STRATEGY LEARNING TASK 1 K.KUNGUMARAJ, 2 T.RAVICHANDRAN 1 Research Scholar, Karpagam University, Coimbatore 21. 2 Principal, Hindusthan Institute of Technology, Coimbatore 32. ABSTRACT

More information

ADAPTIVE LOAD BALANCING FOR CLUSTER USING CONTENT AWARENESS WITH TRAFFIC MONITORING Archana Nigam, Tejprakash Singh, Anuj Tiwari, Ankita Singhal

ADAPTIVE LOAD BALANCING FOR CLUSTER USING CONTENT AWARENESS WITH TRAFFIC MONITORING Archana Nigam, Tejprakash Singh, Anuj Tiwari, Ankita Singhal ADAPTIVE LOAD BALANCING FOR CLUSTER USING CONTENT AWARENESS WITH TRAFFIC MONITORING Archana Nigam, Tejprakash Singh, Anuj Tiwari, Ankita Singhal Abstract With the rapid growth of both information and users

More information

Performance Comparison of Assignment Policies on Cluster-based E-Commerce Servers

Performance Comparison of Assignment Policies on Cluster-based E-Commerce Servers Performance Comparison of Assignment Policies on Cluster-based E-Commerce Servers Victoria Ungureanu Department of MSIS Rutgers University, 180 University Ave. Newark, NJ 07102 USA Benjamin Melamed Department

More information

Load balancing as a strategy learning task

Load balancing as a strategy learning task Scholarly Journal of Scientific Research and Essay (SJSRE) Vol. 1(2), pp. 30-34, April 2012 Available online at http:// www.scholarly-journals.com/sjsre ISSN 2315-6163 2012 Scholarly-Journals Review Load

More information

Efficient DNS based Load Balancing for Bursty Web Application Traffic

Efficient DNS based Load Balancing for Bursty Web Application Traffic ISSN Volume 1, No.1, September October 2012 International Journal of Science the and Internet. Applied However, Information this trend leads Technology to sudden burst of Available Online at http://warse.org/pdfs/ijmcis01112012.pdf

More information

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand

Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Proceedings of the 2009 Industrial Engineering Research Conference Evaluating the Lead Time Demand Distribution for (r, Q) Policies Under Intermittent Demand Yasin Unlu, Manuel D. Rossetti Department of

More information

High Performance Cluster Support for NLB on Window

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) arvindrathi88@gmail.com [2]Asst. Professor,

More information

Performance Modeling and Analysis of a Database Server with Write-Heavy Workload

Performance Modeling and Analysis of a Database Server with Write-Heavy Workload Performance Modeling and Analysis of a Database Server with Write-Heavy Workload Manfred Dellkrantz, Maria Kihl 2, and Anders Robertsson Department of Automatic Control, Lund University 2 Department of

More information

A Case for Dynamic Selection of Replication and Caching Strategies

A Case for Dynamic Selection of Replication and Caching Strategies A Case for Dynamic Selection of Replication and Caching Strategies Swaminathan Sivasubramanian Guillaume Pierre Maarten van Steen Dept. of Mathematics and Computer Science Vrije Universiteit, Amsterdam,

More information

Scheduling. Yücel Saygın. These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum

Scheduling. Yücel Saygın. These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum Scheduling Yücel Saygın These slides are based on your text book and on the slides prepared by Andrew S. Tanenbaum 1 Scheduling Introduction to Scheduling (1) Bursts of CPU usage alternate with periods

More information

A Content-Based Load Balancing Algorithm for Metadata Servers in Cluster File Systems*

A Content-Based Load Balancing Algorithm for Metadata Servers in Cluster File Systems* A Content-Based Load Balancing Algorithm for Metadata Servers in Cluster File Systems* Junho Jang, Saeyoung Han, Sungyong Park, and Jihoon Yang Department of Computer Science and Interdisciplinary Program

More information

A Dynamic Approach for Load Balancing using Clusters

A Dynamic Approach for Load Balancing using Clusters A Dynamic Approach for Load Balancing using Clusters ShwetaRajani 1, RenuBagoria 2 Computer Science 1,2,Global Technical Campus, Jaipur 1,JaganNath University, Jaipur 2 Email: shwetarajani28@yahoo.in 1

More information

Energy Efficient MapReduce

Energy Efficient MapReduce Energy Efficient MapReduce Motivation: Energy consumption is an important aspect of datacenters efficiency, the total power consumption in the united states has doubled from 2000 to 2005, representing

More information

Load Balancing of Web Server System Using Service Queue Length

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

More information

AN EFFICIENT DISTRIBUTED CONTROL LAW FOR LOAD BALANCING IN CONTENT DELIVERY NETWORKS

AN EFFICIENT DISTRIBUTED CONTROL LAW FOR LOAD BALANCING IN CONTENT DELIVERY NETWORKS 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. 3, Issue. 9, September 2014,

More information

LOAD BALANCING IN WEB SERVER

LOAD BALANCING IN WEB SERVER LOAD BALANCING IN WEB SERVER Renu Tyagi 1, Shaily Chaudhary 2, Sweta Payala 3 UG, 1,2,3 Department of Information & Technology, Raj Kumar Goel Institute of Technology for Women, Gautam Buddh Technical

More information

STRATO Load Balancing Product description Version: May 2015

STRATO Load Balancing Product description Version: May 2015 Product description Version: May 2015 Contents 1... 2 2 Possible usage scenarios... 2 2.1 Load distribution and increase of availability... 2 2.2 Load distribution, increase of availability and session

More information

The International Journal Of Science & Technoledge (ISSN 2321 919X) www.theijst.com

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

More information

A Comparison of General Approaches to Multiprocessor Scheduling

A Comparison of General Approaches to Multiprocessor Scheduling A Comparison of General Approaches to Multiprocessor Scheduling Jing-Chiou Liou AT&T Laboratories Middletown, NJ 0778, USA jing@jolt.mt.att.com Michael A. Palis Department of Computer Science Rutgers University

More information

Optimization of Cluster Web Server Scheduling from Site Access Statistics

Optimization of Cluster Web Server Scheduling from Site Access Statistics Optimization of Cluster Web Server Scheduling from Site Access Statistics Nartpong Ampornaramveth, Surasak Sanguanpong Faculty of Computer Engineering, Kasetsart University, Bangkhen Bangkok, Thailand

More information

An Approach to Load Balancing In Cloud Computing

An Approach to Load Balancing In Cloud Computing An Approach to Load Balancing In Cloud Computing Radha Ramani Malladi Visiting Faculty, Martins Academy, Bangalore, India ABSTRACT: Cloud computing is a structured model that defines computing services,

More information

Fault-Tolerant Framework for Load Balancing System

Fault-Tolerant Framework for Load Balancing System Fault-Tolerant Framework for Load Balancing System Y. K. LIU, L.M. CHENG, L.L.CHENG Department of Electronic Engineering City University of Hong Kong Tat Chee Avenue, Kowloon, Hong Kong SAR HONG KONG Abstract:

More information

Monitoring Large Flows in Network

Monitoring Large Flows in Network Monitoring Large Flows in Network Jing Li, Chengchen Hu, Bin Liu Department of Computer Science and Technology, Tsinghua University Beijing, P. R. China, 100084 { l-j02, hucc03 }@mails.tsinghua.edu.cn,

More information

Policy Distribution Methods for Function Parallel Firewalls

Policy Distribution Methods for Function Parallel Firewalls Policy Distribution Methods for Function Parallel Firewalls Michael R. Horvath GreatWall Systems Winston-Salem, NC 27101, USA Errin W. Fulp Department of Computer Science Wake Forest University Winston-Salem,

More information

Load Balancing. Load Balancing 1 / 24

Load Balancing. Load Balancing 1 / 24 Load Balancing Backtracking, branch & bound and alpha-beta pruning: how to assign work to idle processes without much communication? Additionally for alpha-beta pruning: implementing the young-brothers-wait

More information

Concept of Cache in web proxies

Concept of Cache in web proxies Concept of Cache in web proxies Chan Kit Wai and Somasundaram Meiyappan 1. Introduction Caching is an effective performance enhancing technique that has been used in computer systems for decades. However,

More information

Abstract. 1. Introduction

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

More information

Scheduling Allowance Adaptability in Load Balancing technique for Distributed Systems

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,

More information

A Robust Dynamic Load-balancing Scheme for Data Parallel Application on Message Passing Architecture

A Robust Dynamic Load-balancing Scheme for Data Parallel Application on Message Passing Architecture A Robust Dynamic Load-balancing Scheme for Data Parallel Application on Message Passing Architecture Yangsuk Kee Department of Computer Engineering Seoul National University Seoul, 151-742, Korea Soonhoi

More information

Load Balancing in Distributed Web Server Systems With Partial Document Replication

Load Balancing in Distributed Web Server Systems With Partial Document Replication Load Balancing in Distributed Web Server Systems With Partial Document Replication Ling Zhuo, Cho-Li Wang and Francis C. M. Lau Department of Computer Science and Information Systems The University of

More information

SIMULATION OF LOAD BALANCING ALGORITHMS: A Comparative Study

SIMULATION OF LOAD BALANCING ALGORITHMS: A Comparative Study SIMULATION OF LOAD BALANCING ALGORITHMS: A Comparative Study Milan E. Soklic Abstract This article introduces a new load balancing algorithm, called diffusive load balancing, and compares its performance

More information

CDBMS Physical Layer issue: Load Balancing

CDBMS Physical Layer issue: Load Balancing CDBMS Physical Layer issue: Load Balancing Shweta Mongia CSE, School of Engineering G D Goenka University, Sohna Shweta.mongia@gdgoenka.ac.in Shipra Kataria CSE, School of Engineering G D Goenka University,

More information

Keywords Load balancing, Dispatcher, Distributed Cluster Server, Static Load balancing, Dynamic Load balancing.

Keywords Load balancing, Dispatcher, Distributed Cluster Server, Static Load balancing, Dynamic Load balancing. Volume 5, Issue 7, July 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com A Hybrid Algorithm

More information

Overlapping Data Transfer With Application Execution on Clusters

Overlapping Data Transfer With Application Execution on Clusters Overlapping Data Transfer With Application Execution on Clusters Karen L. Reid and Michael Stumm reid@cs.toronto.edu stumm@eecg.toronto.edu Department of Computer Science Department of Electrical and Computer

More information

A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster

A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster , pp.11-20 http://dx.doi.org/10.14257/ ijgdc.2014.7.2.02 A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster Kehe Wu 1, Long Chen 2, Shichao Ye 2 and Yi Li 2 1 Beijing

More information

Flexible mobility management strategy in cellular networks

Flexible mobility management strategy in cellular networks Flexible mobility management strategy in cellular networks JAN GAJDORUS Department of informatics and telecommunications (161114) Czech technical university in Prague, Faculty of transportation sciences

More information

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 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

More information

TheImpactofWeightsonthe Performance of Server Load Balancing(SLB) Systems

TheImpactofWeightsonthe Performance of Server Load Balancing(SLB) Systems TheImpactofWeightsonthe Performance of Server Load Balancing(SLB) Systems Jörg Jung University of Potsdam Institute for Computer Science Operating Systems and Distributed Systems March 2013 1 Outline 1

More information

Various Schemes of Load Balancing in Distributed Systems- A Review

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

More information

Joint Optimization of Overlapping Phases in MapReduce

Joint Optimization of Overlapping Phases in MapReduce Joint Optimization of Overlapping Phases in MapReduce Minghong Lin, Li Zhang, Adam Wierman, Jian Tan Abstract MapReduce is a scalable parallel computing framework for big data processing. It exhibits multiple

More information

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 349 ISSN 2229-5518

International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 349 ISSN 2229-5518 International Journal of Scientific & Engineering Research, Volume 4, Issue 11, November-2013 349 Load Balancing Heterogeneous Request in DHT-based P2P Systems Mrs. Yogita A. Dalvi Dr. R. Shankar Mr. Atesh

More information

Measurement and Modelling of Internet Traffic at Access Networks

Measurement and Modelling of Internet Traffic at Access Networks Measurement and Modelling of Internet Traffic at Access Networks Johannes Färber, Stefan Bodamer, Joachim Charzinski 2 University of Stuttgart, Institute of Communication Networks and Computer Engineering,

More information

Traffic Behavior Analysis with Poisson Sampling on High-speed Network 1

Traffic Behavior Analysis with Poisson Sampling on High-speed Network 1 Traffic Behavior Analysis with Poisson Sampling on High-speed etwork Guang Cheng Jian Gong (Computer Department of Southeast University anjing 0096, P.R.China) Abstract: With the subsequent increasing

More information

This paper introduces a new method for shift scheduling in multiskill call centers. The method consists of

This paper introduces a new method for shift scheduling in multiskill call centers. The method consists of MANUFACTURING & SERVICE OPERATIONS MANAGEMENT Vol. 10, No. 3, Summer 2008, pp. 411 420 issn 1523-4614 eissn 1526-5498 08 1003 0411 informs doi 10.1287/msom.1070.0172 2008 INFORMS Simple Methods for Shift

More information

D1.1 Service Discovery system: Load balancing mechanisms

D1.1 Service Discovery system: Load balancing mechanisms D1.1 Service Discovery system: Load balancing mechanisms VERSION 1.0 DATE 2011 EDITORIAL MANAGER Eddy Caron AUTHORS STAFF Eddy Caron, Cédric Tedeschi Copyright ANR SPADES. 08-ANR-SEGI-025. Contents Introduction

More information

How To Write A Disk Array

How To Write A Disk Array 200 Chapter 7 (This observation is reinforced and elaborated in Exercises 7.5 and 7.6, and the reader is urged to work through them.) 7.2 RAID Disks are potential bottlenecks for system performance and

More information

Utilizing Round Robin Concept for Load Balancing Algorithm at Virtual Machine Level in Cloud Environment

Utilizing Round Robin Concept for Load Balancing Algorithm at Virtual Machine Level in Cloud Environment Utilizing Round Robin Concept for Load Balancing Algorithm at Virtual Machine Level in Cloud Environment Stuti Dave B H Gardi College of Engineering & Technology Rajkot Gujarat - India Prashant Maheta

More information

CHAPTER 3 LOAD BALANCING MECHANISM USING MOBILE AGENTS

CHAPTER 3 LOAD BALANCING MECHANISM USING MOBILE AGENTS 48 CHAPTER 3 LOAD BALANCING MECHANISM USING MOBILE AGENTS 3.1 INTRODUCTION Load balancing is a mechanism used to assign the load effectively among the servers in a distributed environment. These computers

More information

Multi-service Load Balancing in a Heterogeneous Network with Vertical Handover

Multi-service Load Balancing in a Heterogeneous Network with Vertical Handover 1 Multi-service Load Balancing in a Heterogeneous Network with Vertical Handover Jie Xu, Member, IEEE, Yuming Jiang, Member, IEEE, and Andrew Perkis, Member, IEEE Abstract In this paper we investigate

More information

Content Inspection Director

Content Inspection Director Content Inspection Director High Speed Content Inspection North America Radware Inc. 575 Corporate Dr. Suite 205 Mahwah, NJ 07430 Tel 888 234 5763 International Radware Ltd. 22 Raoul Wallenberg St. Tel

More information

Development of Software Dispatcher Based. for Heterogeneous. Cluster Based Web Systems

Development of Software Dispatcher Based. for Heterogeneous. Cluster Based Web Systems ISSN: 0974-3308, VO L. 5, NO. 2, DECEMBER 2012 @ SRIMC A 105 Development of Software Dispatcher Based B Load Balancing AlgorithmsA for Heterogeneous Cluster Based Web Systems S Prof. Gautam J. Kamani,

More information

Purpose-Built Load Balancing The Advantages of Coyote Point Equalizer over Software-based Solutions

Purpose-Built Load Balancing The Advantages of Coyote Point Equalizer over Software-based Solutions Purpose-Built Load Balancing The Advantages of Coyote Point Equalizer over Software-based Solutions Abstract Coyote Point Equalizer appliances deliver traffic management solutions that provide high availability,

More information

Efficient Parallel Processing on Public Cloud Servers Using Load Balancing

Efficient Parallel Processing on Public Cloud Servers Using Load Balancing Efficient Parallel Processing on Public Cloud Servers Using Load Balancing Valluripalli Srinath 1, Sudheer Shetty 2 1 M.Tech IV Sem CSE, Sahyadri College of Engineering & Management, Mangalore. 2 Asso.

More information

LOAD BALANCING QUEUE BASED ALGORITHM FOR DISTRIBUTED SYSTEMS

LOAD BALANCING QUEUE BASED ALGORITHM FOR DISTRIBUTED SYSTEMS LOAD BALANCING QUEUE BASED ALGORITHM FOR DISTRIBUTED SYSTEMS 5.1: INTRODUCTION Server farms achieve high scalability and high availability through server load balancing, a technique that makes the server

More information

Project Proposal. Data Storage / Retrieval with Access Control, Security and Pre-Fetching

Project Proposal. Data Storage / Retrieval with Access Control, Security and Pre-Fetching 1 Project Proposal Data Storage / Retrieval with Access Control, Security and Pre- Presented By: Shashank Newadkar Aditya Dev Sarvesh Sharma Advisor: Prof. Ming-Hwa Wang COEN 241 - Cloud Computing Page

More information

Branch-and-Price Approach to the Vehicle Routing Problem with Time Windows

Branch-and-Price Approach to the Vehicle Routing Problem with Time Windows TECHNISCHE UNIVERSITEIT EINDHOVEN Branch-and-Price Approach to the Vehicle Routing Problem with Time Windows Lloyd A. Fasting May 2014 Supervisors: dr. M. Firat dr.ir. M.A.A. Boon J. van Twist MSc. Contents

More information

RESOURCE ALLOCATION FOR INTERACTIVE TRAFFIC CLASS OVER GPRS

RESOURCE ALLOCATION FOR INTERACTIVE TRAFFIC CLASS OVER GPRS RESOURCE ALLOCATION FOR INTERACTIVE TRAFFIC CLASS OVER GPRS Edward Nowicki and John Murphy 1 ABSTRACT The General Packet Radio Service (GPRS) is a new bearer service for GSM that greatly simplify wireless

More information

An Ecient Dynamic Load Balancing using the Dimension Exchange. Ju-wook Jang. of balancing load among processors, most of the realworld

An Ecient Dynamic Load Balancing using the Dimension Exchange. Ju-wook Jang. of balancing load among processors, most of the realworld An Ecient Dynamic Load Balancing using the Dimension Exchange Method for Balancing of Quantized Loads on Hypercube Multiprocessors * Hwakyung Rim Dept. of Computer Science Seoul Korea 11-74 ackyung@arqlab1.sogang.ac.kr

More information

TCP Servers: Offloading TCP Processing in Internet Servers. Design, Implementation, and Performance

TCP Servers: Offloading TCP Processing in Internet Servers. Design, Implementation, and Performance TCP Servers: Offloading TCP Processing in Internet Servers. Design, Implementation, and Performance M. Rangarajan, A. Bohra, K. Banerjee, E.V. Carrera, R. Bianchini, L. Iftode, W. Zwaenepoel. Presented

More information

Maximum Likelihood Estimation of ADC Parameters from Sine Wave Test Data. László Balogh, Balázs Fodor, Attila Sárhegyi, and István Kollár

Maximum Likelihood Estimation of ADC Parameters from Sine Wave Test Data. László Balogh, Balázs Fodor, Attila Sárhegyi, and István Kollár Maximum Lielihood Estimation of ADC Parameters from Sine Wave Test Data László Balogh, Balázs Fodor, Attila Sárhegyi, and István Kollár Dept. of Measurement and Information Systems Budapest University

More information

A Study of Network Security Systems

A Study of Network Security Systems A Study of Network Security Systems Ramy K. Khalil, Fayez W. Zaki, Mohamed M. Ashour, Mohamed A. Mohamed Department of Communication and Electronics Mansoura University El Gomhorya Street, Mansora,Dakahlya

More information

Proposal of Dynamic Load Balancing Algorithm in Grid System

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

More information

Research Article Average Bandwidth Allocation Model of WFQ

Research Article Average Bandwidth Allocation Model of WFQ Modelling and Simulation in Engineering Volume 2012, Article ID 301012, 7 pages doi:10.1155/2012/301012 Research Article Average Bandwidth Allocation Model of WFQ TomášBaloghandMartinMedvecký Institute

More information

Global Server Load Balancing

Global Server Load Balancing White Paper Overview Many enterprises attempt to scale Web and network capacity by deploying additional servers and increased infrastructure at a single location, but centralized architectures are subject

More information

Keywords: Dynamic Load Balancing, Process Migration, Load Indices, Threshold Level, Response Time, Process Age.

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

More information

Implementing Web-Based Computing Services To Improve Performance And Assist Telemedicine Database Management System

Implementing Web-Based Computing Services To Improve Performance And Assist Telemedicine Database Management System Implementing Web-Based Computing Services To Improve Performance And Assist Telemedicine Database Management System D. A. Vidhate 1, Ige Pranita 2, Kothari Pooja 3, Kshatriya Pooja 4 (Information Technology,

More information

Creating Synthetic Temporal Document Collections for Web Archive Benchmarking

Creating Synthetic Temporal Document Collections for Web Archive Benchmarking Creating Synthetic Temporal Document Collections for Web Archive Benchmarking Kjetil Nørvåg and Albert Overskeid Nybø Norwegian University of Science and Technology 7491 Trondheim, Norway Abstract. In

More information

How To Compare Load Sharing And Job Scheduling In A Network Of Workstations

How To Compare Load Sharing And Job Scheduling In A Network Of Workstations A COMPARISON OF LOAD SHARING AND JOB SCHEDULING IN A NETWORK OF WORKSTATIONS HELEN D. KARATZA Department of Informatics Aristotle University of Thessaloniki 546 Thessaloniki, GREECE Email: karatza@csd.auth.gr

More information

Efficient Service Broker Policy For Large-Scale Cloud Environments

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,

More information

A SIMULATOR FOR LOAD BALANCING ANALYSIS IN DISTRIBUTED SYSTEMS

A SIMULATOR FOR LOAD BALANCING ANALYSIS IN DISTRIBUTED SYSTEMS Mihai Horia Zaharia, Florin Leon, Dan Galea (3) A Simulator for Load Balancing Analysis in Distributed Systems in A. Valachi, D. Galea, A. M. Florea, M. Craus (eds.) - Tehnologii informationale, Editura

More information

Cloud deployment model and cost analysis in Multicloud

Cloud deployment model and cost analysis in Multicloud IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) ISSN: 2278-2834, ISBN: 2278-8735. Volume 4, Issue 3 (Nov-Dec. 2012), PP 25-31 Cloud deployment model and cost analysis in Multicloud

More information

Characterizing Task Usage Shapes in Google s Compute Clusters

Characterizing Task Usage Shapes in Google s Compute Clusters Characterizing Task Usage Shapes in Google s Compute Clusters Qi Zhang University of Waterloo qzhang@uwaterloo.ca Joseph L. Hellerstein Google Inc. jlh@google.com Raouf Boutaba University of Waterloo rboutaba@uwaterloo.ca

More information

Performance Prediction, Sizing and Capacity Planning for Distributed E-Commerce Applications

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 (skounev@ito.tu-darmstadt.de) Information Technology Transfer Office Abstract Modern e-commerce

More information

LOAD BALANCING ALGORITHM REVIEW s IN CLOUD ENVIRONMENT

LOAD BALANCING ALGORITHM REVIEW s IN CLOUD ENVIRONMENT LOAD BALANCING ALGORITHM REVIEW s IN CLOUD ENVIRONMENT K.Karthika, K.Kanakambal, R.Balasubramaniam PG Scholar,Dept of Computer Science and Engineering, Kathir College Of Engineering/ Anna University, India

More information

Prediction of DDoS Attack Scheme

Prediction of DDoS Attack Scheme Chapter 5 Prediction of DDoS Attack Scheme Distributed denial of service attack can be launched by malicious nodes participating in the attack, exploit the lack of entry point in a wireless network, and

More information

Scheduling for QoS Management

Scheduling for QoS Management Scheduling for QoS Management Domenico Massimo Parrucci Condello isti information science Facoltà and di Scienze technology e Tecnologie institute 1/number 1 Outline What is Queue Management and Scheduling?

More information

Fair Scheduling Algorithm with Dynamic Load Balancing Using In Grid Computing

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

More information

Performance evaluation of Web Information Retrieval Systems and its application to e-business

Performance evaluation of Web Information Retrieval Systems and its application to e-business Performance evaluation of Web Information Retrieval Systems and its application to e-business Fidel Cacheda, Angel Viña Departament of Information and Comunications Technologies Facultad de Informática,

More information

Quality of Service versus Fairness. Inelastic Applications. QoS Analogy: Surface Mail. How to Provide QoS?

Quality of Service versus Fairness. Inelastic Applications. QoS Analogy: Surface Mail. How to Provide QoS? 18-345: Introduction to Telecommunication Networks Lectures 20: Quality of Service Peter Steenkiste Spring 2015 www.cs.cmu.edu/~prs/nets-ece Overview What is QoS? Queuing discipline and scheduling Traffic

More information

DoS: Attack and Defense

DoS: Attack and Defense DoS: Attack and Defense Vincent Tai Sayantan Sengupta COEN 233 Term Project Prof. M. Wang 1 Table of Contents 1. Introduction 4 1.1. Objective 1.2. Problem 1.3. Relation to the class 1.4. Other approaches

More information

Real Time Network Server Monitoring using Smartphone with Dynamic Load Balancing

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,

More information

PART IV Performance oriented design, Performance testing, Performance tuning & Performance solutions. Outline. Performance oriented design

PART IV Performance oriented design, Performance testing, Performance tuning & Performance solutions. Outline. Performance oriented design PART IV Performance oriented design, Performance testing, Performance tuning & Performance solutions Slide 1 Outline Principles for performance oriented design Performance testing Performance tuning General

More information

Aachen Summer Simulation Seminar 2014

Aachen Summer Simulation Seminar 2014 Aachen Summer Simulation Seminar 2014 Lecture 07 Input Modelling + Experimentation + Output Analysis Peer-Olaf Siebers pos@cs.nott.ac.uk Motivation 1. Input modelling Improve the understanding about how

More information

On demand synchronization and load distribution for database grid-based Web applications

On demand synchronization and load distribution for database grid-based Web applications Data & Knowledge Engineering 51 (24) 295 323 www.elsevier.com/locate/datak On demand synchronization and load distribution for database grid-based Web applications Wen-Syan Li *,1, Kemal Altintas, Murat

More information

Optimizing a ëcontent-aware" Load Balancing Strategy for Shared Web Hosting Service Ludmila Cherkasova Hewlett-Packard Laboratories 1501 Page Mill Road, Palo Alto, CA 94303 cherkasova@hpl.hp.com Shankar

More information

Objectives. Chapter 5: CPU Scheduling. CPU Scheduler. Non-preemptive and preemptive. Dispatcher. Alternating Sequence of CPU And I/O Bursts

Objectives. Chapter 5: CPU Scheduling. CPU Scheduler. Non-preemptive and preemptive. Dispatcher. Alternating Sequence of CPU And I/O Bursts Objectives Chapter 5: CPU Scheduling Introduce CPU scheduling, which is the basis for multiprogrammed operating systems Describe various CPU-scheduling algorithms Discuss evaluation criteria for selecting

More information

Optimal Service Pricing for a Cloud Cache

Optimal Service Pricing for a Cloud Cache Optimal Service Pricing for a Cloud Cache K.SRAVANTHI Department of Computer Science & Engineering (M.Tech.) Sindura College of Engineering and Technology Ramagundam,Telangana G.LAKSHMI Asst. Professor,

More information

Comparative Analysis of Congestion Control Algorithms Using ns-2

Comparative Analysis of Congestion Control Algorithms Using ns-2 www.ijcsi.org 89 Comparative Analysis of Congestion Control Algorithms Using ns-2 Sanjeev Patel 1, P. K. Gupta 2, Arjun Garg 3, Prateek Mehrotra 4 and Manish Chhabra 5 1 Deptt. of Computer Sc. & Engg,

More information

Building Scalable Applications Using Microsoft Technologies

Building Scalable Applications Using Microsoft Technologies Building Scalable Applications Using Microsoft Technologies Padma Krishnan Senior Manager Introduction CIOs lay great emphasis on application scalability and performance and rightly so. As business grows,

More information

Web Intelligence with High Availability A Demand Driven Approach

Web Intelligence with High Availability A Demand Driven Approach Web Intelligence with High Availability A Demand Driven Approach How to build a high available system to provide thin-client tool for query, reporting and analysis. White Paper Zebah Singh Alfred Wipro

More information

CommuniGate Pro White Paper. Dynamic Clustering Solution. For Reliable and Scalable. Messaging

CommuniGate Pro White Paper. Dynamic Clustering Solution. For Reliable and Scalable. Messaging CommuniGate Pro White Paper Dynamic Clustering Solution For Reliable and Scalable Messaging Date April 2002 Modern E-Mail Systems: Achieving Speed, Stability and Growth E-mail becomes more important each

More information

Storage Systems Autumn 2009. Chapter 6: Distributed Hash Tables and their Applications André Brinkmann

Storage Systems Autumn 2009. Chapter 6: Distributed Hash Tables and their Applications André Brinkmann Storage Systems Autumn 2009 Chapter 6: Distributed Hash Tables and their Applications André Brinkmann Scaling RAID architectures Using traditional RAID architecture does not scale Adding news disk implies

More information

VOIP TRAFFIC SHAPING ANALYSES IN METROPOLITAN AREA NETWORKS. Rossitza Goleva, Mariya Goleva, Dimitar Atamian, Tashko Nikolov, Kostadin Golev

VOIP TRAFFIC SHAPING ANALYSES IN METROPOLITAN AREA NETWORKS. Rossitza Goleva, Mariya Goleva, Dimitar Atamian, Tashko Nikolov, Kostadin Golev International Journal "Information Technologies and Knowledge" Vol.2 / 28 181 VOIP TRAFFIC SHAPING ANALYSES IN METROPOLITAN AREA NETWORKS Rossitza Goleva, Mariya Goleva, Dimitar Atamian, Tashko Nikolov,

More information

OpenFlow Based Load Balancing

OpenFlow Based Load Balancing OpenFlow Based Load Balancing Hardeep Uppal and Dane Brandon University of Washington CSE561: Networking Project Report Abstract: In today s high-traffic internet, it is often desirable to have multiple

More information

LinuxWorld Conference & Expo Server Farms and XML Web Services

LinuxWorld Conference & Expo Server Farms and XML Web Services LinuxWorld Conference & Expo Server Farms and XML Web Services Jorgen Thelin, CapeConnect Chief Architect PJ Murray, Product Manager Cape Clear Software Objectives What aspects must a developer be aware

More information

Model-based Technology of Automated Performance Testing

Model-based Technology of Automated Performance Testing Model-based Technology of Automated Performance Testing Prof. Dr. B. Pozin ZAO EC-leasing bpozin@ec-leasing.ru Dr. I. Galakhov ZAO EC-leasing igalakhov@ec-leasing.ru R. Giniyatullin ZAO EC-leasing renat@ec-leasing.ru

More information

1. Comments on reviews a. Need to avoid just summarizing web page asks you for:

1. Comments on reviews a. Need to avoid just summarizing web page asks you for: 1. Comments on reviews a. Need to avoid just summarizing web page asks you for: i. A one or two sentence summary of the paper ii. A description of the problem they were trying to solve iii. A summary of

More information