Intelligent and Modular Load-Balancing CORBA Naming Service
|
|
|
- Claire Crawford
- 9 years ago
- Views:
Transcription
1 Intelligent and Modular Load-Balancing CORBA Naming Service Brecht Vermeulen, Christophe Gardelein, Bart Dhoedt, and Piet Demeester Ghent University, Department of Information Technology, Sint-Pietersnieuwstraat 41, B-9000 Gent, Belgium Abstract. In today s distributed systems, some challenges keep on returning in various applications and environments. Two of them, loadbalancing of requests and fault tolerance can partly be tackled by the proposed load-balancing CORBA Naming Service. This Naming Service can dynamically load new load-balancing algorithms which can also be intelligent, e.g. interact with the object servers to determine the best object reference before returning an object reference to the client. Four algorithms are already implemented: Round-Robin, Random and also two intelligent algorithms which determine the roundtrip time or hopcount between object server and client and return the object reference of the closest object to the client. 1 Introduction and Motivation Distributed systems are today widespread in a lot of domains and various applications. Different software techniques are used to cope with the different demands, but some problems and challenges keep on returning in all those environments. Two of them, load-balancing of requests and fault tolerance are issues which are tackled by the proposed load-balancing CORBA Naming Service, in particular then for a CORBA based distributed system. The CORBA Naming Service is a kind of central database which contains references to distributed objects which can be looked up by the use of names. Typically when a distributed system starts up, objects register themselves at the Naming Service and clients request initially references to those objects and then send their requests directly to those objects. In the Object Management Group (OMG) standardized CORBA Naming Service, there is a one-one relation between object names and object references. By extending the Naming Service for load-balancing however, multiple objects can be related to one (group) name. If a client (which is unaware of the load-balancing) then requests the object reference for a particular name, the Naming Service has to choose to return a particular object reference. For this choice, different methodologies are possible. The most well-known algorithms for chosing an object reference to return are round-robin and random
2 2 which can be found in several implementations ([4] and [5]) of a load-balancing CORBA Naming Service. Both will tend, in the limit, to an equal number of choices for each separate object reference. This research however, is focussed on making the load-balancing of object references more intelligent and generic. The first goal is being accomplished by making interaction possible between the Naming Service and the objects and as such make it possible to return an object reference to a client based on more complex decisions, e.g. the object which is closest to the client. To provide more generic load-balancing, new algorithms with new functionality can be plugged in and removed from a running Naming Service. As such also automatic failover can be implemented if clients are slightly adapted (e.g. if their design currently not foresees into this exception handling) to request for a new object reference when a certain object is unreachable. The intelligent Naming Service can be as smart to continuously check the status of the objects as such only returns valid references to the clients. Keeping the state of the different objects synchronized is however not the task of the Naming Service as it is object specific and can be done in various ways. The paper is further organized as follows. Section 2 describes shortly the IDL interfaces of the OMG standardized CORBA Naming Service. Section 3 elaborates in detail on the proposed load-balancing Naming Service framework while Section 4 discusses the performance of the prototype. The last sections discuss applications, related work and Section 7 concludes the paper. 2 Standard CORBA Naming Service To outline the context and to make the differences with the existing standard functionality of the CORBA Naming Service more clear, a short overview of the CORBA Naming Service as currently standardized by the OMG will be given. The basic structure of the CosNaming IDL interface is shown in Figure 1. The basic structure is rather simple and similar to a tree-based directory structure of an operating system. There are NamingContexts (which are actually also CORBA objects themselves) which can contain object references or other NamingContexts. As such, a tree is created of which the leaves are object references. Generally, one can speak of Bindings 1 which are then either object references or NamingContexts. The operational interfaces NamingContext and BindingIterator exist of a number of operations. On a NamingContext one can bind and unbind object references and NamingContexts and of course also resolve object references. The BindingIterator interface is used when browsing a particular NamingContext to list all of the bindings. Almost all existing CORBA implementations include also a Naming Service and we chose omniorb [2] for our implementation, as it has been tested several times as one of the fastest and smallest ORBs around [3] and because it is Open 1 In struct Binding, binding name is incorrectly defined as a Name instead of a Name- Component. This definition is unchanged for compatibility reasons.
3 3 typedef string Istring; struct NameComponent { Istring id; Istring kind; } typedef sequence<namecomponent> Name; enum BindingType { nobject, ncontext struct Binding { Name binding_name; BindingType binding_type; } typedef sequence<binding> Bindinglist; interface NamingContext {... } interface BindingIterator {... } Fig. 1. Part of the OMG standardized CosNaming.idl, see [1] Source. omniorb has extended the CosNaming.idl definition with an extra, omniorb specific, interface called NamingContextExt which contains operations which convert strings to NameComponents and vice versa. 3 Load-Balancing CORBA Naming Service 3.1 Object Groups The basic idea of introducing load-balancing functionality is by defining the concept of Object groups which can contain multiple object references bound to the same group name. This idea can also be found in other solutions as e.g. Iona Orbix [4]. As such, there are now three types of bindings one can find in a Context (see Figure 2): object references, NamingContexts and Object Groups. Because of this new functionality and the design requirement to be backwards compatible (a.o. to make it possible that clients are unaware of the load-balancing) a new IDL interface NamingContextLoadBalancing is defined which inherits from the omniorb specific NamingContextExt interface. This new interface has of course the same functionality as a NamingContext but adds the load-balancing specific variables and operations (see Figure 3). The operations create group and delete group add or delete a load-balancing group to this NamingContext. The name of the algorithm for the load-balancing can also be specified for this group. list available algorithms is used to get an overview of all registered load-balancing algorithms in the Naming Service. list groups, find group and LBlist are used to browse the NamingContext while supporting Object groups. The Object group itself is defined in the interface LBgroup (Figure 4) and the operations make it possible to do the management of the object references
4 4 Fig. 2. Example of a load-balancing Naming tree with Naming Contexts, Object Groups and object references within an Object group and also to change the used load-balancing algorithm for this particular group. The operation pick returns an object reference out of the group chosen by the current algorithm. This operation is a.o. called if resolve is called by a client on a NamingContextLoadBalancing for a name related to an Object group. The interfaces LBBindingIterator and ObjectIdIterator are used similarly as the BindingIterator interface in the standard Naming Service. 3.2 Intelligent Load-balancing algorithms As described in the previous section, for each Object group a different loadbalancing algorithm can be specified. The following algorithms have been developed so far. Round-Robin which runs in a cyclic way through the list of object references. The Random algorithm choses randomly references out of the group. Also two intelligent algorithms have been implemented. When IP-based- RoundTrip is defined for a certain Object group, each CORBA object in the group (in parallel) gets the order to ping (an ICMP request and reply) to the IP number of the client and to report back the roundtrip delay to the Naming Service, so that the algorithm can return the object reference of the object which is closest (in delay) to the client. IP-based-hops is similar but here the number of hops between object and client (based on the Time-to-Live field of the ICMP reply packets) instead of roundtrip delay is used as a distinguishing parameter. It is obvious that these intelligent algorithms are much more complex than the simple Random or Round-Robin algorithms as they require interaction between the Naming Service and the CORBA objects before an object reference can be returned to the client. Figure 5 shows this interaction: 1. The client asks the Naming Service for an object reference.
5 5 module CosNaming { typedef string Algorithm; typedef sequence<algorithm> AlgoList; interface NamingContextLoadBalancing : NamingContextExt { enum LBBindingType {nobject, ncontext, ngroup struct LBBinding { Name binding_name; LBBindingType binding_type; typedef sequence <LBBinding> LBBindingList; LBgroup create_group( in Algorithm AId, in NameComponent nc ); void delete_group( in NameComponent nc ); AlgoList list_available_algorithms(); void list_groups (in unsigned long how_many, out LBBindingList bl, out LBBindingIterator bi); LBgroup find_group(in NameComponent nc); void LBlist (in unsigned long how_many, out LBBindingList bl, out LBBindingIterator bi); Fig. 3. The extended NamingContextLoadBalancing. For clarity exception definitions are omitted module CosNaming { interface LBgroup { typedef string ObjectId; typedef sequence<objectid> ObjectIdList; typedef sequence<any> ParameterList; void add_member(in ObjectId id, in ParameterList pl, in Object ob); void remove_member(in ObjectId id); void list_members (in unsigned long how_many, out ObjectIdList oil, out ObjectIdIterator oii); Object find_member(in ObjectId oid); Object pick (); void set_selection_algorithm(in Algorithm algo); Algorithm get_selection_algorithm(); Fig. 4. Interface LBgroup. For clarity exception definitions are omitted
6 6 2. The Naming Service sends a request to the PollObject interface of each CORBA server for the needed parameters (dependent of the algorithm, these can be e.g. current CPU load, roundtrip delay to the client,... ). When the CORBA servers register their objects, they give a reference to their local PollObject interface to the Naming Service (in the ParameterList of the add member operation of the LBgroup). 3. If needed, the object server pings the client machine to know e.g. roundtrip delay or number of hops between server and client. 4. The object servers report the result back to the CallBackObject interface of the Naming Service. 5. The Naming Service choses the best object reference based on the algorithm and the parameters and returns the object reference to the client. Fig. 5. Mechanism of intelligent load-balancing algorithm This interaction needs of course some detailed explanation. The PollObject interface is listed in Figure 6 and contains only one operation used to give the order for the start of a measurement. The parameters are the OperationName (there is only one or a few PollObject objects for each object server, so they can support multiple tests.). The ObjectServerID which is assigned by the Naming Service uniquely for each PollObject and has to be used to report the results back to the CallBackObject of the Naming Service. The ParameterList is used dependent on the used algorithm, e.g. for the IP-based-RoundTrip and IP-basedhops it contains the IP address of the machine where the client runs 2. The last 2 In fact one of the features of CORBA is making network addressing transparant for the programmer, but by using the Server Receive Request CORBA interceptor
7 7 argument is the reference to the CallBackObject in the Naming Service. This CallBackObject interface (also listed in Figure 6) is very simple and has one operation to report the results of the tests. Differentiation between the different CORBA servers is done by the ObjectServerID. To make these interactions as generic as possible, the parameters and results are defined as sequence<any> which makes it possible to use any data. E.g. other algorithms that could be implemented are weighted round-robin or CPU-load based load-balancing. For the first algorithm, servers could specify a weight in the ParameterList of the add member operation for their object(s) when registering, so that the Naming Service can use weighted round-robin. For this algorithm no further interaction is needed between Naming Service and object servers. A CPU-load based algorithm would be similar to the IP-based algorithms, except that for step 3 (see above) no ping action to the client would be done, but a CPU-load measurement on the CORBA server machine. It could even be improved and made more scalable by making the Naming Service algorithm polling the CPU-loads on a regular basis, so that the best object reference could be returned immediately by the Naming Service. This improvement is not immediately possible with the IP-based algorithms because the clients are not known on beforehand. interface PollObject { typedef string OperationName; typedef unsigned short ObjectServerID; typedef sequence<any> ParameterList; void StartTest ( in OperationName name, in ObjectServerID id, in ParameterList pl, in Object callback_object ); interface CallBackObject { typedef sequence<any> ValueList; typedef unsigned short ObjectServerID; void CommitResult ( in ValueList vlist, in ObjectServerID id ); Fig. 6. Interfaces PollObject and CallBackObject used for the intelligent algorithms in omniorb, a CORBA server can detect the IP address of the client issuing the request.
8 8 3.3 Dynamic loading of algorithms To make it easy to develop and install new load-balancing algorithms, the framework is based on dynamic loading of algorithms. To accomodate this, Dynamic C++ classes [6] are used because they are platform independent, C++ oriented and targeted to performance-critical applications. Dynamic classes allow run-time updates of an executing C++ program at the class level. As such, all algorithms are a new implementation of the class Algorithm which has a fixed interface. Of this class, various versions (the different algorithms) can exist next to each other in the running Naming Service and can be loaded and unloaded dynamically. Therefore an extra CORBA interface AlgorithmServer has been specified for the Naming Service which is listed in Figure 7. The operations RegisterAlgorithm and UnregisterAlgorithm can be called by command line applications (even remote as this is also a CORBA interface) to install or remove algorithms. module CosNaming { interface AlgorithmServer { typedef string Filename; void RegisterAlgorithm (in Filename f1); void UnregisterAlgorithm (in Algorithm al); AlgoList list_available_algorithms (); Fig. 7. Interface AlgorithmServer to dynamically load new algorithms The framework with all the defined CORBA IDL interfaces which are involved with these intelligent algorithms is depicted in Figure 8. 4 Performance A CORBA Naming Service is not that performance critical as object references are only bound and resolved on rare occasions. However, it is interesting to have an idea about the performance of this service as it can give an idea about the applications which are proposed in the next section where the resolving of object references is more frequent, e.g. for better load-balancing and fault tolerance. In particular also the performance differences with and without our extensions were studied. In the measurements (Figure 9), 3 different versions of the Naming Service were under test: the original standard omniorb Naming Service, the non-optimized load-balancing Naming Service (based on linked lists) and the optimized load-balancing Naming Service (based on STL hash-maps and vectors).
9 9 Fig. 8. Complete framework with all object interfaces. The first test done was registering 1000 object references and then resolving the 0th, the 500th and the 1000th object reference. We see clearly that for the optimized version the response time is around 330µs independent of the request reference. The second test studied the influence of the number of clients (while doing continuously resolves on the Naming Service) while the third test shows the memory use in relation to the number of objects which are registered. This last test shows a memory use which is around 1650 kb higher for the loadbalancing Naming Service. This is mostly related to the use of the CORBA any datatype which needs an extra library in omniorb. 5 Applications A load-balancing Naming Service can have different applications. The IP-based algorithms that were implemented are being used in a CORBA based network management where a big layer network can be managed by logically one component, which is physically embodied by multiple components. Neighboring domains can then contact the right CORBA object which is closest [7]. Other applications include of course load-balancing, but instead of only resolving object references initially, clients can regularly resolve object references so that the load-balancing gets better. As such, the Naming Service can also detect via the PollObject interface of the object servers, if the servers are still running or if they are unreachable, and adapt the object groups accordingly.
10 10 Fig. 9. Performance of the standard and the extended Naming Service (optimized and not optimized). This last application can also be used in the direction of fault tolerance by making clients resolve new object references if operations on existing object references fail or time-out. 6 Related work Orbix [4] and TAO [5] contain both (related) load-balancing extensions to their Naming Service, but these are only Round-Robin and Random algorithms of which the parameters are specified in the IDL interfaces. These implementations are thus not developed in a generic way and as such new algorithms cannot be loaded easily in those Naming Services. Intelligent algorithms, as described in this paper, are also not available. 7 Conclusion This paper describes a generic framework for dynamically plugging in intelligent load-balancing algorithms in a CORBA Naming Service (the prototype was based on the omniorb Naming Service). Intelligent means that there can be interaction between the Naming Service and the CORBA servers, e.g. to measure the CPU load of the CORBA servers before an object reference is returned to a client. To prove the working prototype, four algorithms were already
11 11 developed: a Round Robin and Random algorithm and also two intelligent algorithms which check the distance between CORBA objects and clients (based on roundtrip time and hop count) before returning an object reference to a client. Also different applications were highlighted. Acknowledgments Part of this work has been supported by the European Community through the IST research program in the IST project HARMONICS. References 1. Object Management Group (OMG): CosNaming.idl. formal/ idl 2. omniorb: 3. Distributed Systems Research Group: CORBA Comparison Project, ms.mff.cuni.cz/~bench/, Charles University, Prague. 4. Orbix: 5. TAO: 6. Hjalmtysson, G., Gray, B.: Dynamic C++ classes: A lightweight mechanism to update code in a running program. Proceedings of the USENIX Annual Technical Conference (NO 98) New Orleans, Louisiana, June Vermeulen, B., Vanhastel, S., Wellen, J., Mas, C., Dhoedt, B., Demeester, P.: A Generic End-to-end Distributed QoS Management Architecture and its Application to IP-DiffServ over a WDM Access Feeder Network. NOMS 2002, Florence, April 2002.
CORBAservices. Naming. Part of the CORBA Naming Service Interface in IDL. CORBA Naming Service
CORBAservices CORBAservices are general purpose and application independent services. They resemble and enhance services commonly provided by an operating system: Service Collection Query Concurrency Transaction
3F6 - Software Engineering and Design. Handout 10 Distributed Systems I With Markup. Steve Young
3F6 - Software Engineering and Design Handout 10 Distributed Systems I With Markup Steve Young Contents 1. Distributed systems 2. Client-server architecture 3. CORBA 4. Interface Definition Language (IDL)
Introduction to CORBA. 1. Introduction 2. Distributed Systems: Notions 3. Middleware 4. CORBA Architecture
Introduction to CORBA 1. Introduction 2. Distributed Systems: Notions 3. Middleware 4. CORBA Architecture 1. Introduction CORBA is defined by the OMG The OMG: -Founded in 1989 by eight companies as a non-profit
Overview of CORBA 11.1 I NTRODUCTION TO CORBA. 11.4 Object services 11.5 New features in CORBA 3.0 11.6 Summary
C H A P T E R 1 1 Overview of CORBA 11.1 Introduction to CORBA 11.2 CORBA architecture 11.3 Client and object implementations 11.4 Object services 11.5 New features in CORBA 3.0 11.6 Summary In previous
Introduction to Distributed Computing using CORBA
Introduction to Distributed Computing using CORBA Rushikesh K. Joshi Dept of Computer Science & Engineering Indian Institute of Technology, Bombay Powai, Mumbai - 400 076, India. Email: [email protected]
Introduction CORBA Distributed COM. Sections 9.1 & 9.2. Corba & DCOM. John P. Daigle. Department of Computer Science Georgia State University
Sections 9.1 & 9.2 Corba & DCOM John P. Daigle Department of Computer Science Georgia State University 05.16.06 Outline 1 Introduction 2 CORBA Overview Communication Processes Naming Other Design Concerns
Distributed Network Management Using SNMP, Java, WWW and CORBA
Distributed Network Management Using SNMP, Java, WWW and CORBA André Marcheto Augusto Hack Augusto Pacheco Augusto Verzbickas ADMINISTRATION AND MANAGEMENT OF COMPUTER NETWORKS - INE5619 Federal University
Managing Users and Identity Stores
CHAPTER 8 Overview ACS manages your network devices and other ACS clients by using the ACS network resource repositories and identity stores. When a host connects to the network through ACS requesting
Middleware Lou Somers
Middleware Lou Somers April 18, 2002 1 Contents Overview Definition, goals, requirements Four categories of middleware Transactional, message oriented, procedural, object Middleware examples XML-RPC, SOAP,
PERFORMANCE COMPARISON OF COMMON OBJECT REQUEST BROKER ARCHITECTURE(CORBA) VS JAVA MESSAGING SERVICE(JMS) BY TEAM SCALABLE
PERFORMANCE COMPARISON OF COMMON OBJECT REQUEST BROKER ARCHITECTURE(CORBA) VS JAVA MESSAGING SERVICE(JMS) BY TEAM SCALABLE TIGRAN HAKOBYAN SUJAL PATEL VANDANA MURALI INTRODUCTION Common Object Request
LinuxWorld Conference & Expo Server Farms and XML Web Services
LinuxWorld Conference & Expo Server Farms and XML Web Services Jorgen Thelin, CapeConnect Chief Architect PJ Murray, Product Manager Cape Clear Software Objectives What aspects must a developer be aware
SCALABILITY AND AVAILABILITY
SCALABILITY AND AVAILABILITY Real Systems must be Scalable fast enough to handle the expected load and grow easily when the load grows Available available enough of the time Scalable Scale-up increase
The EMSX Platform. A Modular, Scalable, Efficient, Adaptable Platform to Manage Multi-technology Networks. A White Paper.
The EMSX Platform A Modular, Scalable, Efficient, Adaptable Platform to Manage Multi-technology Networks A White Paper November 2002 Abstract: The EMSX Platform is a set of components that together provide
Module 17. Client-Server Software Development. Version 2 CSE IIT, Kharagpur
Module 17 Client-Server Software Development Lesson 42 CORBA and COM/DCOM Specific Instructional Objectives At the end of this lesson the student would be able to: Explain what Common Object Request Broker
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
Introduction Object-Oriented Network Programming CORBA addresses two challenges of developing distributed systems: 1. Making distributed application development no more dicult than developing centralized
Distributed Systems. Distributed Systems
Distributed Systems Prof. Steve Wilbur Department of Computer Science University College London 1 Distributed Systems... use of more than one computer connected by communications links to carry out a computational
Procedure: You can find the problem sheet on Drive D: of the lab PCs. 1. IP address for this host computer 2. Subnet mask 3. Default gateway address
Objectives University of Jordan Faculty of Engineering & Technology Computer Engineering Department Computer Networks Laboratory 907528 Lab.4 Basic Network Operation and Troubleshooting 1. To become familiar
Middleware and Distributed Systems. Introduction. Dr. Martin v. Löwis
Middleware and Distributed Systems Introduction Dr. Martin v. Löwis 14 3. Software Engineering What is Middleware? Bauer et al. Software Engineering, Report on a conference sponsored by the NATO SCIENCE
Understanding Slow Start
Chapter 1 Load Balancing 57 Understanding Slow Start When you configure a NetScaler to use a metric-based LB method such as Least Connections, Least Response Time, Least Bandwidth, Least Packets, or Custom
A QOS DISTRIBUTION MONITORING SCHEME FOR PERFORMANCE MANAGEMENT OF MULTIMEDIA NETWORKS
A QOS DISTRIBUTION MONITORING SCHEME FOR PERFORMANCE MANAGEMENT OF MULTIMEDIA NETWORKS Yuming Jiang, Chen-Khong Tham, Chi-Chung Ko Department Electrical Engineering, National University Singapore, 119260
Chapter 4. Architecture. Table of Contents. J2EE Technology Application Servers. Application Models
Table of Contents J2EE Technology Application Servers... 1 ArchitecturalOverview...2 Server Process Interactions... 4 JDBC Support and Connection Pooling... 4 CMPSupport...5 JMSSupport...6 CORBA ORB Support...
EE0-511. Easy CramBible Lab DEMO ONLY VERSION EE0-511. F5 Big-Ip v9 Local Traffic Management
Easy CramBible Lab EE0-511 F5 Big-Ip v9 Local Traffic Management ** Single-user License ** This copy can be only used by yourself for educational purposes Web: http://www.crambible.com/ E-mail: [email protected]
CONTROL MICROSYSTEMS DNP3. User and Reference Manual
DNP3 User and Reference Manual CONTROL MICROSYSTEMS SCADA products... for the distance 48 Steacie Drive Telephone: 613-591-1943 Kanata, Ontario Facsimile: 613-591-1022 K2K 2A9 Technical Support: 888-226-6876
FAQ: BroadLink Multi-homing Load Balancers
FAQ: BroadLink Multi-homing Load Balancers BroadLink Overview Outbound Traffic Inbound Traffic Bandwidth Management Persistent Routing High Availability BroadLink Overview 1. What is BroadLink? BroadLink
Chapter 6. CORBA-based Architecture. 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications
Chapter 6. CORBA-based Architecture 6.1 Introduction to CORBA 6.2 CORBA-IDL 6.3 Designing CORBA Systems 6.4 Implementing CORBA Applications 1 Chapter 6. CORBA-based Architecture Part 6.1 Introduction to
Firewall Load Balancing
Firewall Load Balancing 2015-04-28 17:50:12 UTC 2015 Citrix Systems, Inc. All rights reserved. Terms of Use Trademarks Privacy Statement Contents Firewall Load Balancing... 3 Firewall Load Balancing...
CORBA Programming with TAOX11. The C++11 CORBA Implementation
CORBA Programming with TAOX11 The C++11 CORBA Implementation TAOX11: the CORBA Implementation by Remedy IT TAOX11 simplifies development of CORBA based applications IDL to C++11 language mapping is easy
Inter-Domain Management between CORBA and SNMP :
Presented at DSOM 96, L Aquila, Italy, October 28-30, 1996. Inter-Domain Management between CORBA and SNMP : WEB-based Management - CORBA/SNMP Gateway Approach Subrata Mazumdar Network and Service Management
CheckPoint Software Technologies LTD. How to Configure Firewall-1 With Connect Control
CheckPoint Software Technologies LTD. How to Configure Firewall-1 With Connect Control (Load-Balance across multiple servers) Event: Partner Exchange Conference Date: October 10, 1999 Revision 1.0 Author:
NNMi120 Network Node Manager i Software 9.x Essentials
NNMi120 Network Node Manager i Software 9.x Essentials Instructor-Led Training For versions 9.0 9.2 OVERVIEW This course is designed for those Network and/or System administrators tasked with the installation,
Load Balancing using Pramati Web Load Balancer
Load Balancing using Pramati Web Load Balancer Satyajit Chetri, Product Engineering Pramati Web Load Balancer is a software based web traffic management interceptor. Pramati Web Load Balancer offers much
High Performance Cluster Support for NLB on Window
High Performance Cluster Support for NLB on Window [1]Arvind Rathi, [2] Kirti, [3] Neelam [1]M.Tech Student, Department of CSE, GITM, Gurgaon Haryana (India) [email protected] [2]Asst. Professor,
Ping Device Driver Help. 2009 Schneider Electric
2009 Schneider Electric 1 Table of Contents 1 Getting Started... 2 Help Contents... 2 Overview... 2 2 Device Setup... 2 Device Setup... 2 3 Automatic Tag... Database Generation 2 Automatic Tag... Database
Philosophy of GIMnet
Philosophy of GIMnet Software Modularity and Reusability through Service Oriented Architecture and Hardware Abstraction Introduction GIMnet MaCI GIMnet = tcphub + GIMI Enables communication between distributed
Interface Definition Language
Interface Definition Language A. David McKinnon Washington State University An Interface Definition Language (IDL) is a language that is used to define the interface between a client and server process
A Layman's Guide to Global Server Load Balancing
A Layman's Guide to Global Server Load Balancing Zeus Technology Limited (UK) Sales: +44 (0)1223 568555 Zeus Technology, Inc. (U.S.) Phone: (650) 965-4627 The Jeffreys Building Main: +44 (0)1223 525000
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
Load Balancing for Microsoft Office Communication Server 2007 Release 2
Load Balancing for Microsoft Office Communication Server 2007 Release 2 A Dell and F5 Networks Technical White Paper End-to-End Solutions Team Dell Product Group Enterprise Dell/F5 Partner Team F5 Networks
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
IP - The Internet Protocol
Orientation IP - The Internet Protocol IP (Internet Protocol) is a Network Layer Protocol. IP s current version is Version 4 (IPv4). It is specified in RFC 891. TCP UDP Transport Layer ICMP IP IGMP Network
Configuring Health Monitoring
CHAPTER 6 This chapter describes how to configure the health monitoring on the CSM and contains these sections: Configuring Probes for Health Monitoring, page 6-1 Configuring Route Health Injection, page
Proactive, Resource-Aware, Tunable Real-time Fault-tolerant Middleware
Proactive, Resource-Aware, Tunable Real-time Fault-tolerant Middleware Priya Narasimhan T. Dumitraş, A. Paulos, S. Pertet, C. Reverte, J. Slember, D. Srivastava Carnegie Mellon University Problem Description
Agent Languages. Overview. Requirements. Java. Tcl/Tk. Telescript. Evaluation. Artificial Intelligence Intelligent Agents
Agent Languages Requirements Overview Java Tcl/Tk Telescript Evaluation Franz J. Kurfess, Cal Poly SLO 211 Requirements for agent Languages distributed programming large-scale (tens of thousands of computers)
Configuring Nex-Gen Web Load Balancer
Configuring Nex-Gen Web Load Balancer Table of Contents Load Balancing Scenarios & Concepts Creating Load Balancer Node using Administration Service Creating Load Balancer Node using NodeCreator Connecting
RESOURCE DISCOVERY IN AD HOC NETWORKS
RESOURCE DISCOVERY IN AD HOC NETWORKS Diane Tang Chih-Yuan Chang Kei Tanaka Mary Baker Technical Report No.: CSL-TR-98-769 August 1998 This project is in part supported by FX Palo Alto Laboratories and
Fiber Channel Over Ethernet (FCoE)
Fiber Channel Over Ethernet (FCoE) Using Intel Ethernet Switch Family White Paper November, 2008 Legal INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR
QualNet 4.5 Network Emulation Interface Model Library
QualNet 4.5 Network Emulation Interface Model Library February 2008 Scalable Network Technologies, Inc. 6701 Center Drive West, Suite 520 Los Angeles, CA 90045 Phone: 310-338-3318 Fax: 310-338-7213 http://www.scalable-networks.com
Infrastructure that supports (distributed) componentbased application development
Middleware Technologies 1 What is Middleware? Infrastructure that supports (distributed) componentbased application development a.k.a. distributed component platforms mechanisms to enable component communication
Neighbour Discovery in IPv6
Neighbour Discovery in IPv6 Andrew Hines Topic No: 17 Email: [email protected] Organiser: Christian Schindelhauer University of Paderborn Immatriculation No: 6225220 August 4, 2004 1 Abstract
SMTP-32 Library. Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows. Version 5.2
SMTP-32 Library Simple Mail Transfer Protocol Dynamic Link Library for Microsoft Windows Version 5.2 Copyright 1994-2003 by Distinct Corporation All rights reserved Table of Contents 1 Overview... 5 1.1
Dr Markus Hagenbuchner [email protected] CSCI319. Distributed Systems
Dr Markus Hagenbuchner [email protected] CSCI319 Distributed Systems CSCI319 Chapter 8 Page: 1 of 61 Fault Tolerance Study objectives: Understand the role of fault tolerance in Distributed Systems. Know
Chapter 10: Scalability
Chapter 10: Scalability Contents Clustering, Load balancing, DNS round robin Introduction Enterprise web portal applications must provide scalability and high availability (HA) for web services in order
Microsoft s Advantages and Goals for Hyper-V for Server 2016
Virtualization is a bedrock of modern cloud environments. Hypervisors manage the virtual machines in a cloud environments, providing six fundamental features, as shown in the table below. 1 Hypervisors
Cisco Dynamic Workload Scaling Solution
Cisco Dynamic Workload Scaling Solution What You Will Learn Cisco Application Control Engine (ACE), along with Cisco Nexus 7000 Series Switches and VMware vcenter, provides a complete solution for dynamic
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
SAN Conceptual and Design Basics
TECHNICAL NOTE VMware Infrastructure 3 SAN Conceptual and Design Basics VMware ESX Server can be used in conjunction with a SAN (storage area network), a specialized high speed network that connects computer
NQA Technology White Paper
NQA Technology White Paper Keywords: NQA, test, probe, collaboration, scheduling Abstract: Network Quality Analyzer (NQA) is a network performance probe and statistics technology used to collect statistics
hp ProLiant network adapter teaming
hp networking june 2003 hp ProLiant network adapter teaming technical white paper table of contents introduction 2 executive summary 2 overview of network addressing 2 layer 2 vs. layer 3 addressing 2
How Does Ping Really Work?
How Does Ping Really Work? George Mays, Global Knowledge Course Director, CCISP, CCNA, A+, Network+, Security+, I-Net+ Introduction Ping is a basic Internet program that most of us use daily, but did you
Orbix 6.3.7. Release Notes
Orbix 6.3.7 Release Notes Micro Focus The Lawn 22-30 Old Bath Road Newbury, Berkshire RG14 1QN UK http://www.microfocus.com Copyright Micro Focus 2014. All rights reserved. MICRO FOCUS, the Micro Focus
Deploying QoS sensitive services in OSGi enabled home networks based on UPnP
Deploying QoS sensitive services in OSGi enabled home networks based on UPnP Nico Goeminne, Kristof Cauwel, Filip De Turck, Bart Dhoedt Ghent University - IBBT - IMEC Department of Information Technology
OpenCCM: The Open CORBA Components Platform
OpenCCM: The Open CORBA Components Platform 3rd ObjectWeb Conference 20th November 2003, INRIA Rocquencourt, France Philippe Merle INRIA Futurs Lille Jacquard Project OpenCCM Project Leader www.objectweb.org
Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces
Software Engineering, Lecture 4 Decomposition into suitable parts Cross cutting concerns Design patterns I will also give an example scenario that you are supposed to analyse and make synthesis from The
A Smart Telephone Answering Machine with Voice Message Forwarding Capability
A Smart Telephone Answering Machine with Voice Message Forwarding Capability Chih-Hung Huang 1 Cheng Wen 2 Kuang-Chiung Chang 3 1 Department of Information Management, Lunghwa University of Science and
CHAPTER 1: OPERATING SYSTEM FUNDAMENTALS
CHAPTER 1: OPERATING SYSTEM FUNDAMENTALS What is an operating? A collection of software modules to assist programmers in enhancing efficiency, flexibility, and robustness An Extended Machine from the users
1 Organization of Operating Systems
COMP 730 (242) Class Notes Section 10: Organization of Operating Systems 1 Organization of Operating Systems We have studied in detail the organization of Xinu. Naturally, this organization is far from
It is the thinnest layer in the OSI model. At the time the model was formulated, it was not clear that a session layer was needed.
Session Layer The session layer resides above the transport layer, and provides value added services to the underlying transport layer services. The session layer (along with the presentation layer) add
SolarWinds Certified Professional. Exam Preparation Guide
SolarWinds Certified Professional Exam Preparation Guide Introduction The SolarWinds Certified Professional (SCP) exam is designed to test your knowledge of general networking management topics and how
Straton and Zenon for Advantech ADAM-5550. Copalp integrates the straton runtime into the ADAM-5550 device from Advantech
Straton and Zenon for Advantech ADAM-5550 Copalp integrates the straton runtime into the ADAM-5550 device from Advantech Project Introduction: Programmable Application Controllers (PAC) are powerful and
EWeb: Highly Scalable Client Transparent Fault Tolerant System for Cloud based Web Applications
ECE6102 Dependable Distribute Systems, Fall2010 EWeb: Highly Scalable Client Transparent Fault Tolerant System for Cloud based Web Applications Deepal Jayasinghe, Hyojun Kim, Mohammad M. Hossain, Ali Payani
Chapter 2: OS Overview
Chapter 2: OS Overview CmSc 335 Operating Systems 1. Operating system objectives and functions Operating systems control and support the usage of computer systems. a. usage users of a computer system:
Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme. Middleware. Chapter 8: Middleware
Middleware 1 Middleware Lehrstuhl für Informatik 4 Middleware: Realisation of distributed accesses by suitable software infrastructure Hiding the complexity of the distributed system from the programmer
4 SCS Deployment Infrastructure on Cloud Infrastructures
4 SCS Deployment Infrastructure on Cloud Infrastructures We defined the deployment process as a set of inter-related activities to make a piece of software ready to use. To get an overview of what this
DnsCluster: A networking tool for automatic domain zone updating
DnsCluster: A networking tool for automatic domain zone updating Charalambos Alatas and Constantinos S. Hilas * Dept. of Informatics and Communications Technological Educational Institute of Serres Serres,
Internet Control Protocols Reading: Chapter 3
Internet Control Protocols Reading: Chapter 3 ARP - RFC 826, STD 37 DHCP - RFC 2131 ICMP - RFC 0792, STD 05 1 Goals of Today s Lecture Bootstrapping an end host Learning its own configuration parameters
Novell Open Enterprise Server 2015 and Microsoft Windows Server 2012 R2 Compare and Contrast:
Novell Open Enterprise Server 2015 and Microsoft Windows Server 2012 R2 Compare and Contrast: John A. Clark Storage Engineer IBM, Inc. [email protected] James Johnatakis Network Engineer Taos, Inc. [email protected]
System types. Distributed systems
System types 1 Personal systems that are designed to run on a personal computer or workstation Distributed systems where the system software runs on a loosely integrated group of cooperating processors
An Oracle White Paper July 2012. Load Balancing in Oracle Tuxedo CORBA Applications
An Oracle White Paper July 2012 Load Balancing in Oracle Tuxedo CORBA Applications Introduction... 1 Factors Affecting Load Balancing... 2 Requesting Routing in Oracle Tuxedo CORBA... 3 Listener/Handler...
You can probably work with decimal. binary numbers needed by the. Working with binary numbers is time- consuming & error-prone.
IP Addressing & Subnetting Made Easy Working with IP Addresses Introduction You can probably work with decimal numbers much easier than with the binary numbers needed by the computer. Working with binary
TOE2-IP FTP Server Demo Reference Design Manual Rev1.0 9-Jan-15
TOE2-IP FTP Server Demo Reference Design Manual Rev1.0 9-Jan-15 1 Introduction File Transfer Protocol (FTP) is the protocol designed for file sharing over internet. By using TCP/IP for lower layer, FTP
SSL VPN Technology White Paper
SSL VPN Technology White Paper Keywords: SSL VPN, HTTPS, Web access, TCP access, IP access Abstract: SSL VPN is an emerging VPN technology based on HTTPS. This document describes its implementation and
Chapter 2: Remote Procedure Call (RPC)
Chapter 2: Remote Procedure Call (RPC) Gustavo Alonso Computer Science Department Swiss Federal Institute of Technology (ETHZ) [email protected] http://www.iks.inf.ethz.ch/ Contents - Chapter 2 - RPC
Network Management. Jaakko Kotimäki. Department of Computer Science Aalto University, School of Science. 21. maaliskuuta 2016
Jaakko Kotimäki Department of Computer Science Aalto University, School of Science Outline Introduction SNMP architecture Management Information Base SNMP protocol Network management in practice Niksula
Manjrasoft Market Oriented Cloud Computing Platform
Manjrasoft Market Oriented Cloud Computing Platform Innovative Solutions for 3D Rendering Aneka is a market oriented Cloud development and management platform with rapid application development and workload
Active-Active ImageNow Server
Active-Active ImageNow Server Getting Started Guide ImageNow Version: 6.7. x Written by: Product Documentation, R&D Date: March 2014 2014 Perceptive Software. All rights reserved CaptureNow, ImageNow,
MANAGING NETWORK COMPONENTS USING SNMP
MANAGING NETWORK COMPONENTS USING SNMP Abubucker Samsudeen Shaffi 1 Mohanned Al-Obaidy 2 Gulf College 1, 2 Sultanate of Oman. Email: [email protected] [email protected] Abstract:
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
ELEN 602: Computer Communications and Networking. Socket Programming Basics
1 ELEN 602: Computer Communications and Networking Socket Programming Basics A. Introduction In the classic client-server model, the client sends out requests to the server, and the server does some processing
Final Exam. Route Computation: One reason why link state routing is preferable to distance vector style routing.
UCSD CSE CS 123 Final Exam Computer Networks Directions: Write your name on the exam. Write something for every question. You will get some points if you attempt a solution but nothing for a blank sheet
Load Balancer. Introduction. A guide to Load Balancing.
Technical Note Load Balancer A guide to Load Balancing. Introduction This technical note introduces the load balancer and examples for configuring your Allied Telesyn equipment to run load balancer. The
Distributed Systems Architectures
Software Engineering Distributed Systems Architectures Based on Software Engineering, 7 th Edition by Ian Sommerville Objectives To explain the advantages and disadvantages of different distributed systems
Question: 3 When using Application Intelligence, Server Time may be defined as.
1 Network General - 1T6-521 Application Performance Analysis and Troubleshooting Question: 1 One component in an application turn is. A. Server response time B. Network process time C. Application response
Overview of Luna High Availability and Load Balancing
SafeNet HSM TECHNICAL NOTE Overview of Luna High Availability and Load Balancing Contents Introduction... 2 Overview... 2 High Availability... 3 Load Balancing... 4 Failover... 5 Recovery... 5 Standby
