Abstract /10/$26.00 c 2010 IEEE

Size: px
Start display at page:

Download "Abstract /10/$26.00 c 2010 IEEE"

Transcription

1 Abstract Clustering solutions are frequently used in large enterprise and mission critical applications with high performance and availability requirements. This is achieved by deploying multiple servers for the purpose of load balancing or by having redundant servers for the purpose of high availability. Most cluster management tools focus on the availability of servers and IP connectivity, and rely on shared network storage like Network Attached Storage (NAS), Storage Area Network (SAN), etc. for storage resiliency. Modern enterprise storage systems are complex, with millions of possible configurations. For end-to-end performance and availability, the configuration of storage resources and interconnection fabric need to be carefully planned. Adhoc configuration may lead to poor availability, deteriorated performance or higher cost. In this paper, we discuss the challenges associated with provisioning storage resources in cluster environment and present a list of best practices and novel optimization strategies to make storage more resilient for clusters. We have build a tool called Casper that automates the process of planning, optimization and deployment of shared network storage for clusters. Casper distributes storage load across different storage nodes and across different network paths to ensure load balancing and prevent single point of failure /10/$26.00 c 2010 IEEE 647

2 Introduction Many enterprise and scientific applications rely on clustering solutions for their high performance and high availability needs. These applications may range from commercial databases to application servers to large parallel applications like scientific simulations and weather forecasting. Clusters provide a low cost alternative to single computer of similar capabilities. Based on their type and configurations, clusters can be broadly grouped in 3 categories: High Availability (HA) Clusters: The clustering software aims to reduce the service downtime by switching to one of the stand-by nodes, when a hardware or software component fails. Load-balancing clusters: Multiple instances of the servers are run to provide the same set of service and the load is distributed across all of them. Compute clusters: These are typically used by large parallel applications as opposed to transactional applications. Application or data processing is typically sub-divided into multiple smaller components or datasets and the tasks are distributed across multiple compute nodes for processing. The processed result may be later combined for further processing IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track

3 Different applications may have different requirements, and these clusters need to be appropriately provisioned and configured to deliver the required level of performance and availability. Multiple challenges arise in provisioning resources for clusters: First, the overall behavior of the cluster is dependent on the end-toend configurations of multiple components including that of applications, servers, network and storage. Second, even though the clustering software have the ability to detect failures in software and hardware components and take appropriate actions (like moving workload to stand-by nodes and rebalancing load), there are, however, no management tools that do complete end-to-end configuration of the cluster resources. These are typically done by high-skilled administrators using rule-of-thumb or back of the envelope calculations. Manual methods tend to be error-prone, time consuming and tedious. These may also overprovision, which increases the cost. Third, many cluster applications require access to shared storage, which give them a consistent view of their data from all nodes. The most common storage technologies that are being used for cluster environment are Network Attached Storage (NAS), which provide file-based access, and Storage Area Network (SAN), which provide block-based access to storage. Modern NAS and SAN are complex distributed systems and have large number of possible configurations, which determine the overall application performance, availability and other characteristics. There are some commercially available tools like IBM s TotalStorage Productivity Center (TPC)[4] and EMC SAN Architect[5] that automates SAN provisioning. But most of the current approaches don t take the entire end-toend aspect (application, cluster and SAN) into account because of which the overall storage system design may not be very resilient. For example, in a HA cluster, if both the active and stand-by nodes are using the same network path to access shared storage, the failure of any link or switch in that path would make both the nodes unavailable, thus bringing the entire service down. Furthermore, if the same network path is used by multiple cluster nodes to access shared storage, it can quickly become a performance bottleneck. In this paper, we present an integrated tool called Casper that automates the provisioning of shared network storage for clusters. We focus on provisioning fiber channel SAN for high availability (HA) clusters, primarily because SAN is the most used storage technology in high-end enterprise environment and also one of the most complex. Casper allocates storage and automatically configure the network path to make SAN storage accessible to the cluster nodes in a way that balances the overall load and avoid any single point of failure IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track 649

4 The above figure shows a simple example of a highly available (HA) cluster configuration with SAN backend. Popular HA clustering solutions include IBM HACMP [1], Microsoft Cluster Server (MSCS) [2], Linux HA, Veritas Cluster Server [3], etc. The clustering software in each server nodes exchange heatbeat messages with each other across a TCP/IP network or a serial connection or a shared disk to monitor their health status. If a software or hardware failure is detected, the HA software quickly restarts the failed application in a standby node (also called passive node). This prevents application downtime or performance degradation. Cluster Resource Group is a collection of related cluster resources that defines actions to be taken during a switchover operation of the access point of resilient resources. The group effectively describes a recovery domain. In order to facilitate failover and/or load balancing, cluster applications access data from shared network storage like Storage Area Network (SAN) [6] as shown in the figure above. A typical SAN consists of one or more storage subsystems connected to host computers either directly or via a set of fiber channel switches. The storage subsystem may be composed of disk arrays or tape libraries or other storage medias. Even though SAN can be used in most enterprise environment, they are very well-suited for cluster environment because they can provide a consistent view of shared storage to all cluster nodes with high degree of reliability and performance. Provisioning SAN resources involve creation of storage units called LUNs (Logical Unit Numbers) and mapping them to the host computers. The LUN mapping process creates and configures one or more fiber channel network path via which the host can access the storage LUNs. Both of these processes (i.e. LUNs creation and mapping) need to be planned carefully. LUNs are created based on the workload requirements and the storage subsystems characteristics. LUN mapping is done based on physical connectivity and on the performance and failover requirements of the workloads. This is extremely non-trivial in a clustered environment, where a set of LUNs need to be mapped to multiple l nodes in the clusters. Some of these nodes are active and some are stand-by. Each of them imposes different load on different fiber channel network path IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track

5 Our proposed solution, Casper, is an intelligent analytic component that helps the administrator plan and provision storage resources for a cluster. We have extended the SAN Planner component available in the IBM Total Storage Productivity Center (TPC) [4][7] suite to demonstrate the above functionality. Existing SAN Planner [8] automates SAN storage provisioning by determining LUNs placements in storage subsystems based on different capacity and workload requirements. It can also recommend fiber channel fabric zoning and multipath configurations. TPC is an integrated operational management solution that automates various aspect of storage resource management (SRM). It discovers and monitors various configuration and operational information from its managed environment consisting of applications, servers, network elements like fiber channel (FC) switched and fabrics, and storage controllers, tape libraries etc. These pieces of information are stored in an operational database, which is later queried for various management tasks like device configuration, performance reporting and analyses, problem determination, chargeback, etc. Casper leverages this information in a policy based framework to allocate SAN storage and configure network paths based on the performance and resiliency requirements of the cluster workloads IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track 651

6 The figure above shows an high level view of Casper. Administrator can specify multiple workload requirements and select policies that need to be applied in the planning process. Casper plans for the following scenarios: Given the managed environment, what are the hosts that can potentially be included into a given cluster based on cluster type, host operating system, application type, etc. Given a cluster, what are the hosts that can potentially be included into a cluster resource group based on application type, failure probability, server performance, etc. Given a set of cluster nodes and workload requirements, what is the best allocation of storage and network resources that achieves required performance and resiliency IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track

7 Cluster aware storage resource provisioning mainly has to address two broad requirements : i) Resiliency and ii) Performance Resiliency ensures that the service is available even when a few components go down. From the SAN perspective, resiliency has two main components: (a) storage resiliency and (b) data path resiliency. Storage resiliency is achieved using RAID arrays and other redundant device components. Data path resiliency ensures that the path from storage LUN (Logical Unit Number) to the cluster node is resilient. This is achieved by making sure that there is no-single-point-of-failure in the active and stand-by data path. During failure, the clustering software would failover application(s) from the active server to available standby server(s). Complete end-to-end resiliency must ensure that none of the entities in the data-path becomes a single point of failure. These entities include fiber channel fabric, switch connecting to server, fiber channel switch connecting to storage controller, storage controller fiber channel port, host fiber channel port, LUN assignment, etc. Similarly, the performance factor is dependent on performance of underlying disk subsystems and the data path performance. The performance characteristics of disk subsystems is dependent on the type of disks (SAS, SATA, SSD, etc.), RAID configuration, etc. In addition, the configuration of the data paths also impact performance. Casper ensures balanced load along the fiber channel data-path in aclustered environment. Workload has to be optimally balanced along the data-paths to avoid performance degradation or the occurrence of hotspots during failover. Based on the workload and resource availability in a data centers, different policies are employed to satisfy the administrator requirements. Cluster nodes are selected on the basis of the operating system and hardware configurations of the servers and also on cluster type, application type and workload requirements. Similarly, new hosts are added to cluster-resource-group based on application requirements and failure characteristics IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track 653

8 Once the clusters and cluster-resource-groups are set up, Casper configures the data path from the storage LUN to the cluster nodes. This is done by applying a series of policies that ensures that there is no single point of failure in the data path. Diagrams above show fiber channel fabric configuration policies under different scenarios. Policy I: Active and standby hosts should connect to disk subsystems via different fabrics to protect from fabric failure. Policy II.a: In the absence of multiple fabric, active and standby hosts should be connected to different hostend edge switches of the same fabric to protect from FC switch failure. Policy II.b: In the absence of multiple fabric, active and standby hosts should access storage through different subsystem-end edge switches of the same fabric to protect from FC switch failure Policy III: Active and standby hosts should be assigned (mask/map) to different ports of storage subsystem Policy IV: The assignment of active and standby host ports should be uniformly distributed across all available storage subsystem ports Policy V: Fiber channel ports of active and stand-by cluster nodes are configured according to their failover characteristics The goal of the above policies is create disjoint data path for active and stand-by nodes. When an active node goes down because of the failed component in its data path, the stand-by node would be able to communicate with the LUN from a different data path. This ensures high degree of resiliency IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track

9 Diagrams above show different policies for LUN assignment to achieve required performance goals. LUN assignment is a mapping defined by a tuple <Initiator Port, Target Port, LUN>. Initiator port specifies the FC (fiber channel) port of the cluster node. Target port specifies the FC port of the storage subsystem. Along with performance and resiliency characteristics of the storage subsystems, following policy is also applied while allocating storage for cluster nodes: If a storage subsystem is already serving storage to a particular cluster, it has higher priority while allocating additional storage for that cluster. This simplifies many aspects of storage management like disaster recovery, copy service relationship, etc IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track 655

10 When an active cluster node fails, the clustering software moves the load to stand-by node, which in turn may shift the load in the backend SAN. This shift in I/O traffic may overload some portions of SAN fabric or fiber channel ports of the storage subsystems. In order to prevent unnecessary bottlenecks, Casper accounts for these failure and shifts in load during the planning process. This is done as follows: First, it computes the expected load on each fiber channel ports of the storage subsystems taking into account the failure characteristics of the cluster nodes. The first component of the E(l p ) is the load due to I/O traffic from active cluster nodes. The other component is due to traffic from stand-by nodes when their corresponding active nodes fail. Note that multiple LUNs may be mapped to hosts via same port. And a single LUN may be mapped to via more than one port (indicated by above). Second, it performs LUN mapping assignment in such a way that the expected load on each fiber channel port is balanced IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track

11 In this section, we use a simple case study to explain the working of the cluster aware SAN planning in a data center. As shown in the figure above, a cluster (Cluster CL-1) is created with two resource groups (CRG-DB, CRG-AS). CRG-DB is a database cluster resource group that contains servers S2 and S3. S2 is configured as the active server that runs the database server and S3 as the stand-by server. CRG-AS is an application server cluster-resource-group that contains servers S1 and S3. S1 is configured as the active server that runs application server and S3 as the stand-by application server. In this environment, two cluster resource groups in a cluster share their stand by server assuming both database server and application server are not going to fail at the same time. Server S3 is installed with both database and application server related software bundles. While creating the cluster or cluster resource groups, administrator can use Casper to analyze existing servers and recommend appropriate hosts with sufficient spare capacity. This is done based on the type of cluster (or cluster resource group) and applications. In the above case study, administrator has defined a cluster with two active servers (S1 and S2), each of which belongs to a separate cluster-resource-group. Once active servers are defined, administrator uses Casper to perform the following tasks: i) Provision a server that could be added to the cluster and serves as a standby for server S1 and S2 in their respective cluster-resource-groups (i.e. CRG-DB and CRG-AS). ii)provision storage for the database server with the following specifications: Capacity: 240 GB RAID type: RAID-5 Workload type: OLTP workload with 1000 transactions/sec The SAN consists of 2 fiber channel fabric and 2 storage subsystems, consisting of a high-end enterprise class disk subsystem (IBM DS8000) and amid-range disk subsystem (IBM DS4000.) 2010 IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track 657

12 Since a OLTP workload need to be provisioned, both performance and resiliency requirements are high. Casper selects DS8000 for two main reasons: i) it can handle high load and has much higher IOPS and lower response time compared to DS4000. ii) DS8000 is connected to two fabric and DS4000 is connected to just one fabric. During the planning process, Casper was able to configure paths with disjoint fabric from the storage LUNs in DS8000 to server S2 and S3. Server S2 access LUNs in DS8000 through fabric F1 and server S3 access the same LUNs through fabric F2. This gives better failover resiliency. The dotted lines show the configured data path. If DS4000 were selected for storage allocation, both server S2 and S3 have to access their storage through fiber channel fabric F2. If F2 fails, both S2 and S3 would also fail. In addition to the fabric selection, Casper also creates LUN mappings through multiple subsystem FC ports using different FC switches. This balances the I/O load as well as protect against a switch failure within a fabric. The above example illustrates the importance of LUN data path planning to improve the failure resiliency of the clusters IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track

13 Summary and future work We studied different challenges faced by the administrators in provisioning shared network storage for cluster environment. We discussed and presented an integrated tool that uses best practices and administrators specified policies to find best possible SAN storage allocations for the cluster nodes. Even though, we focused on SAN and HA, similar ideas can be applied to other cluster and storage environment. Most high availability cluster solutions cannot distinguish between different types of SAN failures. If a LUN fails (due to disk array failure, etc.), switching to a stand-by cluster node is not going to help. On the other hand, if a fiber channel switch or port or fabric fails, it may be possible to keep the application/service available by starting it in the stand-by node. As a future work, we would investigate enhancing current HA solutions with SAN failure type awareness. Another aspect that need further research is the effect of San fabric zoning on cluster resiliency. Zoning is the security feature of fiber channel fabric to restrict communication between different parts of the fabric. Zoning mis-configuration can potentially disrupt storage connectivity and bring down an entire cluster. In this paper, we primarily focused on provisioning for new workloads. As system evolves, workload may change and system configuration may change. In such cases, dynamic analysis of the cluster and SAN configuration become necessary to make sure that the system is continuing to meet the performance and resiliency requirements of the deployed applications/workloads IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track 659

14 IEEE/IFIP Network Operations and Management Symposium - NOMS 2010: Application Track

IBM Storage Software Strategy

IBM Storage Software Strategy IBM Storage Software Strategy Hakan Turgut 1 Just how fast is the data growing? 128 GB/ person The World s total data per person No Problem I I think I can do this We have a problem 24 GB/ person 0.8 GB/

More information

EMC Business Continuity for Microsoft Applications

EMC Business Continuity for Microsoft Applications EMC Business Continuity for Microsoft Applications Enabled by EMC Celerra, EMC MirrorView/A, EMC Celerra Replicator, VMware Site Recovery Manager, and VMware vsphere 4 Copyright 2009 EMC Corporation. All

More information

FUJITSU Storage ETERNUS AF series and ETERNUS DX S4/S3 series Non-Stop Storage Reference Architecture Configuration Guide

FUJITSU Storage ETERNUS AF series and ETERNUS DX S4/S3 series Non-Stop Storage Reference Architecture Configuration Guide FUJITSU Storage ETERNUS AF series and ETERNUS DX S4/S3 series Non-Stop Storage Reference Architecture Configuration Guide Non-stop storage is a high-availability solution that combines ETERNUS SF products

More information

Synology High Availability (SHA)

Synology High Availability (SHA) Synology High Availability (SHA) Based on DSM 5.1 Synology Inc. Synology_SHAWP_ 20141106 Table of Contents Chapter 1: Introduction... 3 Chapter 2: High-Availability Clustering... 4 2.1 Synology High-Availability

More information

What's in this guide... 4 Documents related to NetBackup in highly available environments... 5

What's in this guide... 4 Documents related to NetBackup in highly available environments... 5 Contents Chapter 1 About in this guide... 4 What's in this guide... 4 Documents related to NetBackup in highly available environments... 5 Chapter 2 NetBackup protection against single points of failure...

More information

Microsoft E xchange 2010 on VMware

Microsoft E xchange 2010 on VMware : Microsoft E xchange 2010 on VMware Availability and R ecovery Options This product is protected by U.S. and international copyright and intellectual property laws. This product is covered by one or more

More information

Storage Area Networks SAN. Shane Healy

Storage Area Networks SAN. Shane Healy Storage Area Networks SAN Shane Healy Objective/Agenda Provide a basic overview of what Storage Area Networks (SAN) are, what the constituent components are, and how these components fit together to deliver

More information

Benefits of Multi-Node Scale-out Clusters running NetApp Clustered Data ONTAP. Silverton Consulting, Inc. StorInt Briefing

Benefits of Multi-Node Scale-out Clusters running NetApp Clustered Data ONTAP. Silverton Consulting, Inc. StorInt Briefing Benefits of Multi-Node Scale-out Clusters running NetApp Clustered Data ONTAP Silverton Consulting, Inc. StorInt Briefing BENEFITS OF MULTI- NODE SCALE- OUT CLUSTERS RUNNING NETAPP CDOT PAGE 2 OF 7 Introduction

More information

IBM IBM Storage Networking Solutions Version 1.

IBM IBM Storage Networking Solutions Version 1. IBM 000-740 IBM Storage Networking Solutions Version 1 http://killexams.com/exam-detail/000-740 - disk storage subsystem with four (4) total ports - two (2) LTO3 tape drives to be attached Assuming best

More information

3.1. Storage. Direct Attached Storage (DAS)

3.1. Storage. Direct Attached Storage (DAS) 3.1. Storage Data storage and access is a primary function of a network and selection of the right storage strategy is critical. The following table describes the options for server and network storage.

More information

IBM InfoSphere Streams v4.0 Performance Best Practices

IBM InfoSphere Streams v4.0 Performance Best Practices Henry May IBM InfoSphere Streams v4.0 Performance Best Practices Abstract Streams v4.0 introduces powerful high availability features. Leveraging these requires careful consideration of performance related

More information

As storage networking technology

As storage networking technology Chapter 10 Storage As storage networking technology matures, larger and complex implementations are becoming more common. The heterogeneous nature of storage infrastructures has further added to the complexity

More information

Nutanix Tech Note. Virtualizing Microsoft Applications on Web-Scale Infrastructure

Nutanix Tech Note. Virtualizing Microsoft Applications on Web-Scale Infrastructure Nutanix Tech Note Virtualizing Microsoft Applications on Web-Scale Infrastructure The increase in virtualization of critical applications has brought significant attention to compute and storage infrastructure.

More information

Nimble Storage Adaptive Flash

Nimble Storage Adaptive Flash Nimble Storage Adaptive Flash Read more Nimble solutions Contact Us 800-544-8877 solutions@microage.com MicroAge.com TECHNOLOGY OVERVIEW Nimble Storage Adaptive Flash Nimble Storage s Adaptive Flash platform

More information

Dell Fluid Data solutions. Powerful self-optimized enterprise storage. Dell Compellent Storage Center: Designed for business results

Dell Fluid Data solutions. Powerful self-optimized enterprise storage. Dell Compellent Storage Center: Designed for business results Dell Fluid Data solutions Powerful self-optimized enterprise storage Dell Compellent Storage Center: Designed for business results The Dell difference: Efficiency designed to drive down your total cost

More information

EMC VMAX 400K SPC-2 Proven Performance. Silverton Consulting, Inc. StorInt Briefing

EMC VMAX 400K SPC-2 Proven Performance. Silverton Consulting, Inc. StorInt Briefing EMC VMAX 400K SPC-2 Proven Performance Silverton Consulting, Inc. StorInt Briefing EMC VMAX 400K SPC-2 PROVEN PERFORMANCE PAGE 2 OF 10 Introduction In this paper, we analyze all- flash EMC VMAX 400K storage

More information

IBM IBM Open Systems Storage Solutions Version 4. Download Full Version :

IBM IBM Open Systems Storage Solutions Version 4. Download Full Version : IBM 000-742 IBM Open Systems Storage Solutions Version 4 Download Full Version : https://killexams.com/pass4sure/exam-detail/000-742 Answer: B QUESTION: 156 Given the configuration shown, which of the

More information

White Paper. EonStor GS Family Best Practices Guide. Version: 1.1 Updated: Apr., 2018

White Paper. EonStor GS Family Best Practices Guide. Version: 1.1 Updated: Apr., 2018 EonStor GS Family Best Practices Guide White Paper Version: 1.1 Updated: Apr., 2018 Abstract: This guide provides recommendations of best practices for installation and configuration to meet customer performance

More information

Data center requirements

Data center requirements Prerequisites, page 1 Data center workflow, page 2 Determine data center requirements, page 2 Gather data for initial data center planning, page 2 Determine the data center deployment model, page 3 Determine

More information

Virtualization And High Availability. Howard Chow Microsoft MVP

Virtualization And High Availability. Howard Chow Microsoft MVP Virtualization And High Availability Howard Chow Microsoft MVP Session Objectives And Agenda Virtualization and High Availability Types of high availability enabled by virtualization Enabling a highly

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

2014 VMware Inc. All rights reserved.

2014 VMware Inc. All rights reserved. 2014 VMware Inc. All rights reserved. Agenda Virtual SAN 1 Why VSAN Software Defined Storage 2 Introducing Virtual SAN 3 Hardware Requirements 4 DEMO 5 Questions 2 The Software-Defined Data Center Expand

More information

EMC XTREMCACHE ACCELERATES VIRTUALIZED ORACLE

EMC XTREMCACHE ACCELERATES VIRTUALIZED ORACLE White Paper EMC XTREMCACHE ACCELERATES VIRTUALIZED ORACLE EMC XtremSF, EMC XtremCache, EMC Symmetrix VMAX and Symmetrix VMAX 10K, XtremSF and XtremCache dramatically improve Oracle performance Symmetrix

More information

High Availability and Disaster Recovery features in Microsoft Exchange Server 2007 SP1

High Availability and Disaster Recovery features in Microsoft Exchange Server 2007 SP1 High Availability and Disaster Recovery features in Microsoft Exchange Server 2007 SP1 Product Group - Enterprise Dell White Paper By Farrukh Noman Ananda Sankaran April 2008 Contents Introduction... 3

More information

Surveillance Dell EMC Storage with Digifort Enterprise

Surveillance Dell EMC Storage with Digifort Enterprise Surveillance Dell EMC Storage with Digifort Enterprise Configuration Guide H15230 REV 1.1 Copyright 2016-2017 Dell Inc. or its subsidiaries. All rights reserved. Published August 2016 Dell believes the

More information

EMC VPLEX Geo with Quantum StorNext

EMC VPLEX Geo with Quantum StorNext White Paper Application Enabled Collaboration Abstract The EMC VPLEX Geo storage federation solution, together with Quantum StorNext file system, enables a global clustered File System solution where remote

More information

EMC VPLEX with Quantum Stornext

EMC VPLEX with Quantum Stornext White Paper Application Enabled Collaboration Abstract The EMC VPLEX storage federation solution together with Quantum StorNext file system enables a stretched cluster solution where hosts has simultaneous

More information

Dell Exchange 2013 Reference Architecture for 500 to 20,000 Microsoft Users. 1 Overview. Reliable and affordable storage for your business

Dell Exchange 2013 Reference Architecture for 500 to 20,000 Microsoft Users. 1 Overview. Reliable and affordable storage for your business Technical Report Dell Exchange 2013 Reference Architecture for 500 to 20,000 Microsoft Users Reliable and affordable storage for your business Table of Contents 1 Overview... 1 2 Introduction... 2 3 Infrastructure

More information

Vendor: EMC. Exam Code: E Exam Name: Cloud Infrastructure and Services Exam. Version: Demo

Vendor: EMC. Exam Code: E Exam Name: Cloud Infrastructure and Services Exam. Version: Demo Vendor: EMC Exam Code: E20-002 Exam Name: Cloud Infrastructure and Services Exam Version: Demo QUESTION NO: 1 In which Cloud deployment model would an organization see operational expenditures grow in

More information

Surveillance Dell EMC Storage with FLIR Latitude

Surveillance Dell EMC Storage with FLIR Latitude Surveillance Dell EMC Storage with FLIR Latitude Configuration Guide H15106 REV 1.1 Copyright 2016-2017 Dell Inc. or its subsidiaries. All rights reserved. Published June 2016 Dell believes the information

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

SurFS Product Description

SurFS Product Description SurFS Product Description 1. ABSTRACT SurFS An innovative technology is evolving the distributed storage ecosystem. SurFS is designed for cloud storage with extreme performance at a price that is significantly

More information

InfoSphere Warehouse with Power Systems and EMC CLARiiON Storage: Reference Architecture Summary

InfoSphere Warehouse with Power Systems and EMC CLARiiON Storage: Reference Architecture Summary InfoSphere Warehouse with Power Systems and EMC CLARiiON Storage: Reference Architecture Summary v1.0 January 8, 2010 Introduction This guide describes the highlights of a data warehouse reference architecture

More information

Copyright 2012 EMC Corporation. All rights reserved.

Copyright 2012 EMC Corporation. All rights reserved. 1 TRANSFORMING MICROSOFT APPLICATIONS TO THE CLOUD Louaye Rachidi Technology Consultant 2 22x Partner Of Year 19+ Gold And Silver Microsoft Competencies 2,700+ Consultants Worldwide Cooperative Support

More information

FOUR WAYS TO LOWER THE COST OF REPLICATION

FOUR WAYS TO LOWER THE COST OF REPLICATION WHITE PAPER I JANUARY 2010 FOUR WAYS TO LOWER THE COST OF REPLICATION How an Ultra-Efficient, Virtualized Storage Platform Brings Disaster Recovery within Reach for Any Organization FOUR WAYS TO LOWER

More information

White Paper. A System for Archiving, Recovery, and Storage Optimization. Mimosa NearPoint for Microsoft

White Paper. A System for  Archiving, Recovery, and Storage Optimization. Mimosa NearPoint for Microsoft White Paper Mimosa Systems, Inc. November 2007 A System for Email Archiving, Recovery, and Storage Optimization Mimosa NearPoint for Microsoft Exchange Server and EqualLogic PS Series Storage Arrays CONTENTS

More information

Managing Data Center Interconnect Performance for Disaster Recovery

Managing Data Center Interconnect Performance for Disaster Recovery Managing Data Center Interconnect Performance for Disaster Recovery Data center interconnects (DCI) are traditionally used for critical data replication to meet corporate compliance and continuity requirements.

More information

EMC CLARiiON CX3-40. Reference Architecture. Enterprise Solutions for Microsoft Exchange 2007

EMC CLARiiON CX3-40. Reference Architecture. Enterprise Solutions for Microsoft Exchange 2007 Enterprise Solutions for Microsoft Exchange 2007 EMC CLARiiON CX3-40 Metropolitan Exchange Recovery (MER) for Exchange Server Enabled by MirrorView/S and Replication Manager Reference Architecture EMC

More information

Application Integration IBM Corporation

Application Integration IBM Corporation Application Integration What is Host Software? Simultaneous development efforts NextGeneration Virtual Storage Meets Server Virtualization Benefits of VMware Virtual Infrastructure Maximum consolidation

More information

The Microsoft Large Mailbox Vision

The Microsoft Large Mailbox Vision WHITE PAPER The Microsoft Large Mailbox Vision Giving users large mailboxes without breaking your budget Introduction Giving your users the ability to store more email has many advantages. Large mailboxes

More information

Configuring and Managing Virtual Storage

Configuring and Managing Virtual Storage Configuring and Managing Virtual Storage Module 6 You Are Here Course Introduction Introduction to Virtualization Creating Virtual Machines VMware vcenter Server Configuring and Managing Virtual Networks

More information

E EMC. EMC Storage and Information Infrastructure Expert for Technology Architects

E EMC. EMC Storage and Information Infrastructure Expert for Technology Architects EMC E20-805 EMC Storage and Information Infrastructure Expert for Technology Architects Download Full Version : https://killexams.com/pass4sure/exam-detail/e20-805 2 - Configure the VPLEX RAID 1 volume

More information

EMC CLARiiON CX3-40. Reference Architecture. Enterprise Solutions for Microsoft Exchange Enabled by MirrorView/S

EMC CLARiiON CX3-40. Reference Architecture. Enterprise Solutions for Microsoft Exchange Enabled by MirrorView/S Enterprise Solutions for Microsoft Exchange 2007 EMC CLARiiON CX3-40 Metropolitan Exchange Recovery (MER) for Exchange in a VMware Environment Enabled by MirrorView/S Reference Architecture EMC Global

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

STORAGE CONSOLIDATION WITH IP STORAGE. David Dale, NetApp

STORAGE CONSOLIDATION WITH IP STORAGE. David Dale, NetApp STORAGE CONSOLIDATION WITH IP STORAGE David Dale, NetApp SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individuals may use this material in

More information

Dell s High Availability Cluster Product Strategy

Dell s High Availability Cluster Product Strategy Cluster Development Group December 2003 Dell s High Availability Cluster Product Strategy This article outlines generic High Availability (HA) Cluster requirements and supported configurations. The paper

More information

Realizing the Promise of SANs

Realizing the Promise of SANs Business without interruption. Realizing the Promise of SANs Bill North Director, Storage Network Programs Strategic Initiatives Group VERITAS Software Education Committee Chairman Storage Network Industry

More information

Using EonStor DS Series iscsi-host storage systems with VMware vsphere 5.x

Using EonStor DS Series iscsi-host storage systems with VMware vsphere 5.x Using EonStor DS Series iscsi-host storage systems with VMware vsphere 5.x Application notes Abstract These application notes explain configuration details for using Infortrend EonStor DS Series iscsi-host

More information

Using EMC FAST with SAP on EMC Unified Storage

Using EMC FAST with SAP on EMC Unified Storage Using EMC FAST with SAP on EMC Unified Storage Applied Technology Abstract This white paper examines the performance considerations of placing SAP applications on FAST-enabled EMC unified storage. It also

More information

Dell Reference Configuration for Large Oracle Database Deployments on Dell EqualLogic Storage

Dell Reference Configuration for Large Oracle Database Deployments on Dell EqualLogic Storage Dell Reference Configuration for Large Oracle Database Deployments on Dell EqualLogic Storage Database Solutions Engineering By Raghunatha M, Ravi Ramappa Dell Product Group October 2009 Executive Summary

More information

Dynamically unify your data center Dell Compellent: Self-optimized, intelligently tiered storage

Dynamically unify your data center Dell Compellent: Self-optimized, intelligently tiered storage Dell Fluid Data architecture Dynamically unify your data center Dell Compellent: Self-optimized, intelligently tiered storage Dell believes that storage should help you spend less while giving you the

More information

Infrastructure Provisioning with System Center Virtual Machine Manager

Infrastructure Provisioning with System Center Virtual Machine Manager Infrastructure Provisioning with System Center Virtual Machine Manager Course Details Duration: Course code: 5 Days M10981 Overview: Learn how to install and configure Microsoft System Center 2012 R2 Virtual

More information

Veritas Storage Foundation for Windows by Symantec

Veritas Storage Foundation for Windows by Symantec Veritas Storage Foundation for Windows by Symantec Advanced online storage management Veritas Storage Foundation 5.0 for Windows brings advanced online storage management to Microsoft Windows Server environments.

More information

DELL EMC UNITY: BEST PRACTICES GUIDE

DELL EMC UNITY: BEST PRACTICES GUIDE DELL EMC UNITY: BEST PRACTICES GUIDE Best Practices for Performance and Availability Unity OE 4.5 ABSTRACT This white paper provides recommended best practice guidelines for installing and configuring

More information

Veritas Dynamic Multi-Pathing for VMware 6.0 Chad Bersche, Principal Technical Product Manager Storage and Availability Management Group

Veritas Dynamic Multi-Pathing for VMware 6.0 Chad Bersche, Principal Technical Product Manager Storage and Availability Management Group Veritas Dynamic Multi-Pathing for VMware 6.0 Chad Bersche, Principal Technical Product Manager Storage and Availability Management Group Dynamic Multi-Pathing for VMware 1 Agenda 1 Heterogenous multi-pathing

More information

NE Infrastructure Provisioning with System Center Virtual Machine Manager

NE Infrastructure Provisioning with System Center Virtual Machine Manager NE-10981 Infrastructure Provisioning with System Center Virtual Machine Manager Summary Duration 5 Days Audience IT Professionals Level 400 Technology Microsoft System Center 2012 Delivery Method Instructor-led

More information

HP solutions for mission critical SQL Server Data Management environments

HP solutions for mission critical SQL Server Data Management environments HP solutions for mission critical SQL Server Data Management environments SQL Server User Group Sweden Michael Kohs, Technical Consultant HP/MS EMEA Competence Center michael.kohs@hp.com 1 Agenda HP ProLiant

More information

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW UKOUG RAC SIG Meeting London, October 24 th, 2006 Luca Canali, CERN IT CH-1211 LCGenève 23 Outline Oracle at CERN Architecture of CERN

More information

A TPC Standby Solution User's Guide

A TPC Standby Solution User's Guide A TPC Standby Solution User's Guide Achim Christ IBM Systems Lab Services & Training European Storage Competence Center achim.christ@de.ibm.com Version 1.0 6. February 2013 Copyright IBM Corporation, 2013

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

Exploiting the full power of modern industry standard Linux-Systems with TSM Stephan Peinkofer

Exploiting the full power of modern industry standard Linux-Systems with TSM Stephan Peinkofer TSM Performance Tuning Exploiting the full power of modern industry standard Linux-Systems with TSM Stephan Peinkofer peinkofer@lrz.de Agenda Network Performance Disk-Cache Performance Tape Performance

More information

VERITAS Storage Foundation 4.0 TM for Databases

VERITAS Storage Foundation 4.0 TM for Databases VERITAS Storage Foundation 4.0 TM for Databases Powerful Manageability, High Availability and Superior Performance for Oracle, DB2 and Sybase Databases Enterprises today are experiencing tremendous growth

More information

Dell EMC SAN Storage with Video Management Systems

Dell EMC SAN Storage with Video Management Systems Dell EMC SAN Storage with Video Management Systems Surveillance October 2018 H14824.3 Configuration Best Practices Guide Abstract The purpose of this guide is to provide configuration instructions for

More information

Offloaded Data Transfers (ODX) Virtual Fibre Channel for Hyper-V. Application storage support through SMB 3.0. Storage Spaces

Offloaded Data Transfers (ODX) Virtual Fibre Channel for Hyper-V. Application storage support through SMB 3.0. Storage Spaces 2 ALWAYS ON, ENTERPRISE-CLASS FEATURES ON LESS EXPENSIVE HARDWARE ALWAYS UP SERVICES IMPROVED PERFORMANCE AND MORE CHOICE THROUGH INDUSTRY INNOVATION Storage Spaces Application storage support through

More information

Optimizing Quality of Service with SAP HANA on Power Rapid Cold Start

Optimizing Quality of Service with SAP HANA on Power Rapid Cold Start Optimizing Quality of Service with SAP HANA on Power Rapid Cold Start How SAP HANA on Power with Rapid Cold Start helps clients quickly restore business-critical operations Contents 1 About this document

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

Take Back Lost Revenue by Activating Virtuozzo Storage Today

Take Back Lost Revenue by Activating Virtuozzo Storage Today Take Back Lost Revenue by Activating Virtuozzo Storage Today JUNE, 2017 2017 Virtuozzo. All rights reserved. 1 Introduction New software-defined storage (SDS) solutions are enabling hosting companies to

More information

All-Flash Business Processing SAN and ONTAP 9 Verification Tests Using Microsoft SQL Server Workloads

All-Flash Business Processing SAN and ONTAP 9 Verification Tests Using Microsoft SQL Server Workloads Technical Report All-Flash Business Processing SAN and ONTAP 9 Verification Tests Using Microsoft Business Workloads Group, DFMG, NetApp September 2016 TR-4532 Abstract This document describes the results

More information

IBM IBM Storage Sales Version 8. Practice Test. Version QQ:

IBM IBM Storage Sales Version 8. Practice Test. Version QQ: IBM 000-748 000-748 IBM Storage Sales Version 8 Practice Test Version 1.1 QUESTION NO: 1 A new video application is being added to a Windows Server that is already SAN Connected. The current SAN needs

More information

VMware vsphere 5.0 STORAGE-CENTRIC FEATURES AND INTEGRATION WITH EMC VNX PLATFORMS

VMware vsphere 5.0 STORAGE-CENTRIC FEATURES AND INTEGRATION WITH EMC VNX PLATFORMS VMware vsphere 5.0 STORAGE-CENTRIC FEATURES AND INTEGRATION WITH EMC VNX PLATFORMS A detailed overview of integration points and new storage features of vsphere 5.0 with EMC VNX platforms EMC Solutions

More information

FlexArray Virtualization

FlexArray Virtualization Updated for 8.3.2 FlexArray Virtualization Installation Requirements and Reference Guide NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501 Support

More information

Dell/EMC CX3 Series Oracle RAC 10g Reference Architecture Guide

Dell/EMC CX3 Series Oracle RAC 10g Reference Architecture Guide White Paper Third-party Information Provided to You Courtesy of Dell Dell/EMC CX3 Series Oracle RAC 10g Reference Architecture Guide Abstract This document provides an overview of the architecture of the

More information

EMC Celerra CNS with CLARiiON Storage

EMC Celerra CNS with CLARiiON Storage DATA SHEET EMC Celerra CNS with CLARiiON Storage Reach new heights of availability and scalability with EMC Celerra Clustered Network Server (CNS) and CLARiiON storage Consolidating and sharing information

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

CONTENTS. 1. Introduction. 2. How To Store Data. 3. How To Access Data. 4. Manage Data Storage. 5. Benefits Of SAN. 6. Conclusion

CONTENTS. 1. Introduction. 2. How To Store Data. 3. How To Access Data. 4. Manage Data Storage. 5. Benefits Of SAN. 6. Conclusion CONTENTS 1. Introduction 2. How To Store Data 3. How To Access Data 4. Manage Data Storage 5. Benefits Of SAN 6. Conclusion 1. Introduction: A Storage Area Network (SAN) is a dedicated network that carries

More information

IBM Storage Networking Solutions Version 2. Download Full Version :

IBM Storage Networking Solutions Version 2. Download Full Version : IBM 000-745 Storage Networking Solutions Version 2 Download Full Version : http://killexams.com/pass4sure/exam-detail/000-745 QUESTON: 119 What is the maximum size for a LUN that can be connected from

More information

Nové možnosti storage virtualizace s řešením IBM Storwize V7000

Nové možnosti storage virtualizace s řešením IBM Storwize V7000 Nové možnosti storage virtualizace s řešením IBM Storwize V7000 A new generation of midrange storage Rudolf Hruška Information Infrastructure Leader IBM Systems & Technology Group rudolf_hruska@cz.ibm.com

More information

Real-time Protection for Microsoft Hyper-V

Real-time Protection for Microsoft Hyper-V Real-time Protection for Microsoft Hyper-V Introduction Computer virtualization has come a long way in a very short time, triggered primarily by the rapid rate of customer adoption. Moving resources to

More information

Microsoft Office SharePoint Server 2007

Microsoft Office SharePoint Server 2007 Microsoft Office SharePoint Server 2007 Enabled by EMC Celerra Unified Storage and Microsoft Hyper-V Reference Architecture Copyright 2010 EMC Corporation. All rights reserved. Published May, 2010 EMC

More information

VERITAS Dynamic Multipathing. Increasing the Availability and Performance of the Data Path

VERITAS Dynamic Multipathing. Increasing the Availability and Performance of the Data Path VERITAS Dynamic Multipathing Increasing the Availability and Performance of the Data Path 1 TABLE OF CONTENTS I/O Path Availability and Performance... 3 Dynamic Multipathing... 3 VERITAS Storage Foundation

More information

Power Systems with POWER7 and AIX Technical Sales

Power Systems with POWER7 and AIX Technical Sales Power Systems with POWER7 and AIX Technical Sales Number: 000-107 Passing Score: 800 Time Limit: 120 min File Version: 26.6 http://www.gratisexam.com/ IBM 000-107 EXAM QUESTIONS & ANSWERS Exam Name: Power

More information

QLE10000 Series Adapter Provides Application Benefits Through I/O Caching

QLE10000 Series Adapter Provides Application Benefits Through I/O Caching QLE10000 Series Adapter Provides Application Benefits Through I/O Caching QLogic Caching Technology Delivers Scalable Performance to Enterprise Applications Key Findings The QLogic 10000 Series 8Gb Fibre

More information

Synology High Availability (SHA)

Synology High Availability (SHA) Synology High Availability (SHA) Based on DSM 6 Synology Inc. Synology_SHAWP_ 20170807 Table of Contents Chapter 1: Introduction... 3 Chapter 2: High-Availability Clustering... 4 2.1 Synology High-Availability

More information

vsan Mixed Workloads First Published On: Last Updated On:

vsan Mixed Workloads First Published On: Last Updated On: First Published On: 03-05-2018 Last Updated On: 03-05-2018 1 1. Mixed Workloads on HCI 1.1.Solution Overview Table of Contents 2 1. Mixed Workloads on HCI 3 1.1 Solution Overview Eliminate the Complexity

More information

Vblock Architecture. Andrew Smallridge DC Technology Solutions Architect

Vblock Architecture. Andrew Smallridge DC Technology Solutions Architect Vblock Architecture Andrew Smallridge DC Technology Solutions Architect asmallri@cisco.com Vblock Design Governance It s an architecture! Requirements: Pretested Fully Integrated Ready to Go Ready to Grow

More information

GUIDE. Optimal Network Designs with Cohesity

GUIDE. Optimal Network Designs with Cohesity Optimal Network Designs with Cohesity TABLE OF CONTENTS Introduction...3 Key Concepts...4 Five Common Configurations...5 3.1 Simple Topology...5 3.2 Standard Topology...6 3.3 Layered Topology...7 3.4 Cisco

More information

System Description. System Architecture. System Architecture, page 1 Deployment Environment, page 4

System Description. System Architecture. System Architecture, page 1 Deployment Environment, page 4 System Architecture, page 1 Deployment Environment, page 4 System Architecture The diagram below illustrates the high-level architecture of a typical Prime Home deployment. Figure 1: High Level Architecture

More information

EMC Unified Storage for Oracle Database 11g/10g Virtualized Solution. Enabled by EMC Celerra and Linux using FCP and NFS. Reference Architecture

EMC Unified Storage for Oracle Database 11g/10g Virtualized Solution. Enabled by EMC Celerra and Linux using FCP and NFS. Reference Architecture EMC Unified Storage for Oracle Database 11g/10g Virtualized Solution Enabled by EMC Celerra and Linux using FCP and NFS Reference Architecture Copyright 2009 EMC Corporation. All rights reserved. Published

More information

Availability & Resource

Availability & Resource Achieving Cost-effective High Availability & Resource Management Agenda Virtual Infrastructure Stack How Vmware helps in the Data Center Availability and Resource Management 2 The VMware Virtual Infrastructure

More information

Automated Storage Tiering on Infortrend s ESVA Storage Systems

Automated Storage Tiering on Infortrend s ESVA Storage Systems Automated Storage Tiering on Infortrend s ESVA Storage Systems White paper Abstract This white paper introduces automated storage tiering on Infortrend s ESVA storage arrays. Storage tiering can generate

More information

The Oracle Database Appliance I/O and Performance Architecture

The Oracle Database Appliance I/O and Performance Architecture Simple Reliable Affordable The Oracle Database Appliance I/O and Performance Architecture Tammy Bednar, Sr. Principal Product Manager, ODA 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

More information

STORAGE CONSOLIDATION WITH IP STORAGE. David Dale, NetApp

STORAGE CONSOLIDATION WITH IP STORAGE. David Dale, NetApp STORAGE CONSOLIDATION WITH IP STORAGE David Dale, NetApp SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individuals may use this material in

More information

How much Oracle DBA is to know of SAN Part 1 Srinivas Maddali

How much Oracle DBA is to know of SAN Part 1 Srinivas Maddali How much Oracle DBA is to know of SAN Part 1 Srinivas Maddali Abstract Motivation: Every Oracle DBA is a trustee and protector of the business data. To do his job, he has to understand his complex environment,

More information

DELL EMC CX4 EXCHANGE PERFORMANCE THE ADVANTAGES OF DEPLOYING DELL/EMC CX4 STORAGE IN MICROSOFT EXCHANGE ENVIRONMENTS. Dell Inc.

DELL EMC CX4 EXCHANGE PERFORMANCE THE ADVANTAGES OF DEPLOYING DELL/EMC CX4 STORAGE IN MICROSOFT EXCHANGE ENVIRONMENTS. Dell Inc. DELL EMC CX4 EXCHANGE PERFORMANCE THE ADVANTAGES OF DEPLOYING DELL/EMC CX4 STORAGE IN MICROSOFT EXCHANGE ENVIRONMENTS Dell Inc. October 2008 Visit www.dell.com/emc for more information on Dell/EMC Storage.

More information

Storage Virtualization II Effective Use of Virtualization - focusing on block virtualization -

Storage Virtualization II Effective Use of Virtualization - focusing on block virtualization - Storage Virtualization II Effective Use of Virtualization - focusing on block virtualization - Rob Peglar Xiotech Corporation SNIA Legal Notice The material contained in this tutorial is copyrighted by

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

Lenovo Database Configuration

Lenovo Database Configuration Lenovo Database Configuration for Microsoft SQL Server OLTP on Flex System with DS6200 Reduce time to value with pretested hardware configurations - 20TB Database and 3 Million TPM OLTP problem and a solution

More information

Mission-Critical Databases in the Cloud. Oracle RAC in Microsoft Azure Enabled by FlashGrid Software.

Mission-Critical Databases in the Cloud. Oracle RAC in Microsoft Azure Enabled by FlashGrid Software. Mission-Critical Databases in the Cloud. Oracle RAC in Microsoft Azure Enabled by FlashGrid Software. White Paper rev. 2017-10-16 2017 FlashGrid Inc. 1 www.flashgrid.io Abstract Ensuring high availability

More information

Power Systems High Availability & Disaster Recovery

Power Systems High Availability & Disaster Recovery Power Systems High Availability & Disaster Recovery Solutions Comparison of various HA & DR solutions for Power Systems Authors: Carl Burnett, Joe Cropper, Ravi Shankar Table of Contents 1 Abstract...

More information

1 Quantum Corporation 1

1 Quantum Corporation 1 1 Tactics and Tips for Protecting Virtual Servers Mark Eastman Director, Solutions Marketing April 2008 VMware Changing the Way Data Protection is Done No longer 1 server, 1 backup paradigm App Virtual

More information