Modeling 3-Tiered Web Services

Total Page:16

File Type:pdf, Size:1020Kb

Modeling 3-Tiered Web Services Modeling 3-Tiered Web Services Xue Liu Jin Heo Lui Sha University of Illinois at University of Illinois at University of Illinois at Urbana-Champaign Urbana-Champaign Urbana-Champaign [email protected] [email protected] [email protected] Abstract In addition to capacity planning, a simple yet accurate model of Web services is also instrumental The rapid advancement and deployment of Web for other purposes such as overload control [5, 6] or services call for a precise yet simple model for resource provisioning [7-9]. Overload control and capacity planning and analysis purposes. The most performance management are research areas on their widely deployed Web services architecture is the 3- own, but their effectiveness are based on the tiered system, which is composed of a front-end Web accuracy of good performance models. server, an application server and a backend database Most of the existing work of Web services server. In this paper, we present an analytical model performance modeling is confined to the front-end of the 3-tiered Web services architecture. We show Web server. Wells et al. [10] made a performance by using queueing network theory, we can model the analysis of Web servers using colored Petri nets. 3-tiered Web services architecture accurately. A Their model is divided into three layers, where each testbed is built to measure model parameters based layer models a certain aspect of the system. The on industry standard server components and TPC-W model has several parameters, some of which are benchmark. Validation results show the proposed known and the remaining unknown parameters are model predicts performance measures such as determined by simulations. Dilley et al. [11] used a response time and throughput accurately. layered queuing model for analysis of Web server. Recently, Cao et al. [12] provides a MG//1/ K 1. Introduction and Related Work processor sharing queue model for Web server which assumes Poisson arrival, general service time and As E-Commerce is keeping rapid pace of growth bounded accepted request number of K . An [1], the underlying architecture providing the service improved version is given in [13] using Markov of E-Commerce is becoming more and more Modulated Poisson Process (MMPP) to model bursty important. The architecture is generally called as arrival. Cherkasova and Phaal [14] used a similar “Web services”. The term “Web services” describes model to that in [12] but assumed deterministic specific business functionality exposed by a company service time distribution and session-based workload. through Internet connection, for the purpose of Few work has been done to model the integrated providing a way for another entity to use the services Web services architecture. In [15], Karma et al. use it provides [2]. Web services are the building blocks an abstraction of M/G/1 processor sharing queue to for the future generation of applications and solutions represent the whole 3-tiered architecture. This is in on Internet. essence a single tier modeling for the bottlenecked One of the most pressing problems faced by Web server in the Web services architecture. Doyle et al. services designers and deployment companies is the [7] presents a simplified analytical model to predict adequate sizing of their infrastructure so that they can the response time of Web services. Their model is a provide the quality-of-service (QoS) required by their combination model of server CPU and storage I/O. clients. This is known as the capacity planning Still, the model only applies to single tier and is valid problem. As Web keeps evolving, it is critical for a only for static content requests. service provider to provide service level assurances In this paper, we propose a new and effective and agreements to its customers. A validated model model of the 3-tiered Web services architecture. The of Web services architecture is the basis of capacity model provides a quantitative way to analyze the performance in different settings [3, 4]. effectiveness of the Web services. In contrast to most of the previous work, which has only addressed one tier or much simpler workload (static content), our All the business logic for a Web site resides in the approach is fundamentally concerned with multi- 2nd tier -- application server. Application server tiered Web sites that include dynamic content and receives requests from Web server, looks up back-end databases. As a result, the proposed model information in database (3rd tier) and processes the provides higher accuracy yet still remains simple. A information. The processed information is then simple model is important in performance modeling passed back to the Web server where it is formatted because it renders a smaller parameter space thus to be displayed on clients’ machines. Typical easier to estimate; while a complicated model usually application server includes Apache Tomcat, Sun Java contains parameters that are difficult to obtain and System Application Server, BEA WebLogic, IBM validate. Hence a simple model tends to be more WebSphere, and JBOSS. useful in real-world applications [4]. The 3rd tier -- database server is the storehouse of The rest of the paper is organized as follows. a Web site's information. Everything from user Section 2 provides the background of Web services accounts and catalogs to reports and customer orders architecture. In Section 3, we first give an individual is stored in database. Typical database server used in model of each tier in the Web services architecture, Web services architecture includes Oracle, Microsoft then the analytical model of 3-tiered Web services is SQL Server, Sybase, IBM DB2, MySQL, and presented. Solution techniques for the proposed PostgreSQL. model are discussed in Section 4. The design and We built a testbed to emulate an online Web implementation of our Web services testbed are services provider in our Lab. The front-end is using discussed in Section 5. We present the validation Apache Web server [18], application server is procedure and results of the proposed model in running Tomcat [19], and the backend database is Section 6. Finally, we conclude the paper with running MySQL [20]. The reasons that we select this directions of future work in Section 7. combination are: 1) all of them are open source projects and freely available; 2) their performances 2. Background are among the highest of all individual components; 3) they are widely used on the Internet, even in Modern Web services providers use a multi-tiered commercial sites such as Amazon.com, Mp3.com and architecture to provide required services. While some Yahoo Finance to provide Web services. Hence this Web applications use two tiers—Web server and combination is quite representative to the current database server—high volume sites typically add a technology. It is worth noting that the analytical third tier: application server to support complex model proposed in this paper (Section 3) does not business logic. As a consequence, the most widely depend on this specific combination and is general deployed infrastructure of Web services is the 3- enough for modeling other Web services tiered architecture which is shown in Figure 1. This deployments. 3-tiered architecture provides both high level of scalability and reliability [16, 17]. 3. Modeling of 3-Tiered Web Services Architecture Client In this section, we present an analytical model for Client Database the 3-tiered Web services architecture. We use the Web Application Server Server Server typical deployment consisting of Apache, Tomcat Client and MySQL discussed above for better explanation Figure 1. 3-Tiered Web services architecture and understanding of the intuitions behind the analytical model. In other Web services deployments, In this 3-tiered architecture, on the front line of a individual tier’s architecture is similar; hence the typical Web site is the Web server that acts as the proposed model can be easily applied to other set-ups presentation layer. This tier has three functionalities: with little modification. (1) Web server receives requests from the clients, service static Web requests; (2) at the same time 3.1. Web Server Architecture and Modeling forwards complex dynamic content requests to the 2nd tier; (3) receives responses from the 2nd tier and Modern Web server typically utilizes a multi- sends them back to the clients. Typical Web server threaded (or multi-process) architecture. It is includes Apache and Microsoft Internet Information structured as a pool of worker threads to handle Server (IIS). HTTP requests. Apache [18] has been the most popular Web services for security and state maintenance, along server on the Internet. The February 2005 Netcraft with data access and persistence support. Web Server Survey [21] shows that 68.8% of the Application server typically consists of Servlet Web sites on the Internet use Apache, which makes it Engine and EJB (Enterprise Java Beans) container. the dominant Web server deployed. Servlet Engine is a place to execute Java Servlets, a basic building block of Web applications. EJB Clients container is the environment that Java beans will Clients execute in, and EJB container will manage transactions, thread pools, and connection pools. + Tomcat [19] is a servlet engine that is used in the AJPv13 official reference implementation for the Java Servlet HTTP and Java Server Pages (JSP) technologies [22]. MaxClients Unlike commercial Web application servers, Tomcat New conn TCP is not an EJB container but only a servlet engine. Accept queue This means it supports servlets and plain Java objects Apache mod_jk nd Tomcat but not EJBs. Here, we use Tomcat for the 2 tier in our testbed, since it is easy to configure and deploy Figure 2. Apache multi-threaded architecture applications. The functionalities such as transaction The flow of servicing a HTTP request in Apache management which are usually provided by EJB (version 1.3.x and version 2.x) is displayed in Figure container are implemented in the application level in 2.
Recommended publications
  • List of NMAP Scripts Use with the Nmap –Script Option
    List of NMAP Scripts Use with the nmap –script option Retrieves information from a listening acarsd daemon. Acarsd decodes ACARS (Aircraft Communication Addressing and Reporting System) data in real time. The information retrieved acarsd-info by this script includes the daemon version, API version, administrator e-mail address and listening frequency. Shows extra information about IPv6 addresses, such as address-info embedded MAC or IPv4 addresses when available. Performs password guessing against Apple Filing Protocol afp-brute (AFP). Attempts to get useful information about files from AFP afp-ls volumes. The output is intended to resemble the output of ls. Detects the Mac OS X AFP directory traversal vulnerability, afp-path-vuln CVE-2010-0533. Shows AFP server information. This information includes the server's hostname, IPv4 and IPv6 addresses, and hardware type afp-serverinfo (for example Macmini or MacBookPro). Shows AFP shares and ACLs. afp-showmount Retrieves the authentication scheme and realm of an AJP service ajp-auth (Apache JServ Protocol) that requires authentication. Performs brute force passwords auditing against the Apache JServ protocol. The Apache JServ Protocol is commonly used by ajp-brute web servers to communicate with back-end Java application server containers. Performs a HEAD or GET request against either the root directory or any optional directory of an Apache JServ Protocol ajp-headers server and returns the server response headers. Discovers which options are supported by the AJP (Apache JServ Protocol) server by sending an OPTIONS request and lists ajp-methods potentially risky methods. ajp-request Requests a URI over the Apache JServ Protocol and displays the result (or stores it in a file).
    [Show full text]
  • Development Production Line the Short Story
    Development Production Line The Short Story Jene Jasper Copyright © 2007-2018 freedumbytes.dev.net (Free Dumb Bytes) Published 3 July 2018 4.0-beta Edition While every precaution has been taken in the preparation of this installation manual, the publisher and author assume no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. To get an idea of the Development Production Line take a look at the following Application Integration overview and Maven vs SonarQube Quality Assurance reports comparison. 1. Operating System ......................................................................................................... 1 1.1. Windows ........................................................................................................... 1 1.1.1. Resources ................................................................................................ 1 1.1.2. Desktop .................................................................................................. 1 1.1.3. Explorer .................................................................................................. 1 1.1.4. Windows 7 Start Menu ................................................................................ 2 1.1.5. Task Manager replacement ........................................................................... 3 1.1.6. Resource Monitor .....................................................................................
    [Show full text]
  • Oracle Internet Application Server 8I
    Oracle Internet Application Server 8i Migrating from Oracle Application Server Release 1.0 June, 2000 Part No. A83709-01 Oracle Internet Application Server Migrating from Oracle Application Server, Release 1.0 Part No. A83709-01 Copyright © 2000, Oracle Corporation. All rights reserved. The Programs (which include both the software and documentation) contain proprietary information of Oracle Corporation; they are provided under a license agreement containing restrictions on use and disclosure and are also protected by copyright, patent, and other intellectual and industrial property laws. Reverse engineering, disassembly, or decompilation of the Programs is prohibited. The information contained in this document is subject to change without notice. If you find any problems in the documentation, please report them to us in writing. Oracle Corporation does not warrant that this document is error free. Except as may be expressly permitted in your license agreement for these Programs, no part of these Programs may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose, without the express written permission of Oracle Corporation. If the Programs are delivered to the U.S. Government or anyone licensing or using the programs on behalf of the U.S. Government, the following notice is applicable: Restricted Rights Notice Programs delivered subject to the DOD FAR Supplement are "commercial computer software" and use, duplication, and disclosure of the Programs, including documentation, shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement. Otherwise, Programs delivered subject to the Federal Acquisition Regulations are "restricted computer software" and use, duplication, and disclosure of the Programs shall be subject to the restrictions in FAR 52.227-19, Commercial Computer Software - Restricted Rights (June, 1987).
    [Show full text]
  • Final-Thesis.Pdf (1.648Mb)
    VYSOKÉ UČENÍ TECHNICKÉ V BRNĚ BRNO UNIVERSITY OF TECHNOLOGY FAKULTA INFORMAČNÍCH TECHNOLOGIÍ FACULTY OF INFORMATION TECHNOLOGY ÚSTAV INTELIGENTNÍCH SYSTÉMŮ DEPARTMENT OF INTELLIGENT SYSTEMS ZPŘÍSTUPNĚNÍ OBRAZU Z IP KAMER V PROHLÍŽEČI WEB BROWSER FOR IP CAMERAS BAKALÁŘSKÁ PRÁCE BACHELOR’S THESIS AUTOR PRÁCE PAVEL ČERNÝ AUTHOR VEDOUCÍ PRÁCE doc. Ing. FRANTIŠEK ZBOŘIL, Ph.D. SUPERVISOR BRNO 2020 Vysoké učení technické v Brně Fakulta informačních technologií Ústav inteligentních systémů (UITS) Akademický rok 2019/2020 Zadání bakalářské práce Student: Černý Pavel Program: Informační technologie Název: Zpřístupnění obrazu z IP kamer v prohlížeči Web Browser for IP Cameras Kategorie: Umělá inteligence Zadání: 1. Prozkoumejte způsob přenosu obrazu z IP kamer a možnosti přenosu a zobrazení obrazu (videa) do webových prohlížečů. Věnujte pozornost možnostem HTML5 (např. použití tagu <video>). Seznamte se s problematikou používaných kodeků. 2. Na základě průzkumu navrhněte systém, který bude umožňovat především zobrazit živý obraz z kamer, včetně jednoduchého administračního rozhraní (správa kamer a přístupových práv uživatelů). 3. Systém implementujte pomocí vhodných programovacích jazyků. Použijte volně dostupné knihovny a programy (licencované pod GNU GPL, Apache a podobně). Webové rozhraní nechť je funkční v aktuálních verzích nejrozšířenějších prohlížečů (Firefox, Chrome, MS Edge). 4. Zhodnoťte dosažený výsledek a navrhněte možnosti dalšího vývoje. Literatura: Russel, S., Norvig, P.: Artificial Intelligence, A Modern Approach, Pearson, 2009 Podrobné
    [Show full text]
  • Hyperion System 9 Products
    HYPERION® SYSTEM™ 9 RELEASE 9.2.0.3 CONFIGURING HYPERION® SYSTEM™ 9 IN SSL-ENABLED ENVIRONMENTS CONTENTS IN BRIEF About This Document .................................................. 2 Assumptions ......................................................... 2 Information Sources .................................................... 2 Identifying SSL Points for Hyperion System 9 Products .......................... 3 Common Activities ..................................................... 9 Deploying Hyperion System 9 Products for SSL ............................... 10 Shared Services ....................................................... 12 Analytic Administration Services .......................................... 15 Planning ........................................................... 16 Financial Management ................................................. 16 BI+ ............................................................... 18 Performance Scorecard ................................................. 28 P/N: DH98892030 About This Document This document describes how to deploy Hyperion® System™ 9 in Secure Sockets Layer (SSL)- enabled environments. SSL is a cryptographic protocol used to secure data exchange over the network. The procedures in this document are designed for users who intend to use SSL in their Web environments to secure communication with Hyperion System 9 products. Assumptions l You know how to SSL-enable the following: m Application servers: Apache Tomcat, BEA WebLogic, Oracle 10g, and IBM WebSphere m Web Servers: Apache,
    [Show full text]
  • WSGI from Start to Finish
    WSGI from Start to Finish EuroPython 2010. Gustavo Narea Who's speaking ● ¡Hola! ● Web Application Developer. ● Contributes to WSGI projects. Goals ● Explain what your framework does under- the-hood. ● More efficient troubleshooting. ● Integrate third party libraries and applications. ● Write framework-independent libraries and applications. ● Learn about existing WSGI-based software. Updates after the tutorial ● This presentation was modified to refer to working examples and fix errata. ● You probably downloaded this presentation with the examples. If not, go to gustavonarea.net/talks/ to get them. ● Read the instructions on how to install some of them. ● They are not essential to understand the presentation. The big picture 1.Introduction. 2.HTTP and WSGI. 3.WSGI applications. 4.WSGI middleware. 5.Testing and debugging. 6.Embedded Web applications. 7.Deployment. 8.Limitations. 9.Conclusion. Introduction What's WSGI? HTTP = HyperText Transfer Protocol WSGI = Web Server Gateway Interface Key facts about WSGI ● Python “Standard” (PEP-333). ● Created in 2003. ● Inspired by CGI. ● Officially supported by all the popular frameworks. ● Applications can run on virtually any HTTP server. Servers and gateways ● Server with Python embedded: ● Python-powered gateway: Requests and responses HTTP and WSGI HTTP requests and responses Response Request HTTP/1.1 200 OK Server: EP2010 Server GET /greeting HTTP/1.1 Content-Length: 12 Host: example.org Content-Type: text/plain User-Agent: EP2010 Client empty line Hello world! Request Response POST /login
    [Show full text]
  • Aris Server Update Installation Guide
    ARIS SERVER UPDATE INSTALLATION GUIDE VERSION 10.0 - SERVICE RELEASE 14 April 2021 SOFTWARE AG This document applies to ARIS Version 10.0 and to all subsequent releases. Specifications contained herein are subject to change and these changes will be reported in subsequent release notes or new editions. Copyright © 2010 - 2021 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or its subsidiaries and/or its affiliates and/or their licensors. The name Software AG and all Software AG product names are either trademarks or registered trademarks of Software AG and/or Software AG USA Inc. and/or its subsidiaries and/or its affiliates and/or their licensors. Other company and product names mentioned herein may be trademarks of their respective owners. Detailed information on trademarks and patents owned by Software AG and/or its subsidiaries is located at https://softwareag.com/licenses. Use of this software is subject to adherence to Software AG's licensing conditions and terms. These terms are part of the product documentation, located at https://softwareag.com/licenses and/or in the root installation directory of the licensed product(s). This software may include portions of third-party products. For third-party copyright notices, license terms, additional rights or restrictions, please refer to "License Texts, Copyright Notices and Disclaimers of Third Party Products". For certain specific third-party license restrictions, please refer to section E of the Legal Notices available under "License Terms and Conditions for Use of Software AG Products / Copyright and Trademark Notices of Software AG Products". These documents are part of the product documentation, located at https://softwareag.com/licenses and/or in the root installation directory of the licensed product(s).
    [Show full text]
  • Intro to Load-Balancing Tomcat with Httpd and Mod Jk
    Intro to Load-Balancing Tomcat with httpd and mod_jk Christopher Schultz Chief Technology Officer Total Child Health, Inc. * Slides available on the Linux Foundation / ApacheCon2015 web site and at http://people.apache.org/~schultz/ApacheCon NA 2015/Load-balancing with mod_jk.odp Intro to Load-Balancing Tomcat with httpd and mod_jk ● Covering – Load balancing ● Not covering – Clustering* * See Mark's 3-part presentation(s) today starting at 10:00 in this room Tomcat ● Tomcat as a web server – Capable ● HTTP, HTTPS, WebSocket, NIO ● Virtual hosting, CGI, URL-rewriting ● Authentication (RDBMS, LDAP, file) ● Styled directory listings ● Arbitrary data filtering – Fast ● Static throughput can be comparable to httpd* * See Jean-Frederic's presentation today at 15:15 in this room Tomcat ● Tomcat as an application server – Java servlets, JSPs – Sky is the limit Image credit: Stan Shebs CC BY-SA 3.0 via Wikimedia Commons Tomcat ● Tomcat as an application server – Java servlets, JSPs – Sky is the limit* Image credit: Stan Shebs CC BY-SA 3.0 via Wikimedia Commons * Okay, heap size is the limit Scalability ● More memory Scalability ● More memory ● More deployed applications – without complex URLs Scalability ● More memory ● More deployed applications – without complex URLs ● Better fault-tolerance – fail-over Scalability ● More memory ● More deployed applications – without complex URLs ● Better fault-tolerance – fail-over ● Easier maintenance – bring-down a server without bringing down a service Scalability Load Balancing ● Client sees a single “service” ● “Server” is really an army of servers ● This army runs behind a façade: the load-balancer (lb) ● The load-balancer is also called a reverse proxy* * Because forward proxy was already taken Balancing versus Clustering ● Balancing is basic – Route incoming requests – Pushes bytes around ● Clustering* is complex – Relies on balancing as a building block – Configuration – Communication – Replication * See Mark's 3-part presentation(s) today starting at 10:00 in this room Reverse Proxying ● Necessary components 1.
    [Show full text]
  • Load-Balancing Tomcat with Mod Jk.Pdf
    Intro to Load-Balancing Tomcat with httpd and mod_jk Christopher Schultz Chief Technology Officer Total Child Health, Inc. * Slides available on the Linux Foundation / ApacheCon2015 web site and at http://people.apache.org/~schultz/ApacheCon NA 2015/Load-balancing with mod_jk.odp Intro to Load-Balancing Tomcat with httpd and mod_jk ● Covering – Load balancing ● Not covering – Clustering* * See Mark's 3-part presentation(s) today starting at 10:00 in this room Tomcat ● Tomcat as a web server – Capable ● HTTP, HTTPS, WebSocket, NIO ● Virtual hosting, CGI, URL-rewriting ● Authentication (RDBMS, LDAP, file) ● Styled directory listings ● Arbitrary data filtering – Fast ● Static throughput can be comparable to httpd* * See Jean-Frederic's presentation today at 15:15 in this room Tomcat ● Tomcat as an application server – Java servlets, JSPs – Sky is the limit Image credit: Stan Shebs CC BY-SA 3.0 via Wikimedia Commons Tomcat ● Tomcat as an application server – Java servlets, JSPs – Sky is the limit* Image credit: Stan Shebs CC BY-SA 3.0 via Wikimedia Commons * Okay, heap size is the limit Scalability ● More memory Scalability ● More memory ● More deployed applications – without complex URLs Scalability ● More memory ● More deployed applications – without complex URLs ● Better fault-tolerance – fail-over Scalability ● More memory ● More deployed applications – without complex URLs ● Better fault-tolerance – fail-over ● Easier maintenance – bring-down a server without bringing down a service Scalability Load Balancing ● Client sees a single “service” ● “Server” is really an army of servers ● This army runs behind a façade: the load-balancer (lb) ● The load-balancer is also called a reverse proxy* * Because forward proxy was already taken Balancing versus Clustering ● Balancing is basic – Route incoming requests – Pushes bytes around ● Clustering* is complex – Relies on balancing as a building block – Configuration – Communication – Replication * See Mark's 3-part presentation(s) today starting at 10:00 in this room Reverse Proxying ● Necessary components 1.
    [Show full text]
  • Limitations of Azure in GIS Scalability a Performance and Migration Study
    Mid Sweden University The Department of Information Technology and Media (ITM) Author: Jonas Bäckström E-mail address: [email protected] Study program: Master of Science in Engineering - Computer Engineering, 300 higher education credits Examiner: Prof. Tingting Zhang, [email protected] Supervisor: Lect. Martin Kjellqvist, [email protected] Date: 2012-08-28 M.Sc Thesis within Computer Engineering, Computer Engineering AV, 30 ETCS Limitations of Azure in GIS Scalability A performance and migration study Jonas Bäckström Abstract In this study, the cloud platform Windows Azure has been targeted for test im- plementations of Geographical Information System (GIS) software in the form of map servers and tile caches. The map servers included were GeoServer, MapNik, MapServer and SharpMap, which together with the tile caches, GeoWebCache, Map- Cache and TileCache, were installed on Windows Azures three different virtual ma- chine roles (Web, Worker and VM). Furthermore, different techniques for scaling applications and internal role communication are presented, followed by four sets of performance tests. The performance tests attempt to highlight the differences in re- quest times, how the different role sizes handle the load from the incoming requests, how the different role sizes handle many concurrent TCP-connections and how well the incoming requests are load balanced in between the worker roles. The test im- plementations showed that all map servers and tile caches were successfully installed in Azure, which leads to the conclusion that Windows Azure is suitable for hosting GIS software with similar installation requirements to the previously mentioned soft- ware. Four different approaches (Direct mapping, Public Internal Endpoints, Queue and Worker Role Request Broker) are presented showing how Azure allows different methods in order to scale the internal role communication as well as the external client requests.
    [Show full text]
  • Indexing Data and Faceting Search with Apache SOLR
    Concepts of Server Load Balancing By PANKAJ SHARMA 1 Concepts of Server Load Balancing Introduction of Load balancing and clustering with Liferay Load balancing is one of the most popular in the world due to its impressive ease-of-use. load balancing is techniques to distributed load on multiple system . Server Load Balancing (SLB) could mean many things, for the purpose of this book it is defined as a process and technology that distributes site traffic among several servers using a network-based device. This device intercepts traffic destined for a site and redirects that traffic to various servers . The load-balancing process is completely transparent to the end user. it’s configured optimally for a multiple server environment. If one server isn’t sufficient to serve the high traffic needs of your site, Liferay scales to the size you need. In Figure 1-1, we see the simplest representation of SLB. Apache server based Load Balancing: Simply add load balancing to your current multiple tomcat server configuration in order to achieve high availability and build your own web cluster without burning your entire hosting budget. Load balancing can be implemented quickly and easily as an add-on to your current server solution to share the load between your web servers, using a simple script to replicate the data on the server . A load balancer performs the following functions: Intercepts network-based traffic (such as web traffic) destined for a site. 2 Concepts of Server Load Balancing Splits the traffic into individual requests and decides which servers receive individual requests.
    [Show full text]
  • The Server.Xml File
    APPENDIX A The Server.xml File In this appendix, we discuss the configuration of Tomcat containers and connectors in the server.xml configuration. This file is located in the CATALINA_HOME/conf directory and can be considered the heart of Tomcat. It allows you to completely configure Tomcat using XML configuration elements. Tomcat loads the configuration from server.xml file at startup, and any changes to this file require server restart. However, you can configure Tomcat is such way that it allows runtime changes to the deployed web applications. Containers Tomcat containers are objects that can contribute to the request-response communication between clients (e.g. browsers) and the targeted servlets. There are several types of Tomcat containers, each of which is configured within the server.xml based upon its type. We introduced Tomcat’s containers when we discussed Tomcat’s architecture in Chapter 1. In this section, we discuss the containers that are configured in the default server.xml file. The Server Container Let’s first take a look at the top level server container, which is configured using the <Server> XML element. It is used as a top-level element for a single Tomcat instance; it is a simple singleton element that represents the entire Tomcat JVM. It may contain one or more Service containers. The server container is defined by the org.apache.catalina.Server interface. Table A-1 defines the possible attributes that can be set for the <Server> element. 247 APPENDIX A < THE SERVER .XML FILE Table A-1. The Configurable Attributes for <Server> XML Element Attribute Description className Names the fully qualified Java name of the class that implements the org.apache.catalina.Server interface.
    [Show full text]