Fast Web Page Allocation On a Server Using Self- Organizing Properties of Neural Networks

Size: px
Start display at page:

Download "Fast Web Page Allocation On a Server Using Self- Organizing Properties of Neural Networks"

Transcription

1 Fast Web Page Allocation On a Server Using Self- Organizing Properties of Neural Networks Vir V. Phoha S. S. Iyengar R. Kannan Computer Science Computer Science Computer Science Louisiana Tech University Louisiana State University Louisiana State University Ruston, LA Baton Rouge, LA Baton Rouge, LA phoha@coes.latech.edu iyengar@bit.csc.lsu.edu rkannan@bit.csc.lsu.edu ABSTRACT This paper presents a novel competitive neural network learning approach to schedule requests to a cluster of Web servers. Traditionally, the scheduling algorithms for distributed systems are not applicable to control Web server clusters because different client domains have different Web traffic characteristics, Web workload is highly variable, and Web requests show a high degree of self-similarity. Using the selforganizing properties of neural networks, we map Web requests to servers through an iterative update rule. This update rule is a gradient descent rule to a corresponding energy function that exploits the selfsimilarity of the Web page requests and includes terms for load balancing. Heuristics to select parameters in the update rule that provide balance between hits and load balancing among servers are presented. Simulations show an order of magnitude improvement over traditional DNS based load-balancing approaches. More specifically, performance of our algorithm ranged between 85% to 98% hit rate compared to a performance range of 2% to 40% hit rate for a Round Robin scheme when simulating real Web traffic. As the traffic increases, our algorithm performs much better than the round robin scheme. A detailed experimental analysis is presented in this paper. Keywords: World Wide Web, Self-Organization, Competitive Learning, Internet, Load Balancing 1. Introduction The World-Wide-Web offers tremendous opportunities for marketers to reach a vast variety of audiences at less cost than any other medium. With huge amount of capital invested in Web sites and various databases and services on these sites, it has become necessary to understand the effectiveness and realize the potential opportunities offered by these services. In the past few years the computational approach to artificial intelligence and cognitive engineering has undergone a significant evolution. Not only is this transformation, from discrete symbolic reasoning to massively, parallel and connectionist neural modeling of compelling scientific interest, but also of considerable practical value. In this paper, we present a novel application of connectionist neural modeling to map web page requests to web server cache to maximize hit ratio and at the same time balance the conflicting request of distributing the web requests equally among web caches. In particular, we describe and present a new neural network- 1

2 learning algorithm for a fast Web page allocation on a server using self-organizing properties of neural network. The Internet traffic has stabilized at doubling almost every year since 1997 and this growth rate will sustain for some time in future [CK01]. Web sites with heavy traffic load must use multiple servers running on different hardware; consequently, this structure facilitates the sharing of information among servers through a shared file system or via a shared data space. Examples of such a system include Andrews file system (AFS) and distributed file system (DFS). If facilities are not there, then each server may have its own independent file system. Clients Router HTTP Server Cache HTTP Server Cache HTTP Server Cache S 1 S 2 A common file system S n Disk Disk Disk Figure 1: A typical routing configuration of the web page requests. Figure 1 describes an example of this type of system, where requests may come from various client sites to the router, which then pools the requests and directs them to different servers [IC97]. Here the servers S 1, S 2,..., S N each have their own cache and may share a common file system. Correspondingly, each of these servers may have their individual storage, the router decides the allocation of web page request to individual servers. The organization of this paper is as follows. In section 1.1, we describe the terminology used in this paper. In section 2, we review the existing approaches on different web server routing systems. In section 3, we present background concepts related to Pareto distribution, selfsimilarity and an overview of neural network learning algorithms. Section 4 describes problem formulation and the new model for this problem and our algorithmic approach to solve this problem. Section 5 presents the experimental results and section 6 concludes the paper. 2

3 1.1 Terminology Used in This Paper We define a client as a program that establishes connections to the Internet, whereas a Web-server or a server stores information and serves client requests. For our purpose a distributed Web-server system is any architecture of multiple Web server hosts that has some means of spreading the client requests to the servers. The traffic load on the web site is measured in number of http requests handled by the web site. A session is an entire period of access from a single user to a given Web site. A session may issue many HTML page requests. Typically, a Web page consists of a collection of objects, and an object request requires an access to a server. Any access to a server for an object is defined as a hit. We use site and web site interchangeably to mean a collection of Web objects meant to be served. An object is an entity such as a web page, image etc., that is served by the server. An object-id is an item that uniquely identifies an object in a Web page. An object-id may be a URL, a mapping of a URL to a unique numerical value, and so on; however only one chosen method is consistently followed. There are N servers that service the requests for Web objects. The servers are identified as S 1 S N. The Web-server cluster is scalable and uses one URL to provide a single interface to users. For example, a single domain name may be associated with many IP addresses and each address may belong to a different Web server. The collection of Web servers is transparent to the users. Each request for a Web page is identified as a duplet <O i, R i > where 1 i M. O i is the object identifier of the object requested, R i is the number of requests served so far, for that object, and M is the total number of objects present at the site. 2. A Review of the Existing Approaches There are four basic approaches [CCY99b] to route requests among the distributed Web-server nodes: (1) Client-based, (2) DNS-based, (3) Dispatcher based, and (4) Server based. In the clientbased approach, requests can be routed to any Web server architecture even if the nodes are loosely connected or are uncoordinated. The routing decisions can be embedded by the Web clients like browsers or by the client-side proxy servers. For example, Netscape spreads the load among various servers by selecting a random number i between 1 and the number of servers and directs the requests to the server wwwi.netscape.com. This approach is not widely applicable as it is not easily scalable and many Web sites do not have browsers to distribute load among servers. One proposal that combines caching and server replication is given in [BBM97]. However, client-side proxy servers require modifications on Internet component that is beyond the control of many institutions that manage Web server systems. Domain Name System (DNS) can implement a large set of scheduling policies by translating a symbolic name to an IP address. The DNS approach is limited by the constraint of 32 Web servers for each public URL because of UDP packet size constraints although it can be scaled easily from LAN to WAN distributed systems. In the Dispatcher approach, one single entity controls the routing decisions. This approach provides finely tuned load balancing, but failure of the centralized controller can disable the whole system. Server based approach uses two levels of dispatching, first cluster DNS assigns 3

4 requests to web servers each Web server may reassign the request to any other server in the cluster. Server based approach can attain as good a control as the dispatcher approach but redirection mechanisms typically increase the latency time perceived by the users. To our knowledge, only the Internet2 Distributed Storage Infrastructure Project (I2-DSI) proposes a smart DNS that uses network proximity information such as transmission delays in making routing decisions [BM98]. However, none of the approaches incorporates any kind of intelligence or learning in routing Web requests. Many Artificial Neural Network architectures have the ability to discover for themselves patterns, features, correlations, or categories in the input data and code them in the output that is these Neural Networks display self-organizing properties. Several researchers [GB99, LT94] have detected self-similarity in the Internet traffic flows. The Web page requests are shown to be self-similar and many of them may be generated from the same user, we can use neural networks to make routing decisions that take into consideration the self-similar nature of the Web requests. In earlier work, self-organizing properties of neural networks have been used in various other applications. Rather than listing all the applications, we list those applications that have directly motivated this work. Phoha [P92] and Phoha and Oldham [PO96] use competitive learning to develop an iterative algorithm for image recovery and segmentation. Using Markov Random Fields they develop energy function that has terms corresponding to smoothing and edge detection and preservation. An update rule is then developed to restore and segment images; this update rule is a gradient descent rule to the energy function. A Modares et al. [MSE99] use a selforganizing neural network to solve multiple traveling salesman problem and vehicle routing problems. Their algorithm shows significant advances both in the quality of solutions and computational efforts for most of the experimental data. K. Yeung et al. [YY98] present a node placement algorithm in shuffle nets that uses a communication cost function between a pair of nodes and develop a gradient descent algorithm that places node pairs one by one. 2.1 Special Considerations of Web Server Routing Requests encrypted using Secure Socket Layer (SSL) use a session key to encrypt information passed between a client and a server. Since session keys are expensive to generate, each SSL request has a lifetime of about 100 seconds and requests between a specific client and server within the lifetime of the key use the same session key. So it is highly desirable to route multiple requests from the same client to a server be routed to the same server, as a different server may not know about the session key. In our approach, the competitive learning approach of neural networks approach achieves this by the very nature of the algorithm. (Note: (1) The IBM s Network Dispatcher (ND) achieves this by routing two SSL requests received within 100 seconds from the same client to the same server. (2) Using a simple Round Robin scheme will be very inefficient as this will require generation of many session keys.) The Web server load information becomes obsolete quickly and is poorly correlated with future load conditions [CCY99a]. Since, the dynamics of the WWW involves high variability of domain and client workloads, exchange of information about load condition of servers are not sufficient to provide scheduling decisions. Hence, we need a real time adaptive mechanism that adapts rapidly to changing environment. 3. Background 4

5 This section gives the background material such as Pareto distribution, self-similarity, competitive learning, and Kohonen s algorithm, that are used in the subsequent sections of the paper. 3.1 Pareto Distribution and Self Similarity Pareto Distribution: Web traffic can be modeled using Pareto distribution. Pareto distribution is an example of a heavy-tailed distribution. A heavy-tailed distribution is asymptotically hyperbolic, that is irrespective of the distribution of a random variable x over a short period of time; over the long run, the distribution function of x is hyperbolic. The probability mass function of Pareto distribution is p(x) = γk γ x -γ-1, γ, k > 0, x k; and its cumulative distribution is given by F(x) = P[X x] = 1 (k/x) γ Here k represents the smallest value of the random variable and γ determines the behavior of the distribution. The parameters may be estimated from historical data and determines the behavior f the distribution. For example, if γ 2, then Pareto distribution has infinite variance and if γ 1 then the distribution has infinite mean. For more details, an interested reader is referred to [PF95]. Self similarity: Self similarity is usually associated with fractals, the shape of a self-similar object is similar regardless of the scale at which it is viewed; for example, a coastline has similar structure at a scale of one mile, 10 miles, or 200 miles. In case of stochastic phenomenon, such as a time series, self-similarity means that the object s correlational structure remains unchanged at different time scale. Both, Ethernet traffic and Web traffic are shown to be self-similar [LTWW94] [CB97]. 3.2 Neural Network Background This section gives a brief background of competitive learning and Kohonen s rule. We first describe the idea of competitive learning and then describe a mapping of this technique to web server routing Competitive Learning In the simplest competitive learning network there is a single layer of output units S={S 1,S 2,,S N }, each is fully connected to a set of inputs O i via connection weights w ij. A brief description of a competitive learning algorithm follows. Let O={O 1,O 2,,O M } be an input to a network of two layers with an associated set of weights w ij. The standard competitive learning rule [H91] is given by: w i * j = η(o j - w i * j ) 5

6 which moves w i * towards O, the i* implies that only the set of weights corresponding to the winning nodes is updated. The winning node is taken to be the one with the largest output. Another way to write this is: w ij = ηs i (O j - w ij ), where: 1 S i = 0 for i corresponding to the largest otherwise output This is the adaptive approach taken by Kohonen in his first algorithm (see Kohonen model below). The usual definition of competitive learning requires a winner-take-all strategy. In many cases this requirement is relaxed to update all of the weights in proportion to some criterion. This form of competitive learning is referred to as leaky learning [H91]. Hertz et al.[h91] discuss various forms of this adaptive processing for different problems including the traveling salesperson problem. It has become a standard practice to refer to all of these as Kohonen-like algorithms Kohonen's Algorithm Kohonen s Algorithms [K89], [H91] adjusts weights from common input nodes to N-output nodes arranged in a 2-dimentsional grid (See Figure 2 below) to form a vector quantizer. Input vectors are presented sequentially in time and after enough input vectors have been presented weights specify clusters or vector centers. These clusters or vector centers sample the input space such that the point density function of the vector centers approximate the probability density functions of the input vectors. This algorithm also organizes weights such that topologically close nodes are sensitive to physically similar inputs. Output nodes are thus ordered in a natural fashion. Thus, this algorithm forms feature maps of inputs. A description of this algorithm follows. Let x 1, x 2,, x N be a set of input vectors, which defines a point in N-dimensional space. The output units O i are arranged in an array and are fully connected to input via the weights w ij. A competitive learning rule is used to choose a winner unit i*, such that then the Kohonen's update rule is given by: w i* - x <= w i - x for all i, w i = η h(i, i*) (x - w i Old ). Here h(i,i*) is the neighborhood function such that h(i,i*) = 1 if i = i* but falls off with distance r i - r i * between units i and i* in the output array. The winner and close by units are updated appreciably more than those further away. A typical choice for h(i, i*) is: e -( r i -r i * /2σ2), where σ is a parameter that is gradually decreased to contract the neighborhood. η is decreased to ensure convergence. 6

7 Figure 2: Kohonen's Network Using the principles derived from competitive learning and building on the earlier works in selforganizing properties of neural networks, we propose and evaluate a neural network approach to route Web page requests in a multiple server environment. The scheduling algorithms for traditional distributed systems are not applicable to control Web server clusters because of nonuniformity of load from different client domains, high variability of real Web workload, and a high degree of self-similarity in the Web requests [LTWW94] [CB97]. 4. Conceptual Framework and Formulation of the Problem A new model to ensure high performance of a web server using neural networks is proposed in this paper. One technique for improving performance at web sites is to cache data at the client site so as to provide fewer overloads to the server. However this approach is limited by the cache capacity and is very inefficient for serving dynamic web objects because copies of data may have to go through several layers of software and file system, require intermediate processing, object fetches from cache, and then again be passed through operating system layers of the client machine. To handle increasing web traffic we propose a technique to assign web objects to the server cache at the router level. This router may be one of the servers or a dedicated machine to act as a server. Figure 3 presents a conceptual framework of the proposed model. The object id, and request count of the most frequently accessed objects are in the router s memory. The actual objects reside in the server s cache. 7

8 Figure 3: A Conceptual Framework of our model The underlying principle of our model is the competitive learning properties of the Neural Networks. The model presented here is an extension of an earlier work [PO96], [P92] where a competitive learning algorithm was used to restore and segment images. Here each server competes to serve the request for an object (See Equation 1, section 4.2). The server, which is closest to the request, is the one who wins and if this object is already in the server s cache, we strengthen the relationship between the server and the object request (See Section 4.3). Here a competitive basis algorithm is used to make routing decisions. This approach is also related to Kohonen s self-organizing feature map [K89] technique, which facilitates mapping from higher to lower dimensional spaces so that the relationships among the inputs are mapped onto high reliable outputs. In Kohonen s algorithm, the output neurons that are generated are very close to the winning neurons based on the topology structure. In our model, connection strength between the object requests to the server are analogous to weight connections between the two layers of Kohonen s model. The input layer consists of the object request and the output layer consists of the servers. In addition to mapping the input space of Web object requests to the weight space, we use this property to classify the object requests to the servers. 4.1 Description of the New Model In our neural placement model, we define two layers in the network: the input layer W and the output layer S. Layer W contains M nodes, each object is assigned a node. The object request count, R i, is applied as the input to the node corresponding to the object in the W layer. The layer S has N nodes, the number of servers, and each node, j, is assigned to a server S j. The weight w ij connects node i in the input layer to node j in the output layer. This weight forms connection strength from an object <O i, R i > to a server S j. A pictorial representation of this architecture is given in Figure 4. 8

9 Figure 4: Neural Architecture to direct Web page request to the appropriate server. We approximate the number of input nodes (M) from the number of objects, such as images, HTML pages, sound clips, etc. in a given Web site. Addition or deletion of input nodes (or new objects) would not affect the existing structure of the model because the links of the new node to the servers (S 1, S 2,, S N ) are the only ones to be added (see Figure 4 and equation 2) and no change in the existing links and weights is needed. In our simulations, the number (M) of objects ranged from 150 to Kohonen s algorithm maps the topological structure of the input onto the weights, whereas in our model we transfer page popularity structure of the Web object requests to the weight structure between the input and output layers of our model and use competition to transfer the request to the winning server cache; at the same time we add a balancing factor in the decision process to equitably allocate object requests among server caches to load balance. 4.2 Mathematical Formulation Using Competitive Learning We formulate the problem of assigning web objects to the servers as a mapping for the placement of <O i, R i > W onto a server space S as k : W S, such that O i W S j S; (i=1, M and j =1, N) with the condition to allocate (classify) the objects (O i ) such that the objects are distributed equally among the servers (S j ), to ensure equitable load among the servers, and at the same time maximize the hits in the servers cache. Our objective is to optimize two things: (1) increase the number of hits, in the sense that a server gets the same object request that it has served before to increase object hit. As our simulation results show, this in turn would accelerate the performance of the web site to allow fast response and fast loading of dynamic web objects; and (2) to distribute the object requests among servers in such a fashion that the object requests are distributed equitably among the servers. Our algorithm achieves both these goals by learning the earlier requests made and also learning the distribution of object requests. The server k for a given object is selected in the following way. The request count for requested object is applied as the input to the node corresponding to that object. The server to which the 9

10 request is forwarded is chosen depending on the least value of the mod of the request count to the weight connecting to that server. Thus, R i w ik = Min R i w ij where j =1, N.(1) Ri It is better to use instead of R i to prevent dealing with very large numbers. Learning is R i achieved by updating the connection strength between object and the winning server using the update rule: w ik = η Λ(R i, w ik, K) (R i -W ik ) + αk ( W iτ - N W ik ) (2) Here η, α, and K are the parameters that determine the strength of controlling the maximum hit or balancing the load among the servers, and Λ(R i, w ik, K) is given by g* g /(2* K* K ) e Λ(Ri, w ik, K) =, here g = (R i -W ik ), d Ψ( d, K) = e j Ψ( d, K) and d= (R i -W ij ), j=1, N (3) * d /(2* K* K ) Now by integrating equation (2) and after some algebraic manipulations we get the energy function [P92]: E = η K ln m,k e -d*d/2k*k +α m,k (w i,j-1 + w i, j+1-4w i, j + w i-1,j + w i, j ) 2.(4) Since the update rule given in equation (2) is of the form descent rule for the energy function given in equation (4). E w ik the update rule is a gradient 4.3 Heuristics on the selection of parameters. The neighborhood function Λ(R i, w ik, K) is 1 for i=k and falls off with the distance R i -w ij Ideally, we should select the neighborhood such that the servers with the mean hit count are close together or servers that serve related objects are closer in a neighborhood. The first part on the right hand side of equation (4) pushes the request count R k towards w ik. Thereby ensuring that object requests for objects that are in server S i s cache will be directed to the server S i. This will increase the likelihood of a object request that was directed to the server S i, to be directed to the same server again thereby increasing the hit ratio. The second term on the right ensures that no one server will be overloaded, that is the object requests are distributed evenly among the servers. By a proper balance of the parameters η, α, and K; we can direct the 10

11 1 flow of traffic in an optimal fashion. η, α, and K are related as follows η Higher η and αk lower αk mean we stress object hits more and less balancing and higher αk means we give more weight to balancing among the servers. Putting α=0 would mean increasing web object hits; we have achieved close to 100% hits using small values of α and still had good load balancing among servers. 4.4 The Algorithm and Its Distinctive Features An outline of the algorithm follows: Initialize M to the number of objects and N to the number of servers; Initialize with random values the weights {w ij } between the page requests and the servers and select parameters η, α, and K. While (server available) //Service page requests until server is running. { //begin while// Calculate R i w ik and using equation (1) select server S k ; if (<O i, R i > is in the cache of S k ) { Update the weight using equation (2) //This is a hit so we want the algorithm to strengthen this connection// } else { Find the correct server S j using R j w ij Update the connection weight for this server using equation (2) // In this case this is a miss-hit so we want the algorithm to learn the //correct response by strengthening the appropriate weight // } } //end while / Our approach has following distinctive features: Our approach maps the self-similar nature of web traffic to the self-organizing property of the neural model. In the construct of our approach, request for a web object has to be allocated to a server. The optimality of this allocator is obtained through a learning rule whereas a network adapts to unpredictable changes using the framework of competitive learning. The stability of responses are generated through a process of learning. The learning rule has an associated energy function, which captures the global knowledge about the load information on the servers. The learning rule is a gradient descent function to this energy function, so this algorithm uses the global knowledge about the load to make local decisions about load balance 11

12 The algorithm creates a balance between conflicting requirements to equitably distribute web requests among servers and at the same time allocate requests to servers to maximize hitratio. At present, the algorithm uses a Winner take all strategy. We may modify the algorithm to incorporate leaky learning [H91 et al.] in which we define a neighborhood of servers [cooperative, buddy] whose weights are updated in proportion. This scenario becomes relevant when we consider the interconnection between the servers and dependencies between objects that may be distributed among closely connected servers. 5. Experimental Results Our model incorporates the characteristics of Web traffic and the self-similarity inherent in real Web traffic, by modeling the traffic through a heavy tailed distribution of the type P[X > x] ~ x -γ as x for 0 < γ < 2. The results reported here correspond to Pareto distribution, with probability density function p(x) = γ k γ x -γ -1, where γ = 0.9 and k = 0.1. We conducted the simulations in two separate environments: (1) Louisiana State University Networks Lab. Here the Web traffic was simulated using Pareto distribution, on a single PC and (2) Computer Science laboratory at Louisiana Tech University. Here the simulation environment consisted of a network of five IBM PCs. One PC was used as a dedicated Web server written in Java specifically for this experiment; one PC was used as a Proxy server, and on the rest of the three PCs, referred to as client PCs, Microsoft Internet Explorer (IE) and Netscape Browser settings pointed to the proxy server for all requests. In addition to the IE, each client PC simulated 300 clients by creating separate threads (using Java) for each client. We implemented the neural model on the PC running the proxy server. We compared the performance of our algorithm with Round Robin (RR), Round Robin 2 (RR2), and a special case of Adaptive Time-to-Live (TTL) algorithm. In RR2 algorithm, a Web cluster is partitioned into two classes: Normal domains and Hot domains. This partition is based on domain load information. In this strategy, Round Robin scheme is applied separately to each of the domains. Details of this algorithm are given in [CCY99a]. In our implementation of Adaptive TTL algorithm, we assigned a lower TTL value when a request is originated from Hot domains and a higher TTL value when it originates from Normal domain, this way the skew on Web objects is reduced. The following table gives characteristics of our simulations. Sample Size Number of Servers Web Pages Distribution Used Table 1 Simulation Characteristics Number of Web objects ranged from 150 to 1050 and the statistics were collected at the intervals of 50 objects each. Statistics were collected for 4, 8, 16, 32 servers Uniform and Non Uniform (Pareto) 12

13 Algorithms Neural Network (NN), Round Robin and Round Robin 2 (RR), and Adaptive Time-to- Live The comparison charts in the following discussions relate only to Round Robin scheme and our proposed Neural Net based algorithm. The results (hit ratios) for adaptive TTL algorithm varied widely for different input size of Web objects and for different input object distributions, but never ranged higher than Hit Ratio RR Performance with 4 Servers NN Performance with 4 Servers RR Performance with 8 Servers NN Performance with 8 Servers RR Performance with 16 Servers NN Performance with 16 Servers RR Performance with 32 Servers NN Performance with 32 Servers No of Page Requests Figure 5 Performance of page placement algorithm using competitive learning (Neural Network) versus Round Robin Algorithms (for Non-Uniform Input Data Distribution) RR Performance with 4 Servers NN Performance with 4 Servers NN Performance with 8 Servers RR Performance with 8 Servers NN Performance with 16 Servers RR Performance with 16 Servers NN Performance with 32 Servers RR Performance with 32 Servers 13

14 Figure 6 Performance of page placement algorithm using competitive learning (Neural Network) versus Round Robin Algorithms (for Uniform Input Data Distribution) As can be seen from Figure 5, the Neural Network (NN) competitive learning algorithm performs much better as compared to Round Robin schemes (also RR2) when input pages follow a Pareto distribution. As the number of input objects increase, our algorithm achieves a hit ratio close to 0.98, whereas the round robin schemes never achieved a hit ratio of more than 0.4. For NN algorithm, hit ratios (0.86) with a smaller number of objects is attributed to some learning on the part of the algorithm, but as the algorithm learns, the hit ratio asymptotically stabilizes to 0.98 for larger number of objects. For uniform distribution of input objects, NN algorithm performs similarly as for nonuniform distribution and is much better than the Round Robin schemes (See Figure 6). Table 2 Comparison of maximum hit ratio achieved, input size, and servers RR NN Uniform (0.31,150,4) (0.98,1050,4) Non-Uniform (0.32,150,4) (0.98,1050,4) Round Robin scheme never achieves a hit ratio higher than 0.32, where as NN achieves hit ratios close to 0.98 (See Table 2). Table 3 Comparison of minimum hit ratio achieved, input size, and servers RR NN Uniform (0.03,1050,32) (0.85,150,32) Non-Uniform (0.02,1050,32) (0.86,150,32) As a worst case, NN achieves a hit ratio of as high as 0.85 for 32 servers, where as RR schemes go as low as 0.02 hit ratio (See Table 3). 6. Conclusions Our analysis shows the following results: (1) The performance of our algorithm (NN) increases considerably (from 0.85 hit rate to 0.98 as compared to 0.02 to 0.38 for Round Robin scheme) as the traffic increases where as the performance of Round Robin decreases. This result holds true irrespective of the number of servers. This is a result of a push of a object towards the same server based on the learning component in equation (2). 14

15 (2) For uniform distribution of Web object requests and at a lower traffic rate with large number of servers (16 and 32), both the algorithms perform equally well. But as the traffic increases our algorithm performs much better than the RR scheme. (3) For a non-uniform distribution (Pareto distribution), our algorithm performs considerably better for lower and higher traffic rates and the performance irrespective of the number of servers. For Pareto distribution, which closely models real Web traffic, better performance of our algorithm, at larger input rate of Web objects is a very attractive result of our algorithm. In summary, we have presented a novel approach using a competitive model of neural network for fast allocation of web pages and balancing the load between various servers. Our algorithm has ability to learn the arrival distribution of Web requests and adapts itself to the load and the changing characteristics of web requests. Simulation results show an order of magnitude improvement over some existing techniques. We are currently working on developing methodologies to include meta-data related to web pages in our algorithm to further improve our approach. 7. References [BBM97] M. Baentsch, L. Baum, G. Molter, Enhancing the Web s infrastructure: From caching to Replication, IEEE Internet Computing, Vol. 1, No. 2, pp , Mar-Apr [BM98] M. Beck, T. Moore, The Internet2 Distributed Storage Infrastructure Project: An architecture for Internet content channels, Proc. Of 3 rd Workshop on WWW Caching, Manchester, England, June [CB97] M. E. Crovella and A. Bestavros, Self-Similarity in World Wide Web Traffic: Evidence and Possible Causes, IEEE/ACM Transactions on Networking Vol. 5, Number 6, pp , December [CCY99a] V. Cardellini, M. Colajanni, and P. Yu, DNS Dispatching Algorithms with State Estimators for Scalable Web-server Clusters, World Wide Web Journal, Baltzer Science, Vol. 2, No. 2, July [CCY99b] V. Cardellini, M. Colajanni, and P. Yu, Dynamic Load Balancing on Web-server Systems, IEEE Internet Computing, Vol. 3, No. 3, pp , May-June [CK01] K. G. Coffman and A. M. Odlyzko, Growth of the Internet: Preliminary research, available at See also Internet growth: Is there a "Moore's Law" for data traffic? Handbook of Massive Data Sets, J. Abello, P. M. Pardalos, and M. G. C. Resende, eds., Kluwer, [GB99] Grossglauser M. and J.-C. Bolot, On the Relevance of Long-Range Dependence in Network Traffic, IEEE/ACM Transactions on Networking, 7 (5), pp , October

16 [H91] J. Hertz, et al., Introduction to the Theory of Neural Computation, Lecture Notes, Vol. 1, Reading, MA: Addison-Wesley Publishing Co., [IC97] A. Iyengar and J. Challenger. Improving Web Server Performance by Caching Dynamic Data. In Proceedings of the USENIX Symposium on Internet Technologies and Systems, December [K89] T. Kohonen, Self-Organization and Associative Memory, 3 rd Verlag, ed. Berlin: Springer- [LT94] Leland, W.E., M. S. Taqqu, 1998 and Wilson, D. V., On the Self-Similar Nature of Ethernet traffic (Extended Version), IEEE/ACM Transactions on Networking, 2(1), February [LTWW94] W.E. Leland, M.S. Taqqy, W. Willinger, and D.V. Wilson, On the self-similar nature of Ethernet traffic (extended version), IEEE/ACM Transactions on Networking, 2(1);1-15, [MSE99] A. Modares, S. Somhom, and T. Enkawa, A self-organizing neural network for multiple traveling salesman and vehicle routing problems, Intl. Trans. In Op. Res. 6 (1999) pp [P92] Phoha V., Image Recovery and Segmentation Using Competitive Learning in a Computational Network, Ph.D. Dissertation 1992, Texas Tech University, Lubbock, Texas, [PF95] V. Paxson and S. Floyd, Wide-area traffic: The failure of Poisson modeling, IEEE/ACM Transactions on Networking, 3(3): , June [PO96] V. Phoha and W. J. B. Oldham, Image Restoration and Segmentation using Competitive Learning in a Layered Network, IEEE Transactions on Neural Networks, pp , Vol. 7, No. 4, July (See also V. V. Phoha and W. J. B. Oldham, Corrections to Image Restoration and Segmentation using Competitive Learning in a Layered Network IEEE Transactions on Neural Networks, Vol. 7, No. 6, November 1996.) [YY98] K. Yeung and T. Yum, Node Placement Optimization in ShuffleNets, IEEE/ACM Transactions on Networking, Vol. 6, No. 3, pp , June

How To Balance A Web Server With Remaining Capacity

How To Balance A Web Server With Remaining Capacity Remaining Capacity Based Load Balancing Architecture for Heterogeneous Web Server System Tsang-Long Pao Dept. Computer Science and Engineering Tatung University Taipei, ROC Jian-Bo Chen Dept. Computer

More information

Examining Self-Similarity Network Traffic intervals

Examining Self-Similarity Network Traffic intervals Examining Self-Similarity Network Traffic intervals Hengky Susanto Byung-Guk Kim Computer Science Department University of Massachusetts at Lowell {hsusanto, kim}@cs.uml.edu Abstract Many studies have

More information

A Task-Based Adaptive-TTL approach for Web Server Load Balancing *

A Task-Based Adaptive-TTL approach for Web Server Load Balancing * A Task-Based Adaptive-TTL approach for Web Server Load Balancing * Devarshi Chatterjee Zahir Tari RMIT University School of Computer Science and IT Melbourne, Australia zahirt@cs cs.rmit.edu.au * Supported

More information

Internet Traffic Variability (Long Range Dependency Effects) Dheeraj Reddy CS8803 Fall 2003

Internet Traffic Variability (Long Range Dependency Effects) Dheeraj Reddy CS8803 Fall 2003 Internet Traffic Variability (Long Range Dependency Effects) Dheeraj Reddy CS8803 Fall 2003 Self-similarity and its evolution in Computer Network Measurements Prior models used Poisson-like models Origins

More information

Protagonist International Journal of Management And Technology (PIJMT)

Protagonist International Journal of Management And Technology (PIJMT) Protagonist International Journal of Management And Technology (PIJMT) Online ISSN- 2394-3742 Vol 2 No 3 (May-2015) A Qualitative Approach To Design An Algorithm And Its Implementation For Dynamic Load

More information

Load balancing in a heterogeneous computer system by self-organizing Kohonen network

Load balancing in a heterogeneous computer system by self-organizing Kohonen network Bull. Nov. Comp. Center, Comp. Science, 25 (2006), 69 74 c 2006 NCC Publisher Load balancing in a heterogeneous computer system by self-organizing Kohonen network Mikhail S. Tarkov, Yakov S. Bezrukov Abstract.

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

SHIV SHAKTI International Journal of in Multidisciplinary and Academic Research (SSIJMAR) Vol. 4, No. 3, June 2015 (ISSN 2278 5973)

SHIV SHAKTI International Journal of in Multidisciplinary and Academic Research (SSIJMAR) Vol. 4, No. 3, June 2015 (ISSN 2278 5973) SHIV SHAKTI International Journal of in Multidisciplinary and Academic Research (SSIJMAR) Vol. 4, No. 3, June 2015 (ISSN 2278 5973) Dynamic Load Balancing In Web Server Systems Ms. Rashmi M.Tech. Scholar

More information

Scalability of web applications. CSCI 470: Web Science Keith Vertanen

Scalability of web applications. CSCI 470: Web Science Keith Vertanen Scalability of web applications CSCI 470: Web Science Keith Vertanen Scalability questions Overview What's important in order to build scalable web sites? High availability vs. load balancing Approaches

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

MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL

MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL MANAGING QUEUE STABILITY USING ART2 IN ACTIVE QUEUE MANAGEMENT FOR CONGESTION CONTROL G. Maria Priscilla 1 and C. P. Sumathi 2 1 S.N.R. Sons College (Autonomous), Coimbatore, India 2 SDNB Vaishnav College

More information

International Journal of Combined Research & Development (IJCRD ) eissn:2321-225x; pissn:2321-2241 Volume: 2; Issue: 5; May -2014

International Journal of Combined Research & Development (IJCRD ) eissn:2321-225x; pissn:2321-2241 Volume: 2; Issue: 5; May -2014 A REVIEW ON CONTENT AWARE LOAD BALANCING IN CLOUD WEB SERVERS Rajeev Kumar Student, CSE, Institute of Engg & Technology (IET) Alwar, Rajasthan Rajasthan Technical University, Kota, Rajasthan Email Id:

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

AN EFFICIENT LOAD BALANCING ALGORITHM FOR A DISTRIBUTED COMPUTER SYSTEM. Dr. T.Ravichandran, B.E (ECE), M.E(CSE), Ph.D., MISTE.,

AN EFFICIENT LOAD BALANCING ALGORITHM FOR A DISTRIBUTED COMPUTER SYSTEM. Dr. T.Ravichandran, B.E (ECE), M.E(CSE), Ph.D., MISTE., AN EFFICIENT LOAD BALANCING ALGORITHM FOR A DISTRIBUTED COMPUTER SYSTEM K.Kungumaraj, M.Sc., B.L.I.S., M.Phil., Research Scholar, Principal, Karpagam University, Hindusthan Institute of Technology, Coimbatore

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

Network Performance Measurement and Analysis

Network Performance Measurement and Analysis Network Performance Measurement and Analysis Outline Measurement Tools and Techniques Workload generation Analysis Basic statistics Queuing models Simulation CS 640 1 Measurement and Analysis Overview

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

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

Load Balancing of DNS-Based Distributed Web Server Systems with Page Caching

Load Balancing of DNS-Based Distributed Web Server Systems with Page Caching Load Balancing of DNS-Based Distributed Web Server Systems with Page Caching Zhong Xu Rong Huang Laxmi N. Bhuyan Department of Computer Science & Engineering University of California, Riverside, CA 9252,

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

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

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

Back-End Forwarding Scheme in Server Load Balancing using Client Virtualization

Back-End Forwarding Scheme in Server Load Balancing using Client Virtualization Back-End Forwarding Scheme in Server Load Balancing using Client Virtualization Shreyansh Kumar School of Computing Science and Engineering VIT University Chennai Campus Parvathi.R, Ph.D Associate Professor-

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

bbc Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO CONTENTS

bbc Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO CONTENTS TECHNICAL ARTICLE Adobe LiveCycle Data Services Using the F5 BIG-IP LTM Introduction APPLIES TO Adobe LiveCycle Enterprise Suite CONTENTS Introduction................................. 1 Edge server architecture......................

More information

Observingtheeffectof TCP congestion controlon networktraffic

Observingtheeffectof TCP congestion controlon networktraffic Observingtheeffectof TCP congestion controlon networktraffic YongminChoi 1 andjohna.silvester ElectricalEngineering-SystemsDept. UniversityofSouthernCalifornia LosAngeles,CA90089-2565 {yongminc,silvester}@usc.edu

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

OPTIMIZATION OF WEB SERVER THROUGH A DOMAIN NAME SYSTEM APPROACH

OPTIMIZATION OF WEB SERVER THROUGH A DOMAIN NAME SYSTEM APPROACH International Journal of Scientific & Engineering Research Volume 3, Issue 5, May-2012 1 OPTIMIZATION OF WEB SERVER THROUGH A DOMAIN NAME SYSTEM APPROACH Dr varaprasad.s..kondapalli 1 1 Director&principal,G.H.

More information

Real-Time Analysis of CDN in an Academic Institute: A Simulation Study

Real-Time Analysis of CDN in an Academic Institute: A Simulation Study Journal of Algorithms & Computational Technology Vol. 6 No. 3 483 Real-Time Analysis of CDN in an Academic Institute: A Simulation Study N. Ramachandran * and P. Sivaprakasam + *Indian Institute of Management

More information

CS514: Intermediate Course in Computer Systems

CS514: Intermediate Course in Computer Systems : Intermediate Course in Computer Systems Lecture 7: Sept. 19, 2003 Load Balancing Options Sources Lots of graphics and product description courtesy F5 website (www.f5.com) I believe F5 is market leader

More information

ON THE FRACTAL CHARACTERISTICS OF NETWORK TRAFFIC AND ITS UTILIZATION IN COVERT COMMUNICATIONS

ON THE FRACTAL CHARACTERISTICS OF NETWORK TRAFFIC AND ITS UTILIZATION IN COVERT COMMUNICATIONS ON THE FRACTAL CHARACTERISTICS OF NETWORK TRAFFIC AND ITS UTILIZATION IN COVERT COMMUNICATIONS Rashiq R. Marie Department of Computer Science email: R.R.Marie@lboro.ac.uk Helmut E. Bez Department of Computer

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

Lecture 3: Scaling by Load Balancing 1. Comments on reviews i. 2. Topic 1: Scalability a. QUESTION: What are problems? i. These papers look at

Lecture 3: Scaling by Load Balancing 1. Comments on reviews i. 2. Topic 1: Scalability a. QUESTION: What are problems? i. These papers look at Lecture 3: Scaling by Load Balancing 1. Comments on reviews i. 2. Topic 1: Scalability a. QUESTION: What are problems? i. These papers look at distributing load b. QUESTION: What is the context? i. How

More information

FortiBalancer: Global Server Load Balancing WHITE PAPER

FortiBalancer: Global Server Load Balancing WHITE PAPER FortiBalancer: Global Server Load Balancing WHITE PAPER FORTINET FortiBalancer: Global Server Load Balancing PAGE 2 Introduction Scalability, high availability and performance are critical to the success

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

Building a Highly Available and Scalable Web Farm

Building a Highly Available and Scalable Web Farm Page 1 of 10 MSDN Home > MSDN Library > Deployment Rate this page: 10 users 4.9 out of 5 Building a Highly Available and Scalable Web Farm Duwamish Online Paul Johns and Aaron Ching Microsoft Developer

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

Web Cluster Dynamic Load Balancing- GA Approach

Web Cluster Dynamic Load Balancing- GA Approach Web Cluster Dynamic Load Balancing- GA Approach Chin Wen Cheong FOSEE, MultiMedia University 7545 Buit Beruang Malacca, Malaysia wcchin@mmu.edu.my Amy Lim Hui Lan Faculty of Information Technology MultiMedia

More information

Load Balancing Web Applications

Load Balancing Web Applications Mon Jan 26 2004 18:14:15 America/New_York Published on The O'Reilly Network (http://www.oreillynet.com/) http://www.oreillynet.com/pub/a/onjava/2001/09/26/load.html See this if you're having trouble printing

More information

Self Organizing Maps: Fundamentals

Self Organizing Maps: Fundamentals Self Organizing Maps: Fundamentals Introduction to Neural Networks : Lecture 16 John A. Bullinaria, 2004 1. What is a Self Organizing Map? 2. Topographic Maps 3. Setting up a Self Organizing Map 4. Kohonen

More information

Network (Tree) Topology Inference Based on Prüfer Sequence

Network (Tree) Topology Inference Based on Prüfer Sequence Network (Tree) Topology Inference Based on Prüfer Sequence C. Vanniarajan and Kamala Krithivasan Department of Computer Science and Engineering Indian Institute of Technology Madras Chennai 600036 vanniarajanc@hcl.in,

More information

Public Cloud Partition Balancing and the Game Theory

Public Cloud Partition Balancing and the Game Theory Statistics Analysis for Cloud Partitioning using Load Balancing Model in Public Cloud V. DIVYASRI 1, M.THANIGAVEL 2, T. SUJILATHA 3 1, 2 M. Tech (CSE) GKCE, SULLURPETA, INDIA v.sridivya91@gmail.com thaniga10.m@gmail.com

More information

Training a Self-Organizing distributed on a PVM network

Training a Self-Organizing distributed on a PVM network Training a Self-Organizing Map distributed on a PVM network Nuno Bandeira Dep.Informatics, New University of Lisbon, Quinta da Torre 85 MONTE DA CAPARICA, PORTUGAL nb@di.fct.unl.pt Victor Jose Lobo Fernando

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

S y s t e m A r c h i t e c t u r e

S y s t e m A r c h i t e c t u r e S y s t e m A r c h i t e c t u r e V e r s i o n 5. 0 Page 1 Enterprise etime automates and streamlines the management, collection, and distribution of employee hours, and eliminates the use of manual

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

Figure 1. The cloud scales: Amazon EC2 growth [2].

Figure 1. The cloud scales: Amazon EC2 growth [2]. - Chung-Cheng Li and Kuochen Wang Department of Computer Science National Chiao Tung University Hsinchu, Taiwan 300 shinji10343@hotmail.com, kwang@cs.nctu.edu.tw Abstract One of the most important issues

More information

Self Reconfigurable Distributed Load Balancing For Secure and Privacy-Preserving Information Brokering.

Self Reconfigurable Distributed Load Balancing For Secure and Privacy-Preserving Information Brokering. Self Reconfigurable Distributed Load Balancing For Secure and Privacy-Preserving Information Brokering. Jyoti More. ME student, Dept of Computer Engg G.H.Raisoni College of Engineering, Savitribai Phule

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

Object Request Reduction in Home Nodes and Load Balancing of Object Request in Hybrid Decentralized Web Caching

Object Request Reduction in Home Nodes and Load Balancing of Object Request in Hybrid Decentralized Web Caching 2012 2 nd International Conference on Information Communication and Management (ICICM 2012) IPCSIT vol. 55 (2012) (2012) IACSIT Press, Singapore DOI: 10.7763/IPCSIT.2012.V55.5 Object Request Reduction

More information

EVALUATION OF LOAD BALANCING ALGORITHMS AND INTERNET TRAFFIC MODELING FOR PERFORMANCE ANALYSIS. Arthur L. Blais

EVALUATION OF LOAD BALANCING ALGORITHMS AND INTERNET TRAFFIC MODELING FOR PERFORMANCE ANALYSIS. Arthur L. Blais EVALUATION OF LOAD BALANCING ALGORITHMS AND INTERNET TRAFFIC MODELING FOR PERFORMANCE ANALYSIS by Arthur L. Blais B.A., California State University, Fullerton, 1982 A thesis submitted to the Graduate Faculty

More information

LOAD BALANCING MECHANISMS IN DATA CENTER NETWORKS

LOAD BALANCING MECHANISMS IN DATA CENTER NETWORKS LOAD BALANCING Load Balancing Mechanisms in Data Center Networks Load balancing vs. distributed rate limiting: an unifying framework for cloud control Load Balancing for Internet Distributed Services using

More information

MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM?

MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? MEASURING WORKLOAD PERFORMANCE IS THE INFRASTRUCTURE A PROBLEM? Ashutosh Shinde Performance Architect ashutosh_shinde@hotmail.com Validating if the workload generated by the load generating tools is applied

More information

Oracle Collaboration Suite

Oracle Collaboration Suite Oracle Collaboration Suite Firewall and Load Balancer Architecture Release 2 (9.0.4) Part No. B15609-01 November 2004 This document discusses the use of firewall and load balancer components with Oracle

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

5 Performance Management for Web Services. Rolf Stadler School of Electrical Engineering KTH Royal Institute of Technology. stadler@ee.kth.

5 Performance Management for Web Services. Rolf Stadler School of Electrical Engineering KTH Royal Institute of Technology. stadler@ee.kth. 5 Performance Management for Web Services Rolf Stadler School of Electrical Engineering KTH Royal Institute of Technology stadler@ee.kth.se April 2008 Overview Service Management Performance Mgt QoS Mgt

More information

Server Traffic Management. Jeff Chase Duke University, Department of Computer Science CPS 212: Distributed Information Systems

Server Traffic Management. Jeff Chase Duke University, Department of Computer Science CPS 212: Distributed Information Systems Server Traffic Management Jeff Chase Duke University, Department of Computer Science CPS 212: Distributed Information Systems The Server Selection Problem server array A server farm B Which server? Which

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

Content-Aware Load Balancing using Direct Routing for VOD Streaming Service

Content-Aware Load Balancing using Direct Routing for VOD Streaming Service Content-Aware Load Balancing using Direct Routing for VOD Streaming Service Young-Hwan Woo, Jin-Wook Chung, Seok-soo Kim Dept. of Computer & Information System, Geo-chang Provincial College, Korea School

More information

2.2 SIP-based Load Balancing. 3 SIP Load Balancing. 3.1 Proposed Load Balancing Solution. 2 Background Research. 2.1 HTTP-based Load Balancing

2.2 SIP-based Load Balancing. 3 SIP Load Balancing. 3.1 Proposed Load Balancing Solution. 2 Background Research. 2.1 HTTP-based Load Balancing SIP TRAFFIC LOAD BALANCING Ramy Farha School of Electrical and Computer Engineering University of Toronto Toronto, Ontario Email: rfarha@comm.utoronto.ca ABSTRACT This paper presents a novel solution to

More information

Design Issues in a Bare PC Web Server

Design Issues in a Bare PC Web Server Design Issues in a Bare PC Web Server Long He, Ramesh K. Karne, Alexander L. Wijesinha, Sandeep Girumala, and Gholam H. Khaksari Department of Computer & Information Sciences, Towson University, 78 York

More information

Load Balancing on a Non-dedicated Heterogeneous Network of Workstations

Load Balancing on a Non-dedicated Heterogeneous Network of Workstations Load Balancing on a Non-dedicated Heterogeneous Network of Workstations Dr. Maurice Eggen Nathan Franklin Department of Computer Science Trinity University San Antonio, Texas 78212 Dr. Roger Eggen Department

More information

Stabilization by Conceptual Duplication in Adaptive Resonance Theory

Stabilization by Conceptual Duplication in Adaptive Resonance Theory Stabilization by Conceptual Duplication in Adaptive Resonance Theory Louis Massey Royal Military College of Canada Department of Mathematics and Computer Science PO Box 17000 Station Forces Kingston, Ontario,

More information

SiteCelerate white paper

SiteCelerate white paper SiteCelerate white paper Arahe Solutions SITECELERATE OVERVIEW As enterprises increases their investment in Web applications, Portal and websites and as usage of these applications increase, performance

More information

Globule: a Platform for Self-Replicating Web Documents

Globule: a Platform for Self-Replicating Web Documents Globule: a Platform for Self-Replicating Web Documents Guillaume Pierre Maarten van Steen Vrije Universiteit, Amsterdam Internal report IR-483 January 2001 Abstract Replicating Web documents at a worldwide

More information

G.Vijaya kumar et al, Int. J. Comp. Tech. Appl., Vol 2 (5), 1413-1418

G.Vijaya kumar et al, Int. J. Comp. Tech. Appl., Vol 2 (5), 1413-1418 An Analytical Model to evaluate the Approaches of Mobility Management 1 G.Vijaya Kumar, *2 A.Lakshman Rao *1 M.Tech (CSE Student), Pragati Engineering College, Kakinada, India. Vijay9908914010@gmail.com

More information

Web Application Hosting Cloud Architecture

Web Application Hosting Cloud Architecture Web Application Hosting Cloud Architecture Executive Overview This paper describes vendor neutral best practices for hosting web applications using cloud computing. The architectural elements described

More information

DATA COMMUNICATOIN NETWORKING

DATA COMMUNICATOIN NETWORKING DATA COMMUNICATOIN NETWORKING Instructor: Ouldooz Baghban Karimi Course Book: Computer Networking, A Top-Down Approach, Kurose, Ross Slides: - Course book Slides - Slides from Princeton University COS461

More information

Chapter 2 TOPOLOGY SELECTION. SYS-ED/ Computer Education Techniques, Inc.

Chapter 2 TOPOLOGY SELECTION. SYS-ED/ Computer Education Techniques, Inc. Chapter 2 TOPOLOGY SELECTION SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Topology selection criteria. Perform a comparison of topology selection criteria. WebSphere component

More information

ABSTRACT. KEYWORDS: Cloud Computing, Load Balancing, Scheduling Algorithms, FCFS, Group-Based Scheduling Algorithm

ABSTRACT. KEYWORDS: Cloud Computing, Load Balancing, Scheduling Algorithms, FCFS, Group-Based Scheduling Algorithm A REVIEW OF THE LOAD BALANCING TECHNIQUES AT CLOUD SERVER Kiran Bala, Sahil Vashist, Rajwinder Singh, Gagandeep Singh Department of Computer Science & Engineering, Chandigarh Engineering College, Landran(Pb),

More information

APPENDIX 1 USER LEVEL IMPLEMENTATION OF PPATPAN IN LINUX SYSTEM

APPENDIX 1 USER LEVEL IMPLEMENTATION OF PPATPAN IN LINUX SYSTEM 152 APPENDIX 1 USER LEVEL IMPLEMENTATION OF PPATPAN IN LINUX SYSTEM A1.1 INTRODUCTION PPATPAN is implemented in a test bed with five Linux system arranged in a multihop topology. The system is implemented

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

Performance Comparison of Server Load Distribution with FTP and HTTP

Performance Comparison of Server Load Distribution with FTP and HTTP Performance Comparison of Server Load Distribution with FTP and HTTP Yogesh Chauhan Assistant Professor HCTM Technical Campus, Kaithal Shilpa Chauhan Research Scholar University Institute of Engg & Tech,

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

Request Routing, Load-Balancing and Fault- Tolerance Solution - MediaDNS

Request Routing, Load-Balancing and Fault- Tolerance Solution - MediaDNS White paper Request Routing, Load-Balancing and Fault- Tolerance Solution - MediaDNS June 2001 Response in Global Environment Simply by connecting to the Internet, local businesses transform themselves

More information

Global Server Load Balancing

Global Server Load Balancing White Paper Global Server Load Balancing APV Series Application Delivery Controllers May 2011 Global Server Load Balancing Access. Security. Delivery. Introduction Scalability, high availability and performance

More information

Efficient Parallel Distributed Load Balancing in Content Delivery Networks

Efficient Parallel Distributed Load Balancing in Content Delivery Networks Efficient Parallel Distributed Load Balancing in Content Delivery Networks P.Jyothi*1, N.Rajesh*2, K.Ramesh Babu*3 M.Tech Scholar, Dept of CSE, MRECW, Maisammaguda, Secunderabad, Telangana State, India,

More information

Recommendations for Performance Benchmarking

Recommendations for Performance Benchmarking Recommendations for Performance Benchmarking Shikhar Puri Abstract Performance benchmarking of applications is increasingly becoming essential before deployment. This paper covers recommendations and best

More information

Introduction to DISC and Hadoop

Introduction to DISC and Hadoop Introduction to DISC and Hadoop Alice E. Fischer April 24, 2009 Alice E. Fischer DISC... 1/20 1 2 History Hadoop provides a three-layer paradigm Alice E. Fischer DISC... 2/20 Parallel Computing Past and

More information

Statistics Analysis for Cloud Partitioning using Load Balancing Model in Public Cloud

Statistics Analysis for Cloud Partitioning using Load Balancing Model in Public Cloud Statistics Analysis for Cloud Partitioning using Load Balancing Model in Public Cloud 1 V.DIVYASRI, M.Tech (CSE) GKCE, SULLURPETA, v.sridivya91@gmail.com 2 T.SUJILATHA, M.Tech CSE, ASSOCIATE PROFESSOR

More information

Titolo del paragrafo. Titolo del documento - Sottotitolo documento The Benefits of Pushing Real-Time Market Data via a Web Infrastructure

Titolo del paragrafo. Titolo del documento - Sottotitolo documento The Benefits of Pushing Real-Time Market Data via a Web Infrastructure 1 Alessandro Alinone Agenda Introduction Push Technology: definition, typology, history, early failures Lightstreamer: 3rd Generation architecture, true-push Client-side push technology (Browser client,

More information

NOVEL PRIORITISED EGPRS MEDIUM ACCESS REGIME FOR REDUCED FILE TRANSFER DELAY DURING CONGESTED PERIODS

NOVEL PRIORITISED EGPRS MEDIUM ACCESS REGIME FOR REDUCED FILE TRANSFER DELAY DURING CONGESTED PERIODS NOVEL PRIORITISED EGPRS MEDIUM ACCESS REGIME FOR REDUCED FILE TRANSFER DELAY DURING CONGESTED PERIODS D. Todinca, P. Perry and J. Murphy Dublin City University, Ireland ABSTRACT The goal of this paper

More information

Agenda. Distributed System Structures. Why Distributed Systems? Motivation

Agenda. Distributed System Structures. Why Distributed Systems? Motivation Agenda Distributed System Structures CSCI 444/544 Operating Systems Fall 2008 Motivation Network structure Fundamental network services Sockets and ports Client/server model Remote Procedure Call (RPC)

More information

A Study of Web Log Analysis Using Clustering Techniques

A Study of Web Log Analysis Using Clustering Techniques A Study of Web Log Analysis Using Clustering Techniques Hemanshu Rana 1, Mayank Patel 2 Assistant Professor, Dept of CSE, M.G Institute of Technical Education, Gujarat India 1 Assistant Professor, Dept

More information

Topics. 1. What is load balancing? 2. Load balancing techniques 3. Load balancing strategies 4. Sessions 5. Elastic load balancing

Topics. 1. What is load balancing? 2. Load balancing techniques 3. Load balancing strategies 4. Sessions 5. Elastic load balancing Load Balancing Topics 1. What is load balancing? 2. Load balancing techniques 3. Load balancing strategies 4. Sessions 5. Elastic load balancing What is load balancing? load balancing is a technique to

More information

CROSS LAYER BASED MULTIPATH ROUTING FOR LOAD BALANCING

CROSS LAYER BASED MULTIPATH ROUTING FOR LOAD BALANCING CHAPTER 6 CROSS LAYER BASED MULTIPATH ROUTING FOR LOAD BALANCING 6.1 INTRODUCTION The technical challenges in WMNs are load balancing, optimal routing, fairness, network auto-configuration and mobility

More information

CS 188/219. Scalable Internet Services Andrew Mutz October 8, 2015

CS 188/219. Scalable Internet Services Andrew Mutz October 8, 2015 CS 188/219 Scalable Internet Services Andrew Mutz October 8, 2015 For Today About PTEs Empty spots were given out If more spots open up, I will issue more PTEs You must have a group by today. More detail

More information

International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 4, July-Aug 2014

International Journal of Computer Science Trends and Technology (IJCST) Volume 2 Issue 4, July-Aug 2014 RESEARCH ARTICLE An Efficient Service Broker Policy for Cloud Computing Environment Kunal Kishor 1, Vivek Thapar 2 Research Scholar 1, Assistant Professor 2 Department of Computer Science and Engineering,

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

CHAPTER 5 WLDMA: A NEW LOAD BALANCING STRATEGY FOR WAN ENVIRONMENT

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

More information

Fuzzy Active Queue Management for Assured Forwarding Traffic in Differentiated Services Network

Fuzzy Active Queue Management for Assured Forwarding Traffic in Differentiated Services Network Fuzzy Active Management for Assured Forwarding Traffic in Differentiated Services Network E.S. Ng, K.K. Phang, T.C. Ling, L.Y. Por Department of Computer Systems & Technology Faculty of Computer Science

More information

A Survey on Load Balancing and Scheduling in Cloud Computing

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

More information

QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES

QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES QUALITY OF SERVICE METRICS FOR DATA TRANSMISSION IN MESH TOPOLOGIES SWATHI NANDURI * ZAHOOR-UL-HUQ * Master of Technology, Associate Professor, G. Pulla Reddy Engineering College, G. Pulla Reddy Engineering

More information

LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS

LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS LOAD BALANCING TECHNIQUES FOR RELEASE 11i AND RELEASE 12 E-BUSINESS ENVIRONMENTS Venkat Perumal IT Convergence Introduction Any application server based on a certain CPU, memory and other configurations

More information

A Dynamic Load Balancing Algorithm For Web Applications

A Dynamic Load Balancing Algorithm For Web Applications Computing For Nation Development, February 25 26, 2010 Bharati Vidyapeeth s Institute of Computer Applications and Management, New Delhi A Dynamic Load Balancing Algorithm For Web Applications 1 Sameena

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

Distribution transparency. Degree of transparency. Openness of distributed systems

Distribution transparency. Degree of transparency. Openness of distributed systems Distributed Systems Principles and Paradigms Maarten van Steen VU Amsterdam, Dept. Computer Science steen@cs.vu.nl Chapter 01: Version: August 27, 2012 1 / 28 Distributed System: Definition A distributed

More information

Cost Effective Automated Scaling of Web Applications for Multi Cloud Services

Cost Effective Automated Scaling of Web Applications for Multi Cloud Services Cost Effective Automated Scaling of Web Applications for Multi Cloud Services SANTHOSH.A 1, D.VINOTHA 2, BOOPATHY.P 3 1,2,3 Computer Science and Engineering PRIST University India Abstract - Resource allocation

More information

How To Run A Web Farm On Linux (Ahem) On A Single Computer (For Free) On Your Computer (With A Freebie) On An Ipv4 (For Cheap) Or Ipv2 (For A Free) (For

How To Run A Web Farm On Linux (Ahem) On A Single Computer (For Free) On Your Computer (With A Freebie) On An Ipv4 (For Cheap) Or Ipv2 (For A Free) (For Creating Web Farms with Linux (Linux High Availability and Scalability) Horms (Simon Horman) horms@verge.net.au October 2000 http://verge.net.au/linux/has/ http://ultramonkey.sourceforge.net/ Introduction:

More information

Avaya P333R-LB. Load Balancing Stackable Switch. Load Balancing Application Guide

Avaya P333R-LB. Load Balancing Stackable Switch. Load Balancing Application Guide Load Balancing Stackable Switch Load Balancing Application Guide May 2001 Table of Contents: Section 1: Introduction Section 2: Application 1 Server Load Balancing Section 3: Application 2 Firewall Load

More information