Migrating a real-time transaction evaluation and scoring solution to HP NonStop platform

Size: px
Start display at page:

Download "Migrating a real-time transaction evaluation and scoring solution to HP NonStop platform"

Transcription

1 Technical white paper Migrating a real-time transaction evaluation and scoring solution to HP NonStop platform Table of contents Introduction... 2 Evaluation service... 2 Scoring service... 2 Migration overview... 2 Database migration... 3 Table keys and partitioning... 4 Database access... 4 Application migration... 4 Evaluation service... 4 Spring... 4 Inter-process communications... 5 Scoring service... 5 Apache Tomcat-based user interface application... 5 Application deployment using Pathway... 5 General software vendor architecture and the Pathway environment... 6 Evaluation service... 9 Scoring service NSJSP Based on the Apache Tomcat Servlet container Conclusion Reference information... 15

2 Introduction A large corporate customer was looking for a real-time fraud detection application. They wanted the software to be flexible and to be able to perform extremely well, even under high transaction volumes. The software had to be scalable so that it could grow with their business. It had to be cost-effective, manageable, and always available. The customer found an application that met their needs, but it wasn t NonStop. This paper describes how HP and the software vendor responded to the customer s demand/request to port their real-time fraud detection applications to the HP NonStop platform. The migration of a software vendor s real-time transaction evaluation and scoring applications from Oracle to HP NonStop demonstrates the ease and advantages of re-hosting a modern application based on some of the leading Open Source Frameworks. The NonStop platform supports many of the most popular frameworks and provides a compelling application development environment using Open Source tools like Eclipse. This software vendor provides payments processing and fraud prevention services and products around the world. The fraud prevention product suite includes applications used to detect fraud in real-time (in the transaction path) and near real-time (shortly after the transaction was processed). This white paper discusses the migration of the real-time fraud detection (evaluation service) component and the scoring service of their application suite, which differentiates this solution from others in the marketplace. Evaluation service The evaluation service application provides fraud detection as a service to other applications. It typically sits in the middle of ATM and/or POS authorization processing, receiving transactions in the form of an industry-standard message and responding to the calling application with an industry-standard message. The evaluation service, when directed by configurable business rules, calls the scoring service for required services. The evaluation service application was built using a Plain Old Java Object (POJO) approach, and various Open Source Frameworks, including Spring Framework (Spring) and Hibernate that are available on the NonStop platform. These frameworks and the flexible programming environment on the NonStop facilitated a smooth application migration. The Open Source Frameworks were augmented with the HP JToolkit for NonStop servers. This allowed the evaluation service to function in the HP NonStop Pathway environment as a Pathway server class. Spring and Hibernate combine to eliminate vendor-specific database access issues. Scoring service The scoring service application was built using the C language and embedded SQL. The application was well-structured for change but required a full rewrite of the database access portion of the code to replace Oracle OCI with embedded SQL/MX statements. Migration overview This migration was done as a proof of concept (POC) in the context of eventual deployment on HP Integrity NonStop BladeSystem at a customer site. The customer provided service level expectations for the maximum allowable response time and an expected transaction throughput rate. There was an implicit assumption that the application could be scaled out to provide even greater throughput with reduced response time. Much of the POC activity was geared toward meeting these goals. The migration occurred in three distinct phases, beginning with a pre-poc analysis of the code and database. This was a week-long effort that involved several contributors. The code and the Oracle database schema and tables were evaluated, primarily by manual methods. This revealed differences in Oracle and NonStop DDL, the use of triggers, and a cursory review of some representative PL/SQL code. The application review looked for the general architecture of the various applications and for SQL statements buried in the code. A directional statement with a straw man approach was produced and delivered to both the software vendor and HP management teams so that a joint go forward business plan could be developed. The beta version of the Ispirer SQLWays tool was used to assist with the database evaluation. As a byproduct, feature and functional gaps in the tool were identified by its use in this real life case. With this feedback, Ispirer enhanced the tool, and the current version of SQLWays incorporates fixes and improvements for DDL conversion, trigger features, PL/SQL functionality, and others. The second phase of the migration was the POC to evaluate the feasibility of running the code as-is with minor code changes and a straightforward database migration. This was important to demonstrate the openness of both the software vendor s applications and the NonStop platform. 2

3 As the POC evolved, the project team identified code and database changes that would improve performance either generally or on the NonStop specifically (primarily the addition of indexes and re-partitioning of tables). Small code changes were applied to the applications so that NonStop technology could be better exploited. Many of these were implemented in a post-poc phase that also prepared the applications for pilot deployment in the customer s production environment. Application performance was continuously monitored as changes were staged and deployed. Database migration The initial review of the Oracle version of software vendor s database indicated no showstoppers and very few unexpected uses of Oracle database technologies. The DDL was reasonably straightforward and made use of only a small number of Oracle data types. The chart below (Table 1) maps Oracle data types to the NonStop SQL/MX equivalents used for this project. Table 1: Oracle to SQL/MX data types Oracle data type Data characteristic NonStop SQL/MX data type Char Fixed length character data Char VARCHAR2 Variable length character data VARCHAR Date Date and time to second Timestamp (0) Date Date and time to microseconds Timestamp (6) or Timestamp Number (less than 5 digits) 2 byte integer value Smallint Number (less than 10 digits) 4 byte integer value Integer Number (less than 19 digits) 8 byte integer value Largeint Integer Defaults to number (38) Numeric (38) Number(p,s) Number (>18 and <129 digits) BLOB P = Precision S = Scale Precision = number of digits Scale = 0 BLOB content can be saved in a VARCHAR column if size for data, length indicator, and optional null terminator is <= available space in the row Numeric(p,s) Numeric (number of digits) VARCHAR The initial review did reveal the use of column names that are reserved words for NonStop SQL. These column names were action and value. Although NonStop SQL provides the option of quoting the column names so that the database engine no longer considers them to be reserved words, this would require changes to the application code wherever the column names were referenced. Because the application had to be changed in any case, the HP and software vendor team chose more meaningful column names and changed the code and the database. The initial review also identified triggers within the Oracle database. Ultimately, these were not used in the NonStop SQL deployment, but new triggers were added during the POC replacing some programmatic functions. The Oracle PL/SQL code was re-written and re-hosted as methods (functions) within the software vendor s near-real-time (NRT) application (not described in this document or included in the new application code created for the NonStop implementation). 3

4 Table keys and partitioning Identification of appropriate primary key, storage and partitioning columns is crucial to optimizing performance on the NonStop platform. Proper partitioning of database tables must accommodate even distribution of data volume and access across all partitions and computing resources. Two partitioning options are available: range and hash partitioning. Using range partitioning with natural keys can cause uneven data volume distribution in some cases. As is common among Oracle database deployments, surrogate keys are heavily used in the software vendor s database, and the Oracle Sequence Number Generator is used to produce unique identifier (UID) values for surrogate keys. While this may be acceptable for Oracle deployments, it did not meet this project s requirement for a UID that provides uniqueness, sequentially ordered data, and flexibility for partitioning. Code to generate a NonStop UID that met user requirements was developed in Java and packaged in a library that is callable by various application objects. Database access The Java-based evaluation service application uses JDBC (Type 2 driver) and Hibernate to access database tables. Appropriate property files (jdbc.properties and hibernate.properties) are used to configure the respective data access products. Many (or most) proprietary vendor database deployment considerations are hidden by these products. Hibernate also requires a dialect file that allows the standard Hibernate framework to function correctly with each vendor database product. The dialect file, hibernate3sqlmx.jar, is provided for use with NonStop SQL/MX. JDBC features, like connection pooling and statement caching, required further consideration. These are supported by the JDBC driver and application level libraries that are discussed later in this document (under Application Migration: Evaluation Service). Application migration This migration involved Java and C applications, which will be discussed separately here. This section also includes discussion of a Web-based user interface. Deployment of the evaluation service and scoring service applications using Pathway is covered as a single topic in the following section. Evaluation service Evaluation service is a Java application that consists of several branches of business logic and depends on access to several tables, including a transaction log. Key to the ease of migration were the structure of the application and the use of Open Source Frameworks, primarily Spring and Hibernate. The Model-View-Controller (MVC) design pattern was used to provide consistent structuring and layering for all code components. This method of code organization requires decoupling of business code and data access code. Thus, it was a relatively simple and straightforward task to use a NonStop data source in place of an Oracle data source. Minor changes to the jdbc.properties and hibernate.properties files were required. Two libraries (jdbcmx.jar and hibernate.jar) were added to the application lib directory to support the NonStop deployment. A relatively new NonStop product, Module File Cache, was configured for use by the evaluation service application. It is enabled through modification of the jdbc.properties file. Hibernate capabilities were augmented using two additional libraries (c3p0 and EHCache). The application manages a connection pool facilitated by c3p0 and a statement cache supported by EHCache. Spring Spring manages transaction boundaries (transaction unit of work) using declarative transaction attributes. These are implemented through the use of annotations and support the following: Propagation behavior Isolation level Read-only access Transaction timeout Rollback rules (no-rollback-for and rollback-for) Spring annotations alone did not provide the desired level and granularity of transaction management. Transaction boundaries were delineated at specific points in the code by introducing a pointcut where we wanted to apply aspect advice. 4

5 Inter-process communications Previous versions of evaluation service used TCP/IP sockets to communicate with the front-end switch application and the Scoring Service. While this is a workable model on the NonStop platform, it does not exploit the platform s ability to scale out simply and efficiently. Use of sockets I/O also imposes greater latency compared to message passing, the standard practice on the NonStop platform. Scoring service The scoring service is used by the evaluation service application to refine its evaluation of the probability of fraud for the current transaction. It is written in the C language and compiled successfully using both the Eclipse-NSDEE-PC-based C language cross compiler and the NonStop host-based compiler. Several previously used libraries were not needed for deployment on the NonStop platform and a few libraries were added for the same reason. Previous releases of the scoring service application supported the Oracle and IBM database engines, each accessed through their respective call level APIs (like Oracle s OCI). The NonStop scoring service deployment uses embedded SQL statements to provide a static (predictable) and better performing environment in which SQL statements are precompiled and data access is optimized. The scoring service application is deployed as a context-free and single-threaded service, making it a perfect candidate for deployment as a NonStop Pathway server class. The Pathway model has additional benefits: the scoring service could be run under multiple server classes, each with its own priority level and deployment characteristics. Apache Tomcat-based user interface application The software vendor s product suite includes some Web-based user interface applications developed for the Apache Tomcat environment. The real-time Web console, for example, is used to maintain configuration and business rules tables. This application was initially tested using the NonStop NSJSP product that works in conjunction with the HP itp WebServer product. NSJSP is a deep port of Apache Tomcat 6 that has been optimized for the NonStop platform. The latest version is compatible with Apache Tomcat 7. The real-time Web console also uses Open Source Frameworks and the MVC design pattern. Database access occurs via Hibernate and JDBC, initially with the Type 2 driver. During the course of the POC, the customer decided to deploy the application in a Tomcat container running on a Linux server. This application re-hosting is easily accomplished as the NonStop resident database is remotely accessed using the SQL/MX JDBC Type 4 driver. Application deployment using Pathway NonStop deployments typically run in Pathway environments that use TS/MP and related products as this is the easiest way to exploit the platform. TS/MP supports ease of development and manageability and the fundamental strengths and benefits of NonStop systems: data integrity, fault tolerance, high performance at low cost, system security, scalability, and distributed processing. Availability, scalability, manageability, and the ability to meet or exceed performance objectives were important for this customer. The previously proposed deployment offered less availability and scalability and the potential of failing to meet performance goals all built on a more complex and less manageable group of loosely coupled servers. Use of modern design principles allowed the software vendor s Java and C applications to slip neatly into Pathway environments on the NonStop Server and to reap NonStop benefits. 5

6 General software vendor architecture and the Pathway environment Figure 1 shows the general software vendor application architecture as originally deployed. TCP/IP with socket I/O is used for communication between the various platforms and applications. Figure 1: Original software vendor deployment NonStop Linux Linux Switch TCP/IP Evaluation Service () TCP/IP Scoring Service () Messages originate with the switch application, which resides on a NonStop system, and are transmitted to the evaluation service (evaluate) application, originally deployed on a Linux system. The evaluate application sends a specially formatted message to the scoring service (score) application on another Linux server. The evaluate application combines the contents of the score s reply with the results of its own processing and replies to the switch application. Figure 2 shows a simplified, shorthand version of Figure 1. It will be a building block of future diagrams. Figure 2: Simplified view of original architecture IP-address:port IP-address:port Switch This deployment works best when each of the applications is deployed as a single instance and a specific IP address and port combination is associated with paired instances of the evaluate and score applications. The flexible software vendor architecture allows scaling out by using additional Linux servers to host more copies of the evaluate and score applications as the workload increases. Each application instance requires a unique IP address and port number. Data distributors are required to scale out the deployment of the sockets-based applications and provide some degree of load balancing across all computing resources. To make this work, each distributor maintains a list of port numbers that are associated with the target application instances. As incoming transactions are accepted, the data distributor decides which resource to utilize and routes the transaction to that resource using the appropriate IP-address and port number. While this permits better transaction distribution over the various instances deployed at each level of the architecture, it is a complex environment to manage, as shown in Figure 3. 6

7 Figure 3: Original scale out architecture Switch 1000 Data distributor Data distributor 1101 for evaluate instance 1 for score instance instance instance instance instance instance X 1199 instance X Although many details have been hidden, figure 3 shows that unique port numbers must be assigned to each server/service instance. This indicates probable operational complexity, because each of these connections must be maintained while the system of systems is up and running, which, for this kind of application is likely to be 24 hours a day x 7 days per week x 365 days per year. The use of data distributors, while beneficial for improved scalability, adversely affects the availability characteristics of this architecture. Failure of an instance of either data distributor prevents any transaction from being completed. Introduction of redundant data distributors helps to relieve some of the availability issues. This assumes that the switch and evaluate applications have built in mechanisms that can be used to retry failed transactions. This also assumes that each application can dynamically reroute transactions to the appropriate available resource. All of this messiness real and potential can be eliminated with a Pathway deployment where each application communicates with other applications using the standard NonStop message interface, the $receive file, used for inter-process messaging on NonStop systems. The Pathsend API masks the low-level nuances associated with direct file system I/O. Figure 4 illustrates this. Figure 4: Simple NonStop deployment architecture NonStop NonStop Switch Pathsend Evaluation Service () Pathsend Scoring Service () In this example, the evaluation service (evaluate) and scoring service (score) applications are deployed as Pathway server classes on the same NonStop system. However, they could have been simply and transparently deployed on two different NonStop systems. 7

8 The server classes (evaluate and score in the diagram) are configured to start N number of static server instances in assigned CPUs at an assigned relative priority level. The actual number of processes that service requests at each level of the architecture is independently managed and does not rely on a data distributor level. Elimination of the data distributor level also reduces latency. Underlying sub-system components manage the complexity of keeping communication channels open and available. These same sub-system components attempt to balance the transaction load across the configured server process instances of the server class (resource pool). Figure 5 shows the Pathway version of figure 3. Figure 5: NonStop deployment showing Server class pools Switch Pathsend Pathway server class Pathsend Pathway server class instance 1 instance 1 instance 2 instance 2 instance 3 instance 3 instance N instance N Under Pathway, the switch application views the evaluation service as a pool of generic resources, that is, the evaluate server class. The switch sends a transaction request message to the generic evaluate server class, and the underlying system software determines which instance should service the request. Likewise, there is no coupling of paired instances of the evaluation service and the scoring service: the evaluation service application, running as an instance in the evaluate server class, sends its requests to the generic score server class. Underlying system software determines which score instance should service the request and it ensures that reply messages are returned to the source of the request. Server class pools are configured to be as large as required to match workload demands. NonStop sub-system components transparently assign and utilize server class process instances in a balanced fashion. This simple but elegant architecture proves to be beneficial for both application scalability and availability. Experience has shown that complex environments are inherently less reliable and less available than simple environments. 8

9 Evaluation service Prior to the port to NonStop, the Java-based evaluation service application used socket I/O to communicate with the front-end switch and scoring service applications. The NonStop deployment uses direct message I/O through the underlying NonStop kernel message and file systems. For Java-based applications, this is facilitated by use of the JToolkit product. It includes library functions that support JPathway (capability to read messages from $receive) and JPathsend (capability to send messages via $receive to a Pathway server class). Figure 6 shows how the evaluation service application was structured to handle socket I/O. Figure 6: Evaluation service (evaluate) using socket I/O to communicate with remote applications Switch TCP/IP TCP/IP Socket I/O handler Socket I/O handler Spring Framework Core libraries Business logic Spring DAO implementation Hibernate JDBC Oracle database 9

10 Figure 7 shows the NonStop version of the application, which uses the NonStop message and file systems ($receive) for inter-process communication. Figure 7: Evaluation service (evaluate) using NonStop message handling to communicate with remote applications Switch Pathsend Pathsend JPathway (from JToolkit) Spring Framework Core libraries JPathsend (from JToolkit) Business logic Spring DAO implementation Hibernate JDBC NonStop SQL database NonStop functionality was introduced with minimal impact to any of the core application functionality. Only the socket I/O handling methods needed to be replaced by the JToolkit libraries and methods. 10

11 Scoring service The scoring service application acts as a service to the evaluation service application. It is written in C, not Java. In the previous version, the evaluation service and scoring service applications communicated via TCP/IP using socket I/O, as shown in figure 8. Figure 8: Scoring service (score) using socket I/O to communicate with evaluation service (evaluate) TCP/IP Socket I/O handler Business logic Oracle OCI statements Oracle table The NonStop version uses the NonStop message and file systems ($receive) for communication between NonStop processes. Because the scoring service application is written in C and uses standard library functions, I/O for the $receive file uses regular file system calls. This is shown in figure 9. 11

12 Figure 9: Scoring service (score) using NonStop message handling to communicate with evaluation service (evaluate) Pathsend Read and write $receive Business logic Embedded SQL statements NonStop SQL table The overall structure of the scoring service code remained intact with minor changes for message handling and database I/O. The business logic was not altered. NSJSP Based on the Apache Tomcat Servlet container The real-time Web console application was originally tested with NonStop NSJSP and itp WebServer. Ultimately, the customer chose to deploy the application in a Tomcat container running on a separate system. Deploying a Web application to the NSJSP Servlet container on the NonStop Server is the same as deploying the Web application to the Apache Tomcat Catalina container on a Linux server. The difference is application scalability because the NSJSP container is deployed as a TS/MP (Pathway) server class. 12

13 Figure 10 shows how NSJSP is deployed under itp WebServer. Figure 10: NSJSP deployment under itp WebServer 1 Network TCP/IP v6 CPU 0 CPU 1 CPU 2 CPU 3 Szweb HTTPD HTTPD HTTPD HTTPD itp Secure WebServer Pathsend or File system AP NSJSP NSJSP NSJSP NSJSP NSJSP Installation The following manual excerpts explicate figure 10: NSJSP 7.0 is an enhanced implementation of the Apache Tomcat release. NSJSP is designed to be installed in an itp Secure WebServer environment and to use the WebServer to handle the HTTP protocol. A NonStop connector was developed for NSJSP to enable communication between the itp Secure WebServer and NSJSP, using Inter-process Communication (IPC). NSJSP processes are also designed to run in server classes, which are defined as part of an itp Secure WebServer TS/MP configuration. 2 NSJSP architecture shows the following: An itp Secure WebServer installation in a TS/MP environment with a PATHMON, called $zweb. The itp Secure WebServer Server Class has multiple HTTPD processes distributed across four CPUs. A single NSJSP installation in this itp Secure WebServer environment. The NSJSP installation also comprises multiple NSJSP processes distributed across the four CPUs. The HTTPD processes communicate with NSJSP processes using either Pathsend API or the file system API. 3 1 NonStop Servlets for JavaServer Pages (NSJSP) 7.0 system administrator s guide p NonStop Servlets for JavaServer Pages (NSJSP) 7.0 system administrator s guide p NonStop Servlets for JavaServer Pages (NSJSP) 7.0 system administrator s guide p

14 Figure 11 shows message flow for a user request. Figure 11: Virtual hosting in a sample itp Secure WebServer environment 4 This architecture makes it easy to exploit existing services that are already deployed in Pathway server classes. The web application functions as the client of the desired service. An appropriate request message can be sent to the service using Pathsend functions. Figure 12 illustrates how a pathway hosted service can be accessed from a web application. Figure 12: Accessing a Pathway based service from a Web application 4 NonStop Servlets for JavaServer Pages (NSJSP) 7.0 system administrator s guide p

15 Conclusion Customers derive many benefits through migration of applications to NonStop. Typically these benefits are inherited through use of the NonStop Pathway environment. Plain Old Java Objects are well supported by the NonStop platform, especially when deployed as Pathway server classes. The NonStop Server supports popular Open Source Frameworks that can ease the migration effort. Key frameworks include Spring and Hibernate. Data access through an industry-standard framework like Hibernate or through use of the JDBC API masks differences between vendor database products. Database migration can be a straightforward and easy task if RDBMS vendor-specific functionality was avoided. Open source and third-party tools are available to assist with the migration effort should they be required. The migration of this software vendor s applications is one more proof point that enterprise class applications can find a new home and flourish on the HP NonStop platform. Additional information is available for the actual customer deployment of the software vendor s applications on NonStop. Reference information Detailed information about the references mentioned below is available at NonStop Technical Library (NTL) hp.com/go/nonstop-docs HP Integrity NonStop J-Series C/C++ Programmer s Guide for NonStop Systems Guardian Procedure Calls Reference Manual itp Secure WebServer System Administrator s Guide JDBC Type 2 Driver Programmer s Reference for SQL/MX Release 3.1 JDBC Type 4 Driver Programmer s Reference for SQL/MX Release 3.1 JToolkit for Java API Reference Pages NonStop Development Environment for Eclipse (NSDEE) Pointer NonStop Development Environment for Eclipse Debugging Supplement NonStop Development Environment for Eclipse User Guide NonStop Server for Java 6.0 Programmer s Reference NonStop Server for Java 6.0 Tools Reference Pages NonStop Servlets for JavaServer Pages (NSJSP) 7.0 System Administrator s Guide NonStop Servlets for JavaServer Pages (NSJSP) Configuration White Paper Open Source Java Frameworks on NonStop User s Guide (Spring 3.0.2, Hibernate 3.5.1, My Faces 2.0.2, Axis2/Java 1.5.2) SQL/MX 3.1 Programming Manual for C and COBOL SQL/MX 3.1 Reference Manual TS/MP Pathsend and Server Programming Manual Get connected hp.com/go/getconnected Current HP driver, support, and security alerts delivered directly to your desktop Copyright 2012 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. Java and Oracle are registered trademarks of Oracle and/or its affiliates. 4AA4-0366ENW, Created May

HP Education Services

HP Education Services HP Education Services itp WebServer Workshop for NonStop Servers (U4160S) Learn the basics of installing, configuring, and securing HP itp WebServer solutions along with the management procedures needed

More information

Security Overview of the Integrity Virtual Machines Architecture

Security Overview of the Integrity Virtual Machines Architecture Security Overview of the Integrity Virtual Machines Architecture Introduction... 2 Integrity Virtual Machines Architecture... 2 Virtual Machine Host System... 2 Virtual Machine Control... 2 Scheduling

More information

Version 14.0. Overview. Business value

Version 14.0. Overview. Business value PRODUCT SHEET CA Datacom Server CA Datacom Server Version 14.0 CA Datacom Server provides web applications and other distributed applications with open access to CA Datacom /DB Version 14.0 data by providing

More information

Landscape Design and Integration. SAP Mobile Platform 3.0 SP02

Landscape Design and Integration. SAP Mobile Platform 3.0 SP02 Landscape Design and Integration SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC01916-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved. No part

More information

Getting started with API testing

Getting started with API testing Technical white paper Getting started with API testing Test all layers of your composite applications, not just the GUI Table of contents Executive summary... 3 Introduction... 3 Who should read this document?...

More information

Performance brief for IBM WebSphere Application Server 7.0 with VMware ESX 4.0 on HP ProLiant DL380 G6 server

Performance brief for IBM WebSphere Application Server 7.0 with VMware ESX 4.0 on HP ProLiant DL380 G6 server Performance brief for IBM WebSphere Application Server.0 with VMware ESX.0 on HP ProLiant DL0 G server Table of contents Executive summary... WebSphere test configuration... Server information... WebSphere

More information

The Advantages of Multi-Port Network Adapters in an SWsoft Virtual Environment

The Advantages of Multi-Port Network Adapters in an SWsoft Virtual Environment The Advantages of Multi-Port Network Adapters in an SWsoft Virtual Environment Introduction... 2 Virtualization addresses key challenges facing IT today... 2 Introducing Virtuozzo... 2 A virtualized environment

More information

HP Intelligent Management Center Enterprise Software. Platform. Key features. Data sheet

HP Intelligent Management Center Enterprise Software. Platform. Key features. Data sheet Data sheet HP Intelligent Management Center Enterprise Software Platform Key features Highly flexible and scalable deployment options Powerful administration control Rich resource management Detailed performance

More information

Oracle Net Services for Oracle10g. An Oracle White Paper May 2005

Oracle Net Services for Oracle10g. An Oracle White Paper May 2005 Oracle Net Services for Oracle10g An Oracle White Paper May 2005 Oracle Net Services INTRODUCTION Oracle Database 10g is the first database designed for enterprise grid computing, the most flexible and

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows and Linux operating systems Software Version: 9.10 Business Process Insight Server Administration Guide Document Release Date: August 2011 Software Release

More information

CA IDMS Server r17. Product Overview. Business Value. Delivery Approach

CA IDMS Server r17. Product Overview. Business Value. Delivery Approach PRODUCT sheet: CA IDMS SERVER r17 CA IDMS Server r17 CA IDMS Server helps enable secure, open access to CA IDMS mainframe data and applications from the Web, Web services, PCs and other distributed platforms.

More information

Using HP StoreOnce Backup systems for Oracle database backups

Using HP StoreOnce Backup systems for Oracle database backups Technical white paper Using HP StoreOnce Backup systems for Oracle database backups Table of contents Introduction 2 Technology overview 2 HP StoreOnce Backup systems key features and benefits 2 HP StoreOnce

More information

An introduction to SOA and the HP NonStop server environment

An introduction to SOA and the HP NonStop server environment Technical white paper An introduction to SOA and the HP NonStop server environment Table of contents About this document SOA is everywhere What is SOA? Why should you care about SOA? What is a service?

More information

HP NonStop SFTP API Reference Manual

HP NonStop SFTP API Reference Manual . HP NonStop SFTP API Reference Manual HP Part Number: 659755-003 Published: January 2014 Edition: HP NonStop SFTP API 1.4 G06.21 and subsequent G-series RVUs H06.07 and subsequent H-series RVUs J06.03

More information

HP and Mimosa Systems A system for email archiving, recovery, and storage optimization white paper

HP and Mimosa Systems A system for email archiving, recovery, and storage optimization white paper HP and Mimosa Systems A system for email archiving, recovery, and storage optimization white paper Mimosa NearPoint for Microsoft Exchange Server and HP StorageWorks 1510i Modular Smart Array Executive

More information

HP CloudSystem Enterprise

HP CloudSystem Enterprise Technical white paper HP CloudSystem Enterprise Creating a multi-tenancy solution with HP Matrix Operating Environment and HP Cloud Service Automation Table of contents Executive summary 2 Multi-tenancy

More information

HP network adapter teaming: load balancing in ProLiant servers running Microsoft Windows operating systems

HP network adapter teaming: load balancing in ProLiant servers running Microsoft Windows operating systems HP network adapter teaming: load balancing in ProLiant servers running Microsoft Windows operating systems white paper Introduction... 2 Overview of teaming and load balancing... 2 Transmit Load Balancing...

More information

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

Traffic monitoring with sflow and ProCurve Manager Plus

Traffic monitoring with sflow and ProCurve Manager Plus An HP ProCurve Networking Application Note Traffic monitoring with sflow and ProCurve Manager Plus Contents 1. Introduction... 3 2. Prerequisites... 3 3. Network diagram... 3 4. About the sflow protocol...

More information

Using HP StoreOnce Backup Systems for NDMP backups with Symantec NetBackup

Using HP StoreOnce Backup Systems for NDMP backups with Symantec NetBackup Technical white paper Using HP StoreOnce Backup Systems for NDMP backups with Symantec NetBackup Table of contents Executive summary... 2 Introduction... 2 What is NDMP?... 2 Technology overview... 3 HP

More information

HP Storage Essentials Storage Resource Management Software end-to-end SAN Performance monitoring and analysis

HP Storage Essentials Storage Resource Management Software end-to-end SAN Performance monitoring and analysis HP Storage Essentials Storage Resource Management Software end-to-end SAN Performance monitoring and analysis Table of contents HP Storage Essentials SRM software SAN performance monitoring and analysis...

More information

Innovative technology for big data analytics

Innovative technology for big data analytics Technical white paper Innovative technology for big data analytics The HP Vertica Analytics Platform database provides price/performance, scalability, availability, and ease of administration Table of

More information

A closer look at HP LoadRunner software

A closer look at HP LoadRunner software Technical white paper A closer look at HP LoadRunner software Table of contents Sizing up the system 2 The limits of manual testing 2 A new take on testing: the HP LoadRunner solution 3 The HP LoadRunner

More information

Oracle Database. Products Available on the Oracle Database Examples Media. Oracle Database Examples. Examples Installation Guide 11g Release 2 (11.

Oracle Database. Products Available on the Oracle Database Examples Media. Oracle Database Examples. Examples Installation Guide 11g Release 2 (11. Oracle Database Examples Installation Guide 11g Release 2 (11.2) E10846-01 August 2009 This document describes how to install and configure the products available on the Oracle Database Examples media.

More information

HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide

HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide Product overview... 3 Vulnerability scanning components... 3 Vulnerability fix and patch components... 3 Checklist... 4 Pre-installation

More information

HP NonStop JDBC Type 4 Driver Performance Tuning Guide for Version 1.0

HP NonStop JDBC Type 4 Driver Performance Tuning Guide for Version 1.0 HP NonStop JDBC Type 4 Driver November 22, 2004 Author: Ken Sell 1 Introduction Java applications and application environments continue to play an important role in software system development. Database

More information

features at a glance

features at a glance hp availability stats and performance software network and system monitoring for hp NonStop servers a product description from hp features at a glance Online monitoring of object status and performance

More information

Performance characterization report for Microsoft Hyper-V R2 on HP StorageWorks P4500 SAN storage

Performance characterization report for Microsoft Hyper-V R2 on HP StorageWorks P4500 SAN storage Performance characterization report for Microsoft Hyper-V R2 on HP StorageWorks P4500 SAN storage Technical white paper Table of contents Executive summary... 2 Introduction... 2 Test methodology... 3

More information

Printing and Imaging Support on HP Compaq Thin Clients

Printing and Imaging Support on HP Compaq Thin Clients Printing and Imaging Support on HP Compaq Thin Clients Overview.............................................................. 2 Microsoft Windows XP Embedded Operating System............................

More information

How To Write An Article On An Hp Appsystem For Spera Hana

How To Write An Article On An Hp Appsystem For Spera Hana Technical white paper HP AppSystem for SAP HANA Distributed architecture with 3PAR StoreServ 7400 storage Table of contents Executive summary... 2 Introduction... 2 Appliance components... 3 3PAR StoreServ

More information

DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service

DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service DB2 Connect for NT and the Microsoft Windows NT Load Balancing Service Achieving Scalability and High Availability Abstract DB2 Connect Enterprise Edition for Windows NT provides fast and robust connectivity

More information

HP Smart Array Controllers and basic RAID performance factors

HP Smart Array Controllers and basic RAID performance factors Technical white paper HP Smart Array Controllers and basic RAID performance factors Technology brief Table of contents Abstract 2 Benefits of drive arrays 2 Factors that affect performance 2 HP Smart Array

More information

1 Changes in this release

1 Changes in this release Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 4.0 E39883-01 June 2013 This document provides late-breaking information as well as information that is not yet part

More information

EWeb: Highly Scalable Client Transparent Fault Tolerant System for Cloud based Web Applications

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

More information

Achieving Mainframe-Class Performance on Intel Servers Using InfiniBand Building Blocks. An Oracle White Paper April 2003

Achieving Mainframe-Class Performance on Intel Servers Using InfiniBand Building Blocks. An Oracle White Paper April 2003 Achieving Mainframe-Class Performance on Intel Servers Using InfiniBand Building Blocks An Oracle White Paper April 2003 Achieving Mainframe-Class Performance on Intel Servers Using InfiniBand Building

More information

HP and Business Objects Transforming information into intelligence

HP and Business Objects Transforming information into intelligence HP and Business Objects Transforming information into intelligence 1 Empowering your organization Intelligence: the ability to acquire and apply knowledge. For businesses today, gaining intelligence means

More information

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02 Data Integration using Integration Gateway SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC02000-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved.

More information

Introducing logical servers: Making data center infrastructures more adaptive

Introducing logical servers: Making data center infrastructures more adaptive Introducing logical servers: Making data center infrastructures more adaptive technology brief, 2 nd edition Abstract... 2 Introduction... 2 Overview of logical servers... 3 Why use logical servers?...

More information

Redundancy in enterprise storage networks using dual-domain SAS configurations

Redundancy in enterprise storage networks using dual-domain SAS configurations Redundancy in enterprise storage networks using dual-domain SAS configurations technology brief Abstract... 2 Introduction... 2 Why dual-domain SAS is important... 2 Single SAS domain... 3 Dual-domain

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays. Red Hat Performance Engineering

Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays. Red Hat Performance Engineering Removing Performance Bottlenecks in Databases with Red Hat Enterprise Linux and Violin Memory Flash Storage Arrays Red Hat Performance Engineering Version 1.0 August 2013 1801 Varsity Drive Raleigh NC

More information

Oracle BI EE Implementation on Netezza. Prepared by SureShot Strategies, Inc.

Oracle BI EE Implementation on Netezza. Prepared by SureShot Strategies, Inc. Oracle BI EE Implementation on Netezza Prepared by SureShot Strategies, Inc. The goal of this paper is to give an insight to Netezza architecture and implementation experience to strategize Oracle BI EE

More information

Legal Notices... 2. Introduction... 3

Legal Notices... 2. Introduction... 3 HP Asset Manager Asset Manager 5.10 Sizing Guide Using the Oracle Database Server, or IBM DB2 Database Server, or Microsoft SQL Server Legal Notices... 2 Introduction... 3 Asset Manager Architecture...

More information

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database HP Vertica Integration with SAP Business Objects: Tips and Techniques HP Vertica Analytic Database HP Big Data Document Release Date: June 23, 2015 Legal Notices Warranty The only warranties for HP products

More information

Inside the Digital Commerce Engine. The architecture and deployment of the Elastic Path Digital Commerce Engine

Inside the Digital Commerce Engine. The architecture and deployment of the Elastic Path Digital Commerce Engine Inside the Digital Commerce Engine The architecture and deployment of the Elastic Path Digital Commerce Engine Contents Executive Summary... 3 Introduction... 4 What is the Digital Commerce Engine?...

More information

HOUG Konferencia 2015. Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache. A few facts in 10 minutes

HOUG Konferencia 2015. Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache. A few facts in 10 minutes HOUG Konferencia 2015 Oracle TimesTen In-Memory Database and TimesTen Application-Tier Database Cache A few facts in 10 minutes Tamas.Kerepes@webvalto.hu What is TimesTen An in-memory relational database

More information

Choosing the best architecture for data protection in your Storage Area Network

Choosing the best architecture for data protection in your Storage Area Network Choosing the best architecture for data protection in your Storage Area Network Introduction... 2 SAN solution reliability... 2 A controller-based architecture for tape libraries... 3 Advanced features...

More information

IBM CICS Transaction Gateway for Multiplatforms, Version 7.0

IBM CICS Transaction Gateway for Multiplatforms, Version 7.0 Delivers highly flexible, security-rich and scalable SOA access to CICS applications IBM Multiplatforms, Version 7.0 Highlights Connects WebSphere SOA Introduces real-time monitoring Foundation server

More information

Taming Microsoft Environments with HP SiteScope Exchange and Active Directory Solution Templates

Taming Microsoft Environments with HP SiteScope Exchange and Active Directory Solution Templates Taming Microsoft Environments with HP SiteScope Exchange and Active Directory Solution Templates Quick and economical troubleshooting and performance management for Microsoft environments Business white

More information

HP Web Jetadmin Database Connector Plug-in reference manual

HP Web Jetadmin Database Connector Plug-in reference manual HP Web Jetadmin Database Connector Plug-in reference manual Copyright notice 2004 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation or translation without prior written permission

More information

Siebel Installation Guide for UNIX. Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014

Siebel Installation Guide for UNIX. Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014 Siebel Installation Guide for UNIX Siebel Innovation Pack 2013 Version 8.1/8.2, Rev. A April 2014 Copyright 2005, 2014 Oracle and/or its affiliates. All rights reserved. This software and related documentation

More information

Infor Web UI High Availability Deployment

Infor Web UI High Availability Deployment Infor Web UI High Availability Deployment Copyright 2012 Infor Important Notices The material contained in this publication (including any supplementary information) constitutes and contains confidential

More information

HP Intelligent Management Center Standard Software Platform

HP Intelligent Management Center Standard Software Platform Data sheet HP Intelligent Management Center Standard Software Platform Key features Highly flexible and scalable deployment Powerful administration control Rich resource management Detailed performance

More information

HP iscsi storage for small and midsize businesses

HP iscsi storage for small and midsize businesses HP iscsi storage for small and midsize businesses IP SAN solution guide With data almost doubling in volume every year, businesses are discovering that they need to take a strategic approach to managing

More information

HP reference configuration for entry-level SAS Grid Manager solutions

HP reference configuration for entry-level SAS Grid Manager solutions HP reference configuration for entry-level SAS Grid Manager solutions Up to 864 simultaneous SAS jobs and more than 3 GB/s I/O throughput Technical white paper Table of contents Executive summary... 2

More information

Module File Cache for NonStop SQL/MX

Module File Cache for NonStop SQL/MX Module File Cache for NonStop SQL/MX Technical white paper Table of contents Introduction... 2 Direct statements... 2 Reasons for an SQL Statement cache... 2 Re-using statements... 2 Organization of the

More information

Using HP StoreOnce D2D systems for Microsoft SQL Server backups

Using HP StoreOnce D2D systems for Microsoft SQL Server backups Technical white paper Using HP StoreOnce D2D systems for Microsoft SQL Server backups Table of contents Executive summary 2 Introduction 2 Technology overview 2 HP StoreOnce D2D systems key features and

More information

Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces

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

More information

SSL VPN Technology White Paper

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

More information

Mission-critical HP-UX 11i v2 WebSphere Reference Architecture White Paper

Mission-critical HP-UX 11i v2 WebSphere Reference Architecture White Paper Mission-critical HP-UX 11i v2 WebSphere Reference Architecture White Paper Designed for WebSphere Application Server 5.1, Oracle 9i and 10g for HP 9000 Servers Table of Contents Executive Summary... 2

More information

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide

An Oracle White Paper July 2011. Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide Oracle Primavera Contract Management, Business Intelligence Publisher Edition-Sizing Guide An Oracle White Paper July 2011 1 Disclaimer The following is intended to outline our general product direction.

More information

CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level. -ORACLE TIMESTEN 11gR1

CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level. -ORACLE TIMESTEN 11gR1 CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level -ORACLE TIMESTEN 11gR1 CASE STUDY Oracle TimesTen In-Memory Database and Shared Disk HA Implementation

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Database Troubleshooting Guide Table of contents Overview... 2 Using MS SQL Server... 2 Using PostgreSQL... 3 Troubleshooting steps... 3 Migrate Database...

More information

Exchange Storage Meeting Requirements with Dot Hill

Exchange Storage Meeting Requirements with Dot Hill Technology Insight Paper Exchange Storage Meeting Requirements with Dot Hill By Randy Kerns October, 2012 Enabling you to make the best technology decisions Exchange Storage Meeting Requirements with Dot

More information

HP SiteScope software

HP SiteScope software HP SiteScope software When you can see availability and performance, you can improve it. Improve the availability and performance of your IT environment HP SiteScope software helps you to agentlessly monitor

More information

Configuring and Administrating Microsoft SharePoint 2010 (10174) HK913S

Configuring and Administrating Microsoft SharePoint 2010 (10174) HK913S HP Education Services course data sheet Configuring and Administrating Microsoft SharePoint 2010 (10174) HK913S Course Overview The course teaches students how to install, configure and administer SharePoint,

More information

single sign-on capability

single sign-on capability hp NonStop servers hp white paper single sign-on capability Technology that provides corporate users with access to all of their information through a single portal website. case study: a growing internet

More information

Papermule Workflow. Workflow and Asset Management Software. Papermule Ltd

Papermule Workflow. Workflow and Asset Management Software. Papermule Ltd Papermule Workflow Papermule Workflow - the power to specify adaptive and responsive workflows that let the business manage production problems in a resilient way. Workflow and Asset Management Software

More information

HP Intelligent Management Center Standard Software Platform

HP Intelligent Management Center Standard Software Platform Data sheet HP Intelligent Management Center Standard Software Platform Key features Highly flexible and scalable deployment Powerful administration control Rich resource management Detailed performance

More information

zen Platform technical white paper

zen Platform technical white paper zen Platform technical white paper The zen Platform as Strategic Business Platform The increasing use of application servers as standard paradigm for the development of business critical applications meant

More information

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ

SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ SAP HANA SPS 09 - What s New? HANA IM Services: SDI and SDQ (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP SE or an SAP affiliate company. All rights reserved. 1 Agenda

More information

Supported Platforms. HP Vertica Analytic Database. Software Version: 7.1.x

Supported Platforms. HP Vertica Analytic Database. Software Version: 7.1.x HP Vertica Analytic Database Software Version: 7.1.x Document Release Date: 10/14/2015 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty statements

More information

Introduction to the HP Server Automation system security architecture

Introduction to the HP Server Automation system security architecture Introduction to the HP Server Automation system security architecture Technical white paper Table of contents Introduction to the HP Server Automation system security architecture... 2 Enforcing strict

More information

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Technical white paper Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Table of contents Abstract 2 Introduction 2 Saving and restoring data files

More information

Migration to SQL Server With Ispirer SQLWays 6.0

Migration to SQL Server With Ispirer SQLWays 6.0 Migration to SQL Server With Ispirer SQLWays 6.0 About Ispirer Systems Ispirer Systems has been offering solutions for database and application migration since 1999 More than 400 companies worldwide from

More information

HP ConvergedSystem 900 for SAP HANA Scale-up solution architecture

HP ConvergedSystem 900 for SAP HANA Scale-up solution architecture Technical white paper HP ConvergedSystem 900 for SAP HANA Scale-up solution architecture Table of contents Executive summary... 2 Solution overview... 3 Solution components... 4 Storage... 5 Compute...

More information

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11.

HP SiteScope. HP Vertica Solution Template Best Practices. For the Windows, Solaris, and Linux operating systems. Software Version: 11. HP SiteScope For the Windows, Solaris, and Linux operating systems Software Version: 11.23 HP Vertica Solution Template Best Practices Document Release Date: December 2013 Software Release Date: December

More information

HP StorageWorks Data Protection Strategy brief

HP StorageWorks Data Protection Strategy brief HP StorageWorks Data Protection Strategy brief Your business depends on IT more than ever before. The availability of key application services and information is critical to maintain business processes,

More information

HP ProLiant Cluster for MSA1000 for Small Business... 2. Hardware Cabling Scheme... 3. Introduction... 3. Software and Hardware Requirements...

HP ProLiant Cluster for MSA1000 for Small Business... 2. Hardware Cabling Scheme... 3. Introduction... 3. Software and Hardware Requirements... Installation Checklist HP ProLiant Cluster for HP StorageWorks Modular Smart Array1000 for Small Business using Microsoft Windows Server 2003 Enterprise Edition November 2004 Table of Contents HP ProLiant

More information

Oracle Identity Analytics Architecture. An Oracle White Paper July 2010

Oracle Identity Analytics Architecture. An Oracle White Paper July 2010 Oracle Identity Analytics Architecture An Oracle White Paper July 2010 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes only, and may

More information

HP-UX 11i software deployment and configuration tools

HP-UX 11i software deployment and configuration tools HP-UX 11i software deployment and configuration tools Simplifying management of servers in a virtualized environment Introduction... 2 Simplifying management in dynamic, virtualized environments... 2 HP-UX

More information

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11

Contents Introduction... 5 Deployment Considerations... 9 Deployment Architectures... 11 Oracle Primavera Contract Management 14.1 Sizing Guide July 2014 Contents Introduction... 5 Contract Management Database Server... 5 Requirements of the Contract Management Web and Application Servers...

More information

1 What Are Web Services?

1 What Are Web Services? Oracle Fusion Middleware Introducing Web Services 11g Release 1 (11.1.1) E14294-04 January 2011 This document provides an overview of Web services in Oracle Fusion Middleware 11g. Sections include: What

More information

Migrating from Unix to Oracle on Linux. Sponsored by Red Hat. An Oracle and Red Hat White Paper September 2003

Migrating from Unix to Oracle on Linux. Sponsored by Red Hat. An Oracle and Red Hat White Paper September 2003 Migrating from Unix to Oracle on Linux Sponsored by Red Hat An Oracle and Red Hat White Paper September 2003 Migrating from Unix to Oracle on Linux Executive Overview... 3 Unbreakable Linux and Low-Cost

More information

Trafodion Operational SQL-on-Hadoop

Trafodion Operational SQL-on-Hadoop Trafodion Operational SQL-on-Hadoop SophiaConf 2015 Pierre Baudelle, HP EMEA TSC July 6 th, 2015 Hadoop workload profiles Operational Interactive Non-interactive Batch Real-time analytics Operational SQL

More information

Integrating F5 BIG-IP load balancer administration with HP ProLiant Essentials Rapid Deployment Pack

Integrating F5 BIG-IP load balancer administration with HP ProLiant Essentials Rapid Deployment Pack Integrating F5 BIG-IP load balancer administration with HP ProLiant Essentials Rapid Deployment Pack Notice... 2 Executive summary... 4 Introduction... 4 RDP... 4 More information... 4 F5 BIG-IP load balancer...

More information

IBM Communications Server for Linux - Network Optimization for On Demand business

IBM Communications Server for Linux - Network Optimization for On Demand business Optimizing your network infrastructure for on demand business IBM Communications Server for Linux - Network Optimization for On Demand business IBM Communications Server for Linux provides a cost-effective

More information

Protecting enterprise servers with StoreOnce and CommVault Simpana

Protecting enterprise servers with StoreOnce and CommVault Simpana Technical white paper Protecting enterprise servers with StoreOnce and CommVault Simpana HP StoreOnce Backup systems Table of contents Introduction 2 Technology overview 2 HP StoreOnce Backup systems key

More information

HP ProLiant BL660c Gen9 and Microsoft SQL Server 2014 technical brief

HP ProLiant BL660c Gen9 and Microsoft SQL Server 2014 technical brief Technical white paper HP ProLiant BL660c Gen9 and Microsoft SQL Server 2014 technical brief Scale-up your Microsoft SQL Server environment to new heights Table of contents Executive summary... 2 Introduction...

More information

Supported Platforms HPE Vertica Analytic Database. Software Version: 7.2.x

Supported Platforms HPE Vertica Analytic Database. Software Version: 7.2.x HPE Vertica Analytic Database Software Version: 7.2.x Document Release Date: 2/4/2016 Legal Notices Warranty The only warranties for Hewlett Packard Enterprise products and services are set forth in the

More information

OVERVIEW. CEP Cluster Server is Ideal For: First-time users who want to make applications highly available

OVERVIEW. CEP Cluster Server is Ideal For: First-time users who want to make applications highly available Phone: (603)883-7979 sales@cepoint.com Cepoint Cluster Server CEP Cluster Server turnkey system. ENTERPRISE HIGH AVAILABILITY, High performance and very reliable Super Computing Solution for heterogeneous

More information

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server

Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Using HP Systems Insight Manager to achieve high availability for Microsoft Team Foundation Server Executive summary... 2 Audience... 2 Architecture... 3 Prerequisite... 4 Deploying AT servers... 5 Configuring

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

White Paper. SAP NetWeaver Landscape Virtualization Management on VCE Vblock System 300 Family

White Paper. SAP NetWeaver Landscape Virtualization Management on VCE Vblock System 300 Family White Paper SAP NetWeaver Landscape Virtualization Management on VCE Vblock System 300 Family Table of Contents 2 Introduction 3 A Best-of-Breed Integrated Operations Architecture 3 SAP NetWeaver Landscape

More information

STREAMEZZO RICH MEDIA SERVER

STREAMEZZO RICH MEDIA SERVER STREAMEZZO RICH MEDIA SERVER Clustering This document is the property of Streamezzo. It cannot be distributed without the authorization of Streamezzo. Table of contents 1. INTRODUCTION... 3 1.1 Rich Media

More information

Oracle Database. New Feature in Oracle Database 11g Release 2 (11.2.0.2) Products Available on the Oracle Database Examples Media

Oracle Database. New Feature in Oracle Database 11g Release 2 (11.2.0.2) Products Available on the Oracle Database Examples Media Oracle Database Examples Installation Guide 11g Release 2 (11.2) E17861-03 September 2010 This document describes how to install and configure the products available on the Oracle Database Examples media.

More information

JBoss JEE5 with EJB3.0 on NonStop. JAVA SIG, San Jose

JBoss JEE5 with EJB3.0 on NonStop. JAVA SIG, San Jose Presentation JBoss JEE5 with EJB3.0 on NonStop JAVA SIG, San Jose Jürgen Depping CommitWork GmbH Agenda Motivation JBoss JEE 5 Proof of concept: Porting OmnivoBase to JBoss JEE5 for NonStop ( with remarks

More information

HP IMC Firewall Manager

HP IMC Firewall Manager HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this

More information

SAP HANA SPS 09 - What s New? SAP HANA Scalability

SAP HANA SPS 09 - What s New? SAP HANA Scalability SAP HANA SPS 09 - What s New? SAP HANA Scalability (Delta from SPS08 to SPS09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved. 1 Disclaimer This

More information