High Performance Oracle Endeca Designs for Retail. Technical White Paper 24 June

Size: px
Start display at page:

Download "High Performance Oracle Endeca Designs for Retail. Technical White Paper 24 June"

Transcription

1 High Performance Oracle Endeca Designs for Retail Technical White Paper 24 June

2 Excogis - High Performance Oracle Endeca Designs for Retail Table of Contents 1 Executive Summary Current design Store- specific data Content data Re- design Removing unnecessary data Re- structuring data Data Sharding Performance Testing & Measurement Testing Methodology Request Log MDEX Flags Test Infrastructure Specifications Testing Results Conclusion Page 2 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

3 Excogis - High Performance Oracle Endeca Designs for Retail 1 EXECUTIVE SUMMARY As a specialist Endeca consultancy, we often come across organisations that have implemented an Oracle Endeca solution either on their own or by engaging a partner that had limited or no Endeca experience, resulting in a deployment that is at best not optimal. While technically, the original deployment may be acceptable for a period of time, more often than not it will eventually cease to be fit for purpose, and based on the business perception of the Endeca product, it may also be (incorrectly) considered unable to handle further/advanced functionality. One of Excogis clients (henceforth referred to as BigRetailer ) is such an example. The client in question is a retailer with a large brick- and- mortar presence that deployed an Endeca solution to power their online channel several years ago. BigRetailer never adjusted their Endeca design despite increasing the data processed and indexed by their Endeca deployment and their online channel (i.e. traffic & load) growing by more than 100%. Excogis used BigRetailer as a real- life example of the benefits that can be gained by using advanced design techniques and principles on an Endeca deployment. This white paper describes a redesign to BigRetailer s Endeca configuration and architecture that increased the performance by almost 300%. While the re- design work was specific to the structure of BigRetailer s data, the approach and principles used can be applied to almost any Endeca deployment. Page 3 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

4 2 CURRENT DESIGN The current design of BigRetailer s Endeca configuration has two (2) main elements that negatively affect its runtime performance. 2.1 STORE- SPECIFIC DATA One of BigRetailer s main functional requirements was the ability to provide a first level of personalisation by presenting the user with a product catalogue that was available in their associated store (that will eventually fulfil their order), and display the pricing and promotions that applied to those products in that store. Each store has a catchment area based on address postcodes and a user is automatically associated with a given store based on the shipping address postcode defined in their profile. BigRetailer was operating three hundred and sixty (360) stores in their country, as of the writing of this paper. Each store was identified by a four (4) digit numeric ID. A product could have attributes that in some cases could have a unique value for each store, e.g. three hundred and sixty (360) different prices. Some of these store- specific attributes include: Attribute Value type Comments Stock Integer One (1) of six (6) possible values Price Floating point Any value OnOffer Integer The four (4) digit ID of each store where it is on promotion In an effort to future proof the deployment and capture data for any potential new stores, the Endeca configuration was set to index all attributes that were found in the source data. The resulting Endeca record has on average close to one thousand five hundred (1,500) attributes that are store- specific variations of the above set, and numerous other attributes that are not used in any way. 2.2 CONTENT DATA Another design decision made by the original implementation team was to include product content as part of the Endeca index. While this could be a useful approach for small data sets or limited content elements, in this case the content was the full product detail information in XML format. This XML content is presented on the Product Details Page (PDP) as- is. By doing this, Endeca had essentially become a content repository instead of a search & navigation engine to power rich data- driven user experiences. With the abundance of options for Content Management Systems (CMS), Product Information Management (PIM) systems, Content Delivery Networks (CDN) and commercial E- commerce platforms that are designed for exactly this type of capability, indexing product content in Endeca is completely unnecessary and detrimental. Page 4 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

5 3 RE- DESIGN The re- design of BigRetailer s Endeca configuration and architecture focused on three (3) main areas: 1. Removing unnecessary data from the index 2. Re- structuring data for efficiency 3. Employing a data sharding architecture 3.1 REMOVING UNNECESSARY DATA As mentioned above, indexing large amounts of static content that are not used to facilitate search or navigation over the data set, is unnecessary and detrimental. In the redesigned Endeca configuration, attributes from the source data were explicitly mapped to pre- defined Endeca Properties and/or Dimensions. This avoided the inclusion of both the XML content data and unknown attributes that were simply passed- through to be indexed but not used by the application. For the purposes of this paper, it is assumed that any display- only attributes are served by another mechanism, e.g. CMS, PIM etc. 3.2 RE- STRUCTURING DATA The 6.x MDEX series was designed to use a more efficient index structure, by indexing data on an attribute basis. This made it more efficient to index wide records that had a large number of attributes with varying values. However, some attributes whose values are constrained to a pre- defined set of possible values, could be re- structured to take advantage of the more efficient attribute- based index storage. One such example is the store specific stock attribute used by BigRetailer. The current design will add to the record three hundred and sixty (360) different attributes, each of which can have one (1) of six (6) possible values. For example a record could include attributes such as: Stock_1001 = 3 Stock _1002 = 3 Stock _1003 = 3 Stock _1004 = 2 Stock _1005 = 2 Stock _1006 = 3 Stock _1007 = 3 Stock _1008 = 1 Stock _1009 = 3 Stock _1010 = 3 Page 5 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

6 With the above structure, the MDEX must store and index three hundred and sixty (360) different attributes. By converting the attributes to use a naming convention that includes the stock value instead, the index becomes more efficient. The new record would include the attributes: Stock _1 = 1008 Stock _2 = 1004, 1005 Stock _3 = 1001, 1002, 1003, 1006, 1007, 1009, DATA SHARDING The concept of data sharding is an established design pattern in the technology space, mostly associated with big data systems and applications. The concept is to divide a large set of data into smaller sets of data using a reliable and reproducible condition (e.g. the last digit of a product ID) that can be used to easily determine which sub- set of data you need to access. Each sub- set is called a shard and an index of that shard will be more efficient than an index of the entire data set. The number of shards created and the condition used to split the data depends on the nature of the data being indexed, as well as the functional and performance requirements of the application(s) that will access the data. Sharding will result in multiple index instances that contain distinct data sets instead of multiple index instances of the same data. However, while the number of distinct indices increases, their size will decrease and performance increase without necessarily requiring more server resources that the monolithic index configuration. For the purposes of this paper, the store IDs were used as the condition to split the data, with each shard containing data for one sixth (1/6) of the overall stores, or sixty (60) stores per shard. The diagram below illustrates how the deployment architecture would change with sharding. Figure 1 - Legacy Monolithic index design Page 6 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

7 Excogis - High Performance Oracle Endeca Designs for Retail Figure 2 - New Shard index design Page 7 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

8 4 PERFORMANCE TESTING & MEASUREMENT In order to compare the performance of each Endeca index design, a series of performance tests were executed against each one. The performance tests were executed on the same hardware, same Oracle Endeca software versions, same source data and same query logs (see following section for details). The results were measured by analysing the MDEX request logs that resulted from the performance tests, using the Endeca reqloganalyzer utility. The results are shown in the last part of this section. 4.1 TESTING METHODOLOGY The performance tests were executed using the Rackspace cloud infrastructure. The tests involved one (1) test client and one (1) test server. Each index design was tested with two (2) different load configurations; one (1) using ten (10) concurrent connections and one (1) using twenty (20) concurrent connections. Each test for a given load configuration was executed twice, resulting in a total of eight (8) performance tests, four (4) for each index design. Before each test, the appropriate MDEX instance was started. At the end of each test, the MDEX instance was shut down, the MDEX logs were copied to a secure location and subsequently deleted from their default location in order to allow new log files to be created. Finally the test server was rebooted to prepare for the next test. The load applied by the test client to test server, consisted of HTTP requests to the Endeca MDEX server from a prepared request log. The requests were sent with zero (0) think time, i.e. as soon as the response to a request had been read, the next request was submitted immediately. Once the load test was complete, the MDEX request log was analysed using the Endeca requestloganalyzer tool, to measure the performance achieved during the test. 4.2 REQUEST LOG The request log used for the performance tests was taken directly from a load & performance test executed by BigRetailer s operations team. The log contained approximately two hundred and fifty thousand (250,000) Endeca queries. This log was pre- processed in the following ways in order to make it suitable for the performance tests that Excogis executed: Non- search or navigation queries were removed (e.g. /admin?op=ping requests) Certain parameter value delimiters were converted to match the format of the MDEX 6.5 format (e.g. + were converted to for the property selection parameter) Attribute names that were not used were removed Dimension IDs for certain store specific Dimension values (e.g. On Offer) that were not part of the index were mapped to equivalent Dimension IDs that were valid for the index Attribute names for certain store specific Attributes (e.g. Stock) that were not part of the index were mapped to equivalent valid Attribute names Attribute names and/or Dimension IDs for Attributes and/or Dimensions that were re- structured, were mapped to their corresponding new Attribute names and/or Dimension IDs Page 8 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

9 4.3 MDEX FLAGS The MDEX instances used for the performance test had the following execution flags configured: --threads 6 --whymatch --spl --dym --dym_hthresh 5 --dym_nsug 3 --stat-abins 4.4 TEST INFRASTRUCTURE SPECIFICATIONS The specifications for the machines used in the performance tests were as follows: Test client Rackspace Next Generation Server (London region) Performance 1 configuration CPU: Intel Xeon 2.6GHz CPU Cores: 8 vcpu cores RAM: 8 GB Disk: 40GB System + 80GB Data partitions (RAID10- protected SSD) Network: 1,600 Mb/s OS: Windows 2008 R2 Datacenter, SP1 Software: Oracle Endeca Platform Service 11.0 Oracle Endeca MDEX Oracle Endeca Tools & Frameworks (with Experience Manager) 11.0 Rackspace Next Generation Server (London region) Performance 1 configuration CPU: Intel Xeon 2.6GHz CPU Cores: 8 vcpu cores RAM: 8 GB Disk: 40GB System + 80GB Data partitions (RAID10- protected SSD) Network: 1,600 Mb/s OS: Windows 2008 R2 Datacenter, SP1 Software: Oracle Endeca MDEX Page 9 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

10 4.5 TESTING RESULTS The analysis of the MDEX logs following the performance tests, revealed a very significant increase in performance across all the captured metrics. The table below summarises the raw results of the performance tests. The designations 10T and 20T represent the results from the load configurations with ten (10) concurrent connections and twenty (20) concurrent connections respectively. Performance Metric Avg ops/sec Avg Response time (ms) Avg MDEX time (ms) Avg Response size (Kb) Legacy New Change Legacy New Change 10T 10T 20T 20T % % % % % % % % The diagrams below illustrate visually the dramatic difference in performance. Avg ops/sec Avg ops/sec Legacy 10T New 10T Legacy 20T New 20T Page 10 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

11 Avg Response [me (ms) Avg Response ome (ms) Legacy 10T New 10T Legacy 20T New 20T Avg MDEX [me (ms) Avg MDEX ome (ms) Legacy 10T New 10T Legacy 20T New 20T Page 11 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

12 Excogis - High Performance Oracle Endeca Designs for Retail 250 Avg Response size (Kb) Avg Response size (Kb) 50 0 Legacy 10T New 10T Legacy 20T New 20T Page 12 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

13 Excogis - High Performance Oracle Endeca Designs for Retail 5 CONCLUSION Using a real life example with real data and a real load test profile, we have documented a dramatic improvement in performance by simply modifying the Oracle Endeca index design. Even though each Endeca deployment is unique with its own requirements and constraints, the approach and design principles used in this paper can be applied to most Endeca projects. For example a similar approach could be used for a B2B application where customers can access a specific subset of the data with specific pricing defined by their individual contract. Another example is a retailer with multiple business units (e.g. clothing, electronics, furniture etc.) that offers a single basket experience or a fashion retailer that operates multiple brands. Traditionally the first instinct or assumption for addressing the scalability of an Endeca deployment is to increase the hardware footprint in order to scale horizontally, but we have shown that the right design and configuration of your Endeca deployment can be equally important as your other performance enhancing tools and mechanisms. If you would like to find out how we can help you improve your Endeca deployment, contact us at sales@excogis.com. Page 13 of 13 Copyright 2014 Excogis Ltd. All rights reserved.

RACKSPACE ONMETAL I/O V2 OUTPERFORMS AMAZON EC2 BY UP TO 2X IN BENCHMARK TESTING

RACKSPACE ONMETAL I/O V2 OUTPERFORMS AMAZON EC2 BY UP TO 2X IN BENCHMARK TESTING RACKSPACE ONMETAL I/O V2 OUTPERFORMS AMAZON EC2 BY UP TO 2X IN BENCHMARK TESTING EXECUTIVE SUMMARY Today, businesses are increasingly turning to cloud services for rapid deployment of apps and services.

More information

Consulting Solutions WHITE PAPER Citrix XenDesktop XenApp 6.x Planning Guide: Virtualization Best Practices

Consulting Solutions WHITE PAPER Citrix XenDesktop XenApp 6.x Planning Guide: Virtualization Best Practices Consulting Solutions WHITE PAPER Citrix XenDesktop XenApp 6.x Planning Guide: Virtualization Best Practices www.citrix.com Table of Contents Overview... 3 Scalability... 3 Guidelines... 4 Operations...

More information

Microsoft SQL Server in a VMware Environment on Dell PowerEdge R810 Servers and Dell EqualLogic Storage

Microsoft SQL Server in a VMware Environment on Dell PowerEdge R810 Servers and Dell EqualLogic Storage Microsoft SQL Server in a VMware Environment on Dell PowerEdge R810 Servers and Dell EqualLogic Storage A Dell Technical White Paper Dell Database Engineering Solutions Anthony Fernandez April 2010 THIS

More information

Consulting Solutions WHITE PAPER Citrix XenDesktop XenApp Planning Guide: Virtualization Best Practices

Consulting Solutions WHITE PAPER Citrix XenDesktop XenApp Planning Guide: Virtualization Best Practices Consulting Solutions WHITE PAPER Citrix XenDesktop XenApp Planning Guide: Virtualization Best Practices www.citrix.com Overview Desktop virtualization comprises of many different types of virtual desktops.

More information

Scaling Internet TV Content Delivery ALEX GUTARIN DIRECTOR OF ENGINEERING, NETFLIX

Scaling Internet TV Content Delivery ALEX GUTARIN DIRECTOR OF ENGINEERING, NETFLIX Scaling Internet TV Content Delivery ALEX GUTARIN DIRECTOR OF ENGINEERING, NETFLIX Inventing Internet TV Available in more than 190 countries 104+ million subscribers Lots of Streaming == Lots of Traffic

More information

Accelerating Enterprise Search with Fusion iomemory PCIe Application Accelerators

Accelerating Enterprise Search with Fusion iomemory PCIe Application Accelerators WHITE PAPER Accelerating Enterprise Search with Fusion iomemory PCIe Application Accelerators Western Digital Technologies, Inc. 951 SanDisk Drive, Milpitas, CA 95035 www.sandisk.com Table of Contents

More information

Datasheet FUJITSU Software Cloud Monitoring Manager V2.0

Datasheet FUJITSU Software Cloud Monitoring Manager V2.0 Datasheet FUJITSU Software Cloud Monitoring Manager V2.0 Cloud Monitoring Manager supports DevOps teams to keep maximum control of their OpenStack Cloud OpenStack is complex and highly distributed. Gaining

More information

NAV 2009 Scalability. Locking Management Solution for Dynamics NAV SQL Server Option. Stress Test Results White Paper

NAV 2009 Scalability. Locking Management Solution for Dynamics NAV SQL Server Option. Stress Test Results White Paper NAV 2009 Scalability Locking Management Solution for Dynamics NAV SQL Server Option Stress Test Results White Paper July 2009 Table of Contents EXECUTIVE SUMMARY... 3 INTRODUCTION... 3 HARDWARE... 5 RESULTS...

More information

Webinar Series: Triangulate your Storage Architecture with SvSAN Caching. Luke Pruen Technical Services Director

Webinar Series: Triangulate your Storage Architecture with SvSAN Caching. Luke Pruen Technical Services Director Webinar Series: Triangulate your Storage Architecture with SvSAN Caching Luke Pruen Technical Services Director What can you expect from this webinar? To answer a simple question How can I create the perfect

More information

Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA

Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA Evaluation Report: HP StoreFabric SN1000E 16Gb Fibre Channel HBA Evaluation report prepared under contract with HP Executive Summary The computing industry is experiencing an increasing demand for storage

More information

Abstract. The Challenges. ESG Lab Review InterSystems IRIS Data Platform: A Unified, Efficient Data Platform for Fast Business Insight

Abstract. The Challenges. ESG Lab Review InterSystems IRIS Data Platform: A Unified, Efficient Data Platform for Fast Business Insight ESG Lab Review InterSystems Data Platform: A Unified, Efficient Data Platform for Fast Business Insight Date: April 218 Author: Kerry Dolan, Senior IT Validation Analyst Abstract Enterprise Strategy Group

More information

Deltek Vision 7.4 Technical Overview & System Requirements: Basic Deployment ( Employees) 1/28/2015

Deltek Vision 7.4 Technical Overview & System Requirements: Basic Deployment ( Employees) 1/28/2015 Deltek Vision 7.4 Technical Overview & System Requirements: Basic Deployment (25-150 Employees) 1/28/2015 Table of Contents Basic Deployment Model (25-150 Employees)... 3 Introduction... 4 Consulting...

More information

Executive Brief June 2014

Executive Brief June 2014 (707) 595-3607 Executive Brief June 2014 Comparing IBM Power Systems to Cost/Benefit Case for Transactional Applications Introduction Demand for transaction processing solutions continues to grow. Although

More information

Oracle Commerce 11 Guided Search Certified Implementation Specialist Exam Study Guide

Oracle Commerce 11 Guided Search Certified Implementation Specialist Exam Study Guide Oracle Commerce 11 Guided Search Certified Implementation Specialist Exam Study Guide Getting Started The Oracle Commerce 11 Guided Search Certified Implementation Specialist Exam Study Guide is designed

More information

QLIKVIEW SCALABILITY BENCHMARK WHITE PAPER

QLIKVIEW SCALABILITY BENCHMARK WHITE PAPER QLIKVIEW SCALABILITY BENCHMARK WHITE PAPER Hardware Sizing Using Amazon EC2 A QlikView Scalability Center Technical White Paper June 2013 qlikview.com Table of Contents Executive Summary 3 A Challenge

More information

Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Planning Guide: Hosted VM-Based Resource Allocation

Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Planning Guide: Hosted VM-Based Resource Allocation Consulting Solutions WHITE PAPER Citrix XenDesktop XenDesktop Planning Guide: Hosted VM-Based Resource Allocation www.citrix.com Overview One of the first things that must be determined with designing

More information

HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads

HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads HP ProLiant BladeSystem Gen9 vs Gen8 and G7 Server Blades on Data Warehouse Workloads Gen9 server blades give more performance per dollar for your investment. Executive Summary Information Technology (IT)

More information

Reduce Costs & Increase Oracle Database OLTP Workload Service Levels:

Reduce Costs & Increase Oracle Database OLTP Workload Service Levels: Reduce Costs & Increase Oracle Database OLTP Workload Service Levels: PowerEdge 2950 Consolidation to PowerEdge 11th Generation A Dell Technical White Paper Dell Database Solutions Engineering Balamurugan

More information

WHITE PAPER AGILOFT SCALABILITY AND REDUNDANCY

WHITE PAPER AGILOFT SCALABILITY AND REDUNDANCY WHITE PAPER AGILOFT SCALABILITY AND REDUNDANCY Table of Contents Introduction 3 Performance on Hosted Server 3 Figure 1: Real World Performance 3 Benchmarks 3 System configuration used for benchmarks 3

More information

Delphi XE. Delphi XE Datasheet

Delphi XE. Delphi XE Datasheet Delphi XE Datasheet DATASHEET Delphi XE Embarcadero Delphi XE is the fastest way to deliver ultrarich, ultra-fast Windows applications. Used by millions of developers, Delphi combines a leading-edge object-oriented

More information

Accelerate Database Performance and Reduce Response Times in MongoDB Humongous Environments with the LSI Nytro MegaRAID Flash Accelerator Card

Accelerate Database Performance and Reduce Response Times in MongoDB Humongous Environments with the LSI Nytro MegaRAID Flash Accelerator Card Accelerate Database Performance and Reduce Response Times in MongoDB Humongous Environments with the LSI Nytro MegaRAID Flash Accelerator Card The Rise of MongoDB Summary One of today s growing database

More information

Deltek Vision 7.4 Technical Overview & System Requirements: Advanced Deployment (150 or More Employees) 1/28/2015

Deltek Vision 7.4 Technical Overview & System Requirements: Advanced Deployment (150 or More Employees) 1/28/2015 Deltek Vision 7.4 Technical Overview & System Requirements: Advanced Deployment (150 or More Employees) 1/28/2015 Table of Contents Advanced Deployment Model (150 or More Employees)... 3 Introduction...

More information

HySecure Quick Start Guide. HySecure 5.0

HySecure Quick Start Guide. HySecure 5.0 HySecure Quick Start Guide HySecure 5.0 Last Updated: 25 May 2017 2012-2017 Propalms Technologies Private Limited. All rights reserved. The information contained in this document represents the current

More information

Accelerating Digital Transformation with InterSystems IRIS and vsan

Accelerating Digital Transformation with InterSystems IRIS and vsan HCI2501BU Accelerating Digital Transformation with InterSystems IRIS and vsan Murray Oldfield, InterSystems Andreas Dieckow, InterSystems Christian Rauber, VMware #vmworld #HCI2501BU Disclaimer This presentation

More information

Scaling Indexer Clustering

Scaling Indexer Clustering Scaling Indexer Clustering 5 Million Unique Buckets and Beyond Cher-Hung Chang Principal Software Engineer Tameem Anwar Software Engineer 09/26/2017 Washington, DC Forward-Looking Statements During the

More information

Release Notes for Cisco Insight Reporter, v3.1

Release Notes for Cisco Insight Reporter, v3.1 November 2011 This document describes the operating environment and the defects and caveats that were identified as part of internal testing and during the live trials. It assumes the reader has a good

More information

HANA Performance. Efficient Speed and Scale-out for Real-time BI

HANA Performance. Efficient Speed and Scale-out for Real-time BI HANA Performance Efficient Speed and Scale-out for Real-time BI 1 HANA Performance: Efficient Speed and Scale-out for Real-time BI Introduction SAP HANA enables organizations to optimize their business

More information

Virtualization of the MS Exchange Server Environment

Virtualization of the MS Exchange Server Environment MS Exchange Server Acceleration Maximizing Users in a Virtualized Environment with Flash-Powered Consolidation Allon Cohen, PhD OCZ Technology Group Introduction Microsoft (MS) Exchange Server is one of

More information

CLUSTERING HIVEMQ. Building highly available, horizontally scalable MQTT Broker Clusters

CLUSTERING HIVEMQ. Building highly available, horizontally scalable MQTT Broker Clusters CLUSTERING HIVEMQ Building highly available, horizontally scalable MQTT Broker Clusters 12/2016 About this document MQTT is based on a publish/subscribe architecture that decouples MQTT clients and uses

More information

IBM Emulex 16Gb Fibre Channel HBA Evaluation

IBM Emulex 16Gb Fibre Channel HBA Evaluation IBM Emulex 16Gb Fibre Channel HBA Evaluation Evaluation report prepared under contract with Emulex Executive Summary The computing industry is experiencing an increasing demand for storage performance

More information

Estimate performance and capacity requirements for InfoPath Forms Services 2010

Estimate performance and capacity requirements for InfoPath Forms Services 2010 Estimate performance and capacity requirements for InfoPath Forms Services 2010 This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site

More information

Scalability Testing with Login VSI v16.2. White Paper Parallels Remote Application Server 2018

Scalability Testing with Login VSI v16.2. White Paper Parallels Remote Application Server 2018 Scalability Testing with Login VSI v16.2 White Paper Parallels Remote Application Server 2018 Table of Contents Scalability... 3 Testing the Scalability of Parallels RAS... 3 Configurations for Scalability

More information

Parallels Virtuozzo Containers

Parallels Virtuozzo Containers Parallels Virtuozzo Containers White Paper Parallels Virtuozzo Containers for Windows Capacity and Scaling www.parallels.com Version 1.0 Table of Contents Introduction... 3 Resources and bottlenecks...

More information

Ivanti Service Desk and Asset Manager Technical Specifications and Architecture Guidelines

Ivanti Service Desk and Asset Manager Technical Specifications and Architecture Guidelines Ivanti Service Desk and Asset Manager Technical Specifications and Architecture Guidelines This document contains the confidential information and/or proprietary property of Ivanti, Inc. and its affiliates

More information

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE

Oracle Database Exadata Cloud Service Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata Exadata Performance, Cloud Simplicity DATABASE CLOUD SERVICE Oracle Database Exadata combines the best database with the best cloud platform. Exadata is the culmination of more

More information

Virtualized SQL Server Performance and Scaling on Dell EMC XC Series Web-Scale Hyper-converged Appliances Powered by Nutanix Software

Virtualized SQL Server Performance and Scaling on Dell EMC XC Series Web-Scale Hyper-converged Appliances Powered by Nutanix Software Virtualized SQL Server Performance and Scaling on Dell EMC XC Series Web-Scale Hyper-converged Appliances Powered by Nutanix Software Dell EMC Engineering January 2017 A Dell EMC Technical White Paper

More information

DEDICATED SERVERS WITH WEB HOSTING PRICED RIGHT

DEDICATED SERVERS WITH WEB HOSTING PRICED RIGHT DEDICATED SERVERS WITH WEB HOSTING PRICED RIGHT TABLE OF CONTENTS WHY CHOOSE A DEDICATED SERVER? 3 DEDICATED SERVER ADVANTAGES 4 DEDICATED SERVERS WITH WEB HOSTING PRICED RIGHT 5 SERVICE GUARANTEES 6 WHY

More information

Veeam Backup & Replication on IBM Cloud Solution Architecture

Veeam Backup & Replication on IBM Cloud Solution Architecture Veeam Backup & Replication on IBM Cloud Solution Architecture Date: 2018 07 20 Copyright IBM Corporation 2018 Page 1 of 12 Table of Contents 1 Introduction... 4 1.1 About Veeam Backup & Replication...

More information

Upgrade to Microsoft SQL Server 2016 with Dell EMC Infrastructure

Upgrade to Microsoft SQL Server 2016 with Dell EMC Infrastructure Upgrade to Microsoft SQL Server 2016 with Dell EMC Infrastructure Generational Comparison Study of Microsoft SQL Server Dell Engineering February 2017 Revisions Date Description February 2017 Version 1.0

More information

A Rational software Whitepaper 05/25/03. IBM Rational Rapid Developer Scalability and Performance Benchmark

A Rational software Whitepaper 05/25/03. IBM Rational Rapid Developer Scalability and Performance Benchmark A Rational software Whitepaper 05/25/03 IBM Rational Rapid Developer Scalability and Performance Benchmark 1 Executive Summary This document describes a performance benchmark for Rational s estore application

More information

Four-Socket Server Consolidation Using SQL Server 2008

Four-Socket Server Consolidation Using SQL Server 2008 Four-Socket Server Consolidation Using SQL Server 28 A Dell Technical White Paper Authors Raghunatha M Leena Basanthi K Executive Summary Businesses of all sizes often face challenges with legacy hardware

More information

McAfee epolicy Orchestrator 4.5 Hardware Sizing and Bandwidth Usage Guide

McAfee epolicy Orchestrator 4.5 Hardware Sizing and Bandwidth Usage Guide McAfee epolicy Orchestrator 4.5 Hardware Sizing and Bandwidth Usage Guide COPYRIGHT Copyright 009 McAfee, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, transcribed,

More information

Deltek Vision 7.6. Technical Overview and System Requirements: Advanced Deployment (150 or More Employees)

Deltek Vision 7.6. Technical Overview and System Requirements: Advanced Deployment (150 or More Employees) Deltek Vision 7.6 Technical Overview and System Requirements: Advanced Deployment (150 or More Employees) April 25, 2017 While Deltek has attempted to verify that the information in this document is accurate

More information

SAP SD Benchmark with DB2 and Red Hat Enterprise Linux 5 on IBM System x3850 M2

SAP SD Benchmark with DB2 and Red Hat Enterprise Linux 5 on IBM System x3850 M2 SAP SD Benchmark using DB2 and Red Hat Enterprise Linux 5 on IBM System x3850 M2 Version 1.0 November 2008 SAP SD Benchmark with DB2 and Red Hat Enterprise Linux 5 on IBM System x3850 M2 1801 Varsity Drive

More information

White Paper. Platform9 ROI for Hybrid Clouds

White Paper. Platform9 ROI for Hybrid Clouds White Paper Platform9 ROI for Hybrid Clouds Quantifying the cost savings and benefits of moving from the Amazon Web Services (AWS) public cloud to the Platform9 hybrid cloud. Abstract Deciding whether

More information

Qlik Sense Performance Benchmark

Qlik Sense Performance Benchmark Technical Brief Qlik Sense Performance Benchmark This technical brief outlines performance benchmarks for Qlik Sense and is based on a testing methodology called the Qlik Capacity Benchmark. This series

More information

IaaS Vendor Comparison

IaaS Vendor Comparison IaaS Vendor Comparison Analysis of competitor products Tobias Deml Senior Systemberater BU Cloud & Core Technologies February 01, 2018 2 Tobias Deml Senior Systemberater BU Cloud & Core Technologies Topics

More information

Infor M3 on IBM POWER7+ and using Solid State Drives

Infor M3 on IBM POWER7+ and using Solid State Drives Infor M3 on IBM POWER7+ and using Solid State Drives IBM Systems & Technology Group Robert Driesch cooter@us.ibm.com This document can be found on the web, Version Date: January 31, 2014 Table of Contents

More information

Agile Platform 6.0 System Requirements

Agile Platform 6.0 System Requirements TECHNICAL NOTE Agile Platform 6.0 System Requirements The Agile Platform architecture has been designed with a strong focus on performance, scalability, and high-availability. This technical note describes

More information

Accelerating Microsoft SQL Server 2016 Performance With Dell EMC PowerEdge R740

Accelerating Microsoft SQL Server 2016 Performance With Dell EMC PowerEdge R740 Accelerating Microsoft SQL Server 2016 Performance With Dell EMC PowerEdge R740 A performance study of 14 th generation Dell EMC PowerEdge servers for Microsoft SQL Server Dell EMC Engineering September

More information

FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC

FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC white paper FlashGrid Software Intel SSD DC P3700/P3600/P3500 Topic: Hyper-converged Database/Storage FlashGrid Software Enables Converged and Hyper-Converged Appliances for Oracle* RAC Abstract FlashGrid

More information

SUSE OpenStack Cloud Production Deployment Architecture. Guide. Solution Guide Cloud Computing.

SUSE OpenStack Cloud Production Deployment Architecture. Guide. Solution Guide Cloud Computing. SUSE OpenStack Cloud Production Deployment Architecture Guide Solution Guide Cloud Computing Table of Contents page Introduction... 2 High Availability Configuration...6 Network Topography...8 Services

More information

PERFORMANCE CHARACTERIZATION OF MICROSOFT SQL SERVER USING VMWARE CLOUD ON AWS PERFORMANCE STUDY JULY 2018

PERFORMANCE CHARACTERIZATION OF MICROSOFT SQL SERVER USING VMWARE CLOUD ON AWS PERFORMANCE STUDY JULY 2018 PERFORMANCE CHARACTERIZATION OF MICROSOFT SQL SERVER USING VMWARE CLOUD ON AWS PERFORMANCE STUDY JULY 2018 Table of Contents Executive Summary...3 Introduction...3 Test Environment... 4 Infrastructure

More information

An Oracle White Paper. Released April 2013

An Oracle White Paper. Released April 2013 Performance and Scalability Benchmark: Siebel CRM Release 8.1.1.4 Industry Applications and Oracle 11.2.0.3 Database on Oracle's SPARC T5 Servers and Oracle Solaris An Oracle White Paper Released April

More information

Adobe Acrobat Connect Pro 7.5 and VMware ESX Server

Adobe Acrobat Connect Pro 7.5 and VMware ESX Server White Paper Table of contents 2 Tested environments 3 Benchmarking tests 3 Performance comparisons 7 Installation requirements 7 Installing and configuring the VMware environment 1 Supported virtual machine

More information

MyCloud Computing Business computing in the cloud, ready to go in minutes

MyCloud Computing Business computing in the cloud, ready to go in minutes MyCloud Computing Business computing in the cloud, ready to go in minutes In today s dynamic environment, businesses need to be able to respond quickly to changing demands. Using virtualised computing

More information

Manual Sql Server 2012 Express Limit Cpu

Manual Sql Server 2012 Express Limit Cpu Manual Sql Server 2012 Express Limit Cpu SQL Server 2014 Reporting Services Standard and Enterprise supports a maximum of SQL Server 2014 Express resources Windows Server 2012 resources For more information

More information

Infor Lawson on IBM i 7.1 and IBM POWER7+

Infor Lawson on IBM i 7.1 and IBM POWER7+ Infor Lawson on IBM i 7.1 and IBM POWER7+ IBM Systems & Technology Group Mike Breitbach mbreit@us.ibm.com This document can be found on the web, Version Date: March, 2014 Table of Contents 1. Introduction...

More information

Optimizing Testing Performance With Data Validation Option

Optimizing Testing Performance With Data Validation Option Optimizing Testing Performance With Data Validation Option 1993-2016 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

McAfee Network Security Platform 8.3

McAfee Network Security Platform 8.3 8.3.7.68-8.3.7.55-8.3.7.14 Manager-Virtual IPS Release Notes McAfee Network Security Platform 8.3 Revision A Contents About this release New features Enhancements Resolved issues Installation instructions

More information

New Oracle NoSQL Database APIs that Speed Insertion and Retrieval

New Oracle NoSQL Database APIs that Speed Insertion and Retrieval New Oracle NoSQL Database APIs that Speed Insertion and Retrieval O R A C L E W H I T E P A P E R F E B R U A R Y 2 0 1 6 1 NEW ORACLE NoSQL DATABASE APIs that SPEED INSERTION AND RETRIEVAL Introduction

More information

WEBSITE & CLOUD PERFORMANCE ANALYSIS. Evaluating Cloud Performance for Web Site Hosting Requirements

WEBSITE & CLOUD PERFORMANCE ANALYSIS. Evaluating Cloud Performance for Web Site Hosting Requirements WEBSITE & CLOUD PERFORMANCE ANALYSIS Evaluating Cloud Performance for Web Site Hosting Requirements WHY LOOK AT PERFORMANCE? There are many options for Web site hosting services, with most vendors seemingly

More information

Using Synology SSD Technology to Enhance System Performance Synology Inc.

Using Synology SSD Technology to Enhance System Performance Synology Inc. Using Synology SSD Technology to Enhance System Performance Synology Inc. Synology_WP_ 20121112 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges... 3 SSD

More information

Service Mesh and Microservices Networking

Service Mesh and Microservices Networking Service Mesh and Microservices Networking WHITEPAPER Service mesh and microservice networking As organizations adopt cloud infrastructure, there is a concurrent change in application architectures towards

More information

Performance Comparisons of Dell PowerEdge Servers with SQL Server 2000 Service Pack 4 Enterprise Product Group (EPG)

Performance Comparisons of Dell PowerEdge Servers with SQL Server 2000 Service Pack 4 Enterprise Product Group (EPG) Performance Comparisons of Dell PowerEdge Servers with SQL Server 2000 Service Pack 4 Enterprise Product Group (EPG) Dell White Paper By Neelima Chinthamani (Enterprise OS Releases) Ravikanth Chaganti

More information

Acano solution. White Paper on Virtualized Deployments. Simon Evans, Acano Chief Scientist. March B

Acano solution. White Paper on Virtualized Deployments. Simon Evans, Acano Chief Scientist. March B Acano solution White Paper on Virtualized Deployments Simon Evans, Acano Chief Scientist March 2016 76-1093-01-B Contents Introduction 3 Host Requirements 5 Sizing a VM 6 Call Bridge VM 7 Acano EdgeVM

More information

REFERENCE ARCHITECTURE Microsoft SQL Server 2016 Data Warehouse Fast Track. FlashStack 70TB Solution with Cisco UCS and Pure Storage FlashArray//X

REFERENCE ARCHITECTURE Microsoft SQL Server 2016 Data Warehouse Fast Track. FlashStack 70TB Solution with Cisco UCS and Pure Storage FlashArray//X REFERENCE ARCHITECTURE Microsoft SQL Server 2016 Data Warehouse Fast Track FlashStack 70TB Solution with Cisco UCS and Pure Storage FlashArray//X FLASHSTACK REFERENCE ARCHITECTURE September 2018 TABLE

More information

P6 Compression Server White Paper Release 8.2 December 2011 Copyright Oracle Primavera P6 Compression Server White Paper Copyright 2005, 2011, Oracle and/or its affiliates. All rights reserved. Oracle

More information

TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage

TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage TPC-E testing of Microsoft SQL Server 2016 on Dell EMC PowerEdge R830 Server and Dell EMC SC9000 Storage Performance Study of Microsoft SQL Server 2016 Dell Engineering February 2017 Table of contents

More information

Technical Specifications and Hardware Requirements

Technical Specifications and Hardware Requirements Technical Specifications and Hardware Requirements Insight Legal Software Ltd. Westmead House, Westmead, Farnborough, Hampshire, GU14 7LP 01252 518939 info@insightlegal.co.uk www.insightlegal.co.uk VAT

More information

SYSTEM REQUIREMENTS M.APP ENTERPRISE

SYSTEM REQUIREMENTS M.APP ENTERPRISE SYSTEM REQUIREMENTS M.APP ENTERPRISE Description or Document Category October 06, 2016 Contents M.App Enterprise Server... 3 Hardware requirements... 3 Disk space requirements... 3 Production environment

More information

Qlik Sense Enterprise architecture and scalability

Qlik Sense Enterprise architecture and scalability White Paper Qlik Sense Enterprise architecture and scalability June, 2017 qlik.com Platform Qlik Sense is an analytics platform powered by an associative, in-memory analytics engine. Based on users selections,

More information

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003

Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database. An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release 7 on HP-UX Servers and Oracle9i Database An Oracle White Paper Released October 2003 Performance and Scalability Benchmark: Siebel CRM Release

More information

Paperspace. Architecture Overview. 20 Jay St. Suite 312 Brooklyn, NY Technical Whitepaper

Paperspace. Architecture Overview. 20 Jay St. Suite 312 Brooklyn, NY Technical Whitepaper Architecture Overview Copyright 2016 Paperspace, Co. All Rights Reserved June - 1-2017 Technical Whitepaper Paperspace Whitepaper: Architecture Overview Content 1. Overview 3 2. Virtualization 3 Xen Hypervisor

More information

Solaris Engineered Systems

Solaris Engineered Systems Solaris Engineered Systems SPARC SuperCluster Introduction Andy Harrison andy.harrison@oracle.com Engineered Systems, Revenue Product Engineering The following is intended to outline

More information

Evaluation Report: Improving SQL Server Database Performance with Dot Hill AssuredSAN 4824 Flash Upgrades

Evaluation Report: Improving SQL Server Database Performance with Dot Hill AssuredSAN 4824 Flash Upgrades Evaluation Report: Improving SQL Server Database Performance with Dot Hill AssuredSAN 4824 Flash Upgrades Evaluation report prepared under contract with Dot Hill August 2015 Executive Summary Solid state

More information

Software Defined Storage at the Speed of Flash. PRESENTATION TITLE GOES HERE Carlos Carrero Rajagopal Vaideeswaran Symantec

Software Defined Storage at the Speed of Flash. PRESENTATION TITLE GOES HERE Carlos Carrero Rajagopal Vaideeswaran Symantec Software Defined Storage at the Speed of Flash PRESENTATION TITLE GOES HERE Carlos Carrero Rajagopal Vaideeswaran Symantec Agenda Introduction Software Technology Architecture Review Oracle Configuration

More information

Cisco Unified Web and Interaction Manager Sizing Guide

Cisco Unified Web and  Interaction Manager Sizing Guide Cisco Unified Web and E-mail Interaction Manager Sizing Guide Release 4.1(1) January 2007 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com

More information

Deploying and Managing Dell Big Data Clusters with StackIQ Cluster Manager

Deploying and Managing Dell Big Data Clusters with StackIQ Cluster Manager Deploying and Managing Dell Big Data Clusters with StackIQ Cluster Manager A Dell StackIQ Technical White Paper Dave Jaffe, PhD Solution Architect Dell Solution Centers Greg Bruno, PhD VP Engineering StackIQ,

More information

Microsoft SharePoint Server 2010 on Dell Systems

Microsoft SharePoint Server 2010 on Dell Systems Microsoft SharePoint Server 2010 on Dell Systems Solutions for up to 10,000 users This document is for informational purposes only. Dell reserves the right to make changes without further notice to any

More information

Case Study: Tata Communications Delivering a Truly Interactive Business Intelligence Experience on a Large Multi-Tenant Hadoop Cluster

Case Study: Tata Communications Delivering a Truly Interactive Business Intelligence Experience on a Large Multi-Tenant Hadoop Cluster Case Study: Tata Communications Delivering a Truly Interactive Business Intelligence Experience on a Large Multi-Tenant Hadoop Cluster CASE STUDY: TATA COMMUNICATIONS 1 Ten years ago, Tata Communications,

More information

IBM License Metric Tool 9.0 Installation

IBM License Metric Tool 9.0 Installation ILMT Central Team IBM License Metric Tool 9.0 Installation Questions & Answers Welcome This is the twenty second Q&A event prepared by the ILMT Central Team We concentrate on License Metric Tool version

More information

HUAWEI Tecal X6000 High-Density Server

HUAWEI Tecal X6000 High-Density Server HUAWEI Tecal X6000 High-Density Server Professional Trusted Future-oriented HUAWEI TECHNOLOGIES CO., LTD. HUAWEI Tecal X6000 High-Density Server (X6000) High computing density The X6000 is 2U high and

More information

IBM. IBM ^ pseries, IBM RS/6000 and IBM NUMA-Q Performance Report

IBM. IBM ^ pseries, IBM RS/6000 and IBM NUMA-Q Performance Report IBM IBM ^ pseries, IBM RS/6000 and IBM NUMA-Q Performance Report October 7, Table of Contents PERFORMANCE of IBM WEB SERVER SYSTEMS... 3 Section - and LINPACK PERFORMANCE... RS/6000 SP s... 4 Section a

More information

Introduction to Database Services

Introduction to Database Services Introduction to Database Services Shaun Pearce AWS Solutions Architect 2015, Amazon Web Services, Inc. or its affiliates. All rights reserved Today s agenda Why managed database services? A non-relational

More information

Tutorial on Memory Management, Deadlock and Operating System Types

Tutorial on Memory Management, Deadlock and Operating System Types Operating Systems and Systems Integration Tutorial on Memory Management, Deadlock and Operating System Types 1 Background 1.1 Memory management Virtual memory: is a method of managing memory automatically

More information

... Performance benefits of POWER6 processors and IBM i 6.1 for Oracle s JD Edwards EnterpriseOne A performance case study for the Donaldson Company

... Performance benefits of POWER6 processors and IBM i 6.1 for Oracle s JD Edwards EnterpriseOne A performance case study for the Donaldson Company Performance benefits of POWER6 processors and IBM i 6.1 for Oracle s JD Edwards EnterpriseOne A performance case study for the Donaldson Company........ Jim Denton i ERP Development Jos Vermaere Executive

More information

E-BUSINESS SUITE APPLICATIONS R12 (R12.2.5) ORDER MANAGEMENT (OLTP) BENCHMARK - USING ORACLE11g

E-BUSINESS SUITE APPLICATIONS R12 (R12.2.5) ORDER MANAGEMENT (OLTP) BENCHMARK - USING ORACLE11g O R A C L E E - B U S I N E S S B E N C H M A R K R EV. 1.0 E-BUSINESS SUITE APPLICATIONS R12 (R12.2.5) ORDER MANAGEMENT (OLTP) BENCHMARK - USING ORACLE11g ON ORACLE S DATABASE CLOUD SERVICE As a global

More information

Centrix WorkSpace Discovery Installation Guide. Version 1.0

Centrix WorkSpace Discovery Installation Guide. Version 1.0 Centrix WorkSpace Discovery Installation Guide Version 1.0 The latest software version and documentation for this product can be downloaded here: http://www.centrixsoftware.com/downloads/discovery If you

More information

Microsoft MB2-711 Exam

Microsoft MB2-711 Exam Volume: 96 Questions Question No: 1 You are the primary technical resource for an enterprise deployment of Microsoft Dynamics CRM 2016 on premises that has 300 seats. You are asked about hardware requirements

More information

IT Infrastructure: Poised for Change

IT Infrastructure: Poised for Change IT Infrastructure: Poised for Change David Freund Corporate Virtual Architect EMC Corporation October, 2009 Copyright 2009 EMC Corporation. All rights reserved. 1 Things Change The Big Question What s

More information

Fujitsu: Your Partner for SAP HANA Solutions

Fujitsu: Your Partner for SAP HANA Solutions Fujitsu: Your Partner for SAP HANA Solutions The In-memory Revolution Process vast amounts of data in real-time Run analytics dramatically faster than disk-based DB (10x to >1,000x) Big Data Challenge

More information

Parallels Remote Application Server. Scalability Testing with Login VSI

Parallels Remote Application Server. Scalability Testing with Login VSI Parallels Remote Application Server Scalability Testing with Login VSI Contents Introduction... 3 Scalability... 4 Testing the Scalability of Parallels RAS... 4 Configurations for Scalability Testing...

More information

Accelerating Big Data: Using SanDisk SSDs for Apache HBase Workloads

Accelerating Big Data: Using SanDisk SSDs for Apache HBase Workloads WHITE PAPER Accelerating Big Data: Using SanDisk SSDs for Apache HBase Workloads December 2014 Western Digital Technologies, Inc. 951 SanDisk Drive, Milpitas, CA 95035 www.sandisk.com Table of Contents

More information

Adaptec MaxIQ SSD Cache Performance Solution for Web Server Environments Analysis

Adaptec MaxIQ SSD Cache Performance Solution for Web Server Environments Analysis Adaptec MaxIQ SSD Cache Performance Solution for Web Server Environments Analysis September 22, 2009 Page 1 of 7 Introduction Adaptec has requested an evaluation of the performance of the Adaptec MaxIQ

More information

WHITE PAPER. Optimizing Virtual Platform Disk Performance

WHITE PAPER. Optimizing Virtual Platform Disk Performance WHITE PAPER Optimizing Virtual Platform Disk Performance Optimizing Virtual Platform Disk Performance 1 The intensified demand for IT network efficiency and lower operating costs has been driving the phenomenal

More information

Performance Is Not a Commodity Nathan Day Chief Scientist and Co - Founder

Performance Is Not a Commodity Nathan Day Chief Scientist and Co - Founder Performance Is Not a Commodity Nathan Day Chief Scientist and Co - Founder Defining Cloud Cloud is 2 Defining Cloud Just kidding. 3 What cloud is not Cloud computing is a model for enabling ubiquitous,

More information

WHITE PAPER: BEST PRACTICES. Sizing and Scalability Recommendations for Symantec Endpoint Protection. Symantec Enterprise Security Solutions Group

WHITE PAPER: BEST PRACTICES. Sizing and Scalability Recommendations for Symantec Endpoint Protection. Symantec Enterprise Security Solutions Group WHITE PAPER: BEST PRACTICES Sizing and Scalability Recommendations for Symantec Rev 2.2 Symantec Enterprise Security Solutions Group White Paper: Symantec Best Practices Contents Introduction... 4 The

More information

E2E Networks Limited. Since Blazing Fast & Cost Effective Cloud Infrastructure

E2E Networks Limited. Since Blazing Fast & Cost Effective Cloud Infrastructure E2E Networks Limited Since 2009 Blazing Fast & Cost Effective Cloud Infrastructure E2E Networks About Us 1 st in India to provide Contract-less compute (Since 2009) Delhi NCR #6 th largest - Pure play

More information

Intel Cluster Ready Allowed Hardware Variances

Intel Cluster Ready Allowed Hardware Variances Intel Cluster Ready Allowed Hardware Variances Solution designs are certified as Intel Cluster Ready with an exact bill of materials for the hardware and the software stack. When instances of the certified

More information