Virtualization Performance

Size: px
Start display at page:

Download "Virtualization Performance"

Transcription

1 Maximizing Virtualization Performance By Michael Otey Without a doubt, performance is the database professional s number one concern when it comes to virtualizing Microsoft SQL Server. While virtualizing SQL Server is nothing new, even today there are some people who still think that SQL Server is too resource-intensive to virtualize. That s definitely not the case. However, there are several tips and best practices that you need to follow to achieve optimum performance and availability for your virtual SQL Server instances. In this whitepaper, you ll learn about the best practices, techniques, and server platform for virtualizing SQL Server to obtain the maximum virtualized database performance. Sponsored by In the first part of this whitepaper, you ll learn about some of the best practices for configuring your virtualization host s central processing unit (CPU), memory, and storage. Next, you ll learn about the best practices for configuring a guest virtual machine (VM) to run SQL Server. You ll see best practices for configuring virtual CPUs and using dynamic memory. You ll also learn about using virtual hard disks (VHDs), configuring SQL Server VM storage, 1

2 and using solid state disks (SSDs) with your SQL Server VMs. Then you ll see how you can maximize SQL Server 2014 online transaction processing (OLTP) application performance by taking advantage of the new In-Memory OLTP feature. The second part of this whitepaper will cover some of the practical implementation details required to get the best performance for your SQL Server VMs. Although the specific configuration steps are vital, it s equally important to select the right virtualization platform to provide the scalability and reliability that your organization needs to meet its service level agreements (SLAs). In this section, you ll learn about using the NEC Express5800/A2000 Series Server as a virtualization platform. Here you ll see how its Capacity OPTimization (COPT) feature and high random-access memory (RAM) capacity enable it to support dense virtualization workloads. Then you ll see how NEC s ProgrammableFlow Network Suite and PF1000 virtual switch integrate with Microsoft Hyper-V and Microsoft System Center Virtual Machine Manager (SCVMM) to provide predictable network bandwidth for your business-critical applications. As a general rule for the best performance in your tier 1 VMs, you should plan for a 1:1 ratio of virtual CPUs and physical cores in the system. Maximizing Host CPU and Memory Making sure the host is correctly configured is one of the most fundamental aspects for optimizing your virtualization environment. If your host lacks the processing power, RAM, or network bandwidth to run your VMs, you ll never achieve the performance that you need for your tier 1 applications. First, the host has to be sized adequately to run the workloads of all of the VMs that will be simultaneously active. To plan for the proper host capacity, you should use Performance Monitor to create a performance baseline for the workload you intend to virtualize by measuring the peak and average CPU and memory utilization. This workload can be running on a VM, or it can be a physical installation that you plan to migrate to a VM. Aggregating these values for all the different servers that you want to run on your virtualization host will tell you the base processing power and RAM that s needed. As a general rule for the best performance in your tier 1 VMs, you should plan for 2

3 a 1:1 ratio of virtual CPUs and physical cores in the system. While nothing prevents you from overcommitting the CPUs for either Hyper-V or VMware vsphere, matching you physical cores to your virtual CPUs will ensure that you always have computing power for that workload. When you re planning the number of virtual CPUs to use in the guest, be sure to remember that the maximum number of virtual CPUs supported can vary depending on the guest OS. Both Windows Server 2012 R2 Hyper-V and vsphere 5.5 provide support for hosts with up to 320 cores and VMs with up to 64 virtual CPUs. Next, while you re planning your host s computing resources, you should make sure that the host supports Second Level Address Translation (SLAT) and Non-Uniform Memory Access (NUMA). Most modern servers from tier 1 vendors provide these features, but they might not be present if you re considering using an older hardware platform for virtualization. Both are very important for VM scalability. SLAT has different names, depending on the CPU manufacturer. Intel s version is The host memory is the next most important consideration after the host s CPU support. called Extended Page Tables (EPT) and AMD calls it Rapid Virtualization Indexing (RVI). SLAT allows the processor to directly handle the translation of guest virtual addresses to host physical addresses without the need for the hypervisor to keep track of a shadow page table, thereby reducing the load on the hypervisor for every guest VM. NUMA support allows NUMA-aware applications like SQL Server to optimize threads in high-speed memory that s owned (should this be owned?) by a local processor. The latest version of Windows Server 2012 R2 Hyper-V and vsphere 5.5 both provide NUMA support for guest VMs. The host memory is the next most important consideration after the host s CPU support. First, make sure that you don t allocate all the available host physical RAM to the VM. Plan to keep about 1GB of memory reserved for the host to manage the running VMs. To prepare for future scalability requirements, it s a best practice to select a host system that supports hot-add RAM. RAM is typically the limiting factor 3

4 to how many VMs you can run simultaneously, and hot-add RAM enables you to upgrade the host without incurring any downtime. Windows Server 2012/R2 supports hot-add RAM but you should be aware that hot-add RAM is not supported in every server hardware platform. You should be sure to look for this capability when evaluating virtualization server platforms. Making sure that there s adequate network bandwidth for your production workloads is the next critical step in the virtualization s host configuration. Trying to funnel all the network traffic for your VMs through too few host network interface cards (NICs) is a common virtualization configuration mistake. You can use Performance Monitor to get an idea of your aggregated network bandwidth requirements just like you did to estimate the host s CPU and memory requirements. In addition, you should plan for one dedicated NIC for management purposes as well as one dedicated NIC for live migration or vmotion. This will help to separate the network traffic required by these management tasks from your production workloads. Finally, you should plan for the host s OS to be installed on a separate storage location from the guest VHDs or virtual machine disks (VMDKs). More details about guest VM storage is presented in the following section. In addition, if you re running anti-virus (AV) software on the host, be sure to exclude the VMs from AV scanning. AV scans will impact the performance of the VM, which is something that you want to avoid for your tier 1 applications. Any AV scanning should occur within the VM guest. One of the most important guest configuration guidelines is to be sure to provide enough memory for the guest. Guest VM Configuration Guidelines One of the most important guest configuration guidelines is to be sure to provide enough memory for the guest. This is especially true if the guest is running a database application like SQL Server or Microsoft SharePoint. As a general rule of thumb, the more memory you can give SQL Server VMs the better up to a point. The actual requirements depend on the application and workload. One best 4

5 practice is to take advantage of the hypervisor s ability to support dynamic memory. Both Hyper-V and vsphere can take advantage of dynamic memory. Microsoft fully supports running SQL Server with dynamic memory to increase server consolidation ratios and increase database performance. One best performance practice with dynamic memory is to avoid setting a maximum ceiling and to let the VM expand the memory if the VM experiences memory pressure. When you create a guest VM, you have three basic choices for VHD types. When you create a guest VM, you have three basic choices for VHD types. Microsoft and VMware each have slightly different names for these different VHD formats, but they re essentially the same: fixed virtual disks, dynamic disks, and differencing disks. Fixed virtual disks provide the best performance, but they also require the most disk storage. Fixed virtual disks provide almost the same performance as native Direct Attached Storage (DAS). Dynamic disks are slightly slower and require much less storage than fixed virtual disks. However, the hypervisor will expand dynamic disks when they need more storage, and the execution of the VM is paused during this process. You would typically use fixed virtual disks to avoid this situation for business-critical SQL Server instances. Differencing disks are the slowest type of VHD, but they also require the least disk space. Differencing disks are best suited for lab and help desk scenarios and not for running production applications. Next, when you re configuring the VM itself for SQL Server, one of the most important best practices is to create multiple VHDs and use them to split out the SQL Server production database and log files as well tempdb. If you don t change the defaults, the SQL Server installation puts everything on the drive with the SQL Server binaries. In the case of a VM, this means that the guest OS, the database data files, the database log files, tempdb, and the other system databases would 5

6 all be on the same VHD. That configuration can work for some small installations, but it certainly won t give you the best database performance. Putting the data and log files on separate VHDs that use different drives will definitely provide far better performance. In addition, like in a physical installation, you should place the VHD containing the log files on fast-writing drives that use RAID 1 or RAID 10. Another best storage configuration practice is to put tempdb on its own drive using a VHD that s separate from the data and log files. Tempdb can be a very active database with lots of write activity, so like the log files, a best practice is to use RAID 1 or RAID 10 if possible for the drives on which the tempdb database is placed. Another important factor for performance is the installation of SQL Server Integration Services. Another important factor for performance that s easy to overlook is the installation of SQL Server Integration Services (SSIS) or VM Tools on the guest. These VM addins provide optimized device drivers for the VM. For instance, when you install SSIS on a Hyper-V VM, you get the high-performance synthetic network device driver. If you don t install SSIS, your Hyper-V VMs will use the Legacy Network adapter. The Legacy Network adapter is an emulated device, and its activity is handled by a worker thread in the Hyper-V host s parent partition. This will result in slower network performance for that VM as well as all of the other VMs on the host. Using SSDs The continued advancements in computing power and large memory support have resulted in the input/output (I/O) subsystem being a bottleneck for some VM installations. Traditional hard disk drives (HDDs) have gotten larger, but they really haven t gotten faster. SSDs use high-performance flash memory for storage, and they can provide significantly higher throughput than standard rotational HDDs. An HDD Serial Attached SCSI (SAS) drive spinning at 15,000 revolutions per minute (rpm) can deliver about 150MB to 200MB of sequential throughput per second. In contrast, an SSD drive on a 6GB controller can provide about 550MB of sequential throughput per second. 6

7 When you re considering using SSDs with SQL Server VMs, you have several different implementation options: Moving data files onto SSDs. Data files typically experience more reads than writes and can be a good choice for SSDs if the SSDs are large enough to contain the data files. Moving indexes onto SSDs. Most index access is read-heavy, making them ideal candidates for SSD drives, which excel at random read access. Moving log files onto SSDs. Log files experience a high degree of writes and therefore might not be as good a candidate as data files or indexes for moving onto SSDs. If you do move the log files onto SSDs, plan on using drive mirroring and RAID to protect against drive failure. Moving tempdb onto SSDs. Tempdb typically experiences a high volume of write activity. Moving tempdb onto SSDs can provide improved performance, but you need to be sure to monitor the drive status and have a replacement strategy. Like with log files, if you move tempdb onto SSDs, plan on using drive mirroring and RAID to protect against drive failure. The more write operations an SSD has, the shorter its life expectancy will be. Although SSDs provide better performance than HDDs, there are a couple caveats to using SSDs. First, it s important to realize that they aren t a silver bullet for your performance issues. SSDs won t fix a lack of memory or processing power. Likewise, they won t fix poorly written queries. Next, the SSD lifecycle is significantly shorter than a rotational HDD. The more write operations an SSD has, the shorter its life expectancy will be. Furthermore, the write performance for an SSD will degrade over time. High I/O implementations like SQL Server will also shorten the lifecycle of an SDD. In addition, the fuller the SSD drive is, the faster it will degrade. This essentially means that if you plan to use SSDs for your SQL Server VMs, you need to plan to keep about 50 percent of the drives space unallocated and you should plan on a two to three year replacement cycle. 7

8 The life expectancy of SSDs also varies greatly according to the type of SSD drive. There are two basic types: single-level cell (SLC) and multi-level cell (MLC). SLCs are enterprise grade. Although they re more costly, they deliver better performance and a longer lifespan than MLCs. MLCs are typically found in consumer-grade devices and have lower performance and shorter lifespans than SLCs. Finally, if you implement SSDs, don t attempt to defragment them. They don t store or retrieve data like HDDs. Defragmentation will only increase the wear on the drive. Revving Up VMs with the SQL Server 2014 In-Memory OLTP Engine The upcoming SQL Server 2014 release will provide the all-new In-Memory OLTP engine, which promises to significantly boost application performance. Microsoft has shown application performance improvements ranging from 7x to 20x using the new In-Memory OLTP engine. Equally significant is the fact that this new In-Memory OLTP engine can work just as well in a VM as it can in a physical system. SQL Server 2014 s new In-Memory OLTP support works by moving select tables and stored procedures into memory. Plus, the new In-Memory OLTP engine provides an all new lock-free optimistic locking design that maximizes the throughput of the engine. Memory access speeds are much faster than disk access speeds. Memory access speeds are much faster than disk access speeds. However, to really take advantage of the In-Memory OLTP engine, you need to be running on a platform that can support the large memory capacities required to move the selected tables and stored procedures into RAM. The latest versions of Windows Server 2012 R2 Hyper-V and vsphere 5.5 both support hosts with up to 320 cores and 4TB of RAM. In addition, both offer support for VMs with up to 1TB of virtual memory. These large memory sizes, coupled with a physical host that supports this much RAM, enable SQL Server VMs to take full advantage of the new In-Memory OLTP performance feature. 8

9 Virtualization on the NEC Express5800 Selecting the proper hardware platform is essential for providing maximum performance and scalability to your SQL Server VMs. NEC s new Express5800/A2000 Series Server (or CX) brings mainframe-class performance and reliability to your enterprise virtualization implementations. The CX series is NEC s highest performing line of systems, and its sixth generation of Intel-based enterprise server systems. The CX series uses the latest high-performance Intel Xeon processor E7 v2 Product Family. The new Intel Xeon E7 v2 processors can be configured with up to 15 cores per processor, and they support twice the amount of memory compared to the previous generation of CPUs. In its maximum configuration, the CX supports up to four processors, where each CPU has 15 cores for a total of 60 cores. The high number of cores enables the CX to be able to dedicate physical CPU resources to each vcpu running in the SQL Server VMs thereby maximizing performance. The CX is also ideal for memory-intensive applications, offering support for up to 4TB of RAM. You can see the NEC Express5800 in Figure 1. Figure 1: NEC Express5800/A2000 Series Server (CX) Beyond pure scalability, the NEC CX supports a unique core optimization capability called COPT (Capacity OPTimization). COPT is essentially a dynamic CPU core activation control similar to UNIX s capacity on demand capability. COPT provides improved reliability and scalability by enabling you to dynamically add available unused CPU cores. COPT allows you to pay as you grow by dynamically adding cores for increased scalability using a core activation key. The NEC Express5800/A2040b COPT model can seamlessly scale up from 1 to 60 cores. This core optimization capability is completely independent of the operating systems. It works with Linux and vsphere in addition to Windows Server 2012 and Windows Server 2008 R2 SP1. In the case of Linux and Windows, the cores can be added without requiring a server reboot. You can see an overview of NEC s COPT feature in Figure 2. 9

10 Figure 2: An Overview of NEC s COPT Feature In Figure 2 you can see how COPT can be used to dynamically scale performance. On the left side of the graph you can see where the system configuration starts off with two CPUs each with two cores enabled. As demands on the system increase cores can be added by simply enabling more cores via a software activation key. In the middle section you can see that two additional license keys have been used to add one additional core per CPU. On the far right you can see where you can subsequently add more additional cores to accommodate future growth. COPT allows you to dynamically add cores up to the system s maximum of 60 cores across 4 CPUs. COPT is a powerful and unique feature. It can provide protection from CPU failures and it enables increased scalability without requiring any physical hardware maintenance or intervention. In addition to unique COPT features, the CX supports a number of advanced Reliability, Availability, and Serviceability (RAS) features. These features are critical when selecting a server platform as they help avoid any single point of failure. This is particularly important in virtualizing a 10

11 Tier-1 application like SQL Server where availability is critical. Memory modules and I/O cards can be added on-the-fly without shutting the system down. Memory is constantly monitored for errors and support for Double Device Data Correction (DDDC) allows DRAMs with memory errors to be dynamically removed from the system s memory map. Enhanced MCA recovery enables uncorrectable errors to be detected and recovered while only the affected application will be shutdown. You can see an overview of the CX s main RAS features in Figure 3. Single Node Flexibility Features CPU (Core) Capacity on demand [COPT] DynamicMemory Page De-allocation/PFA Yes (W/L/V) Yes (W/L/V) (Predictive Failure Analysis) for ECC Memory chip data correction DDDC DDDC Recovery for CPU/Memory failure [MCA Recovery] Yes (W/L/V) Yes (W/L/V) Failure log correction and report Yes Yes HW resource (Core IO/Service Processor/Clock) Sparing Yes Yes Supporting the above features sometimes depends on OS readiness. W = Windows, L = Standard Linux (RHEL or Oracle UEK) + NEC s RAS Driver, V = VMware Availability Figure 3: NEC Express58000/A2000 Series RAS Features Next Gen A2040b A2040bCOPT Yes (W/L) (Reboot NOT required) Next Gen (Sub-models) A202b Memory module addition on the fly Yes (W/L) Yes (W/L) I/O Card hot plug Yes (W/L) Yes (W/L) DynamicCore De-allocation and Sparing Yes (L) Predictable Network Performance with ProgrammableFlow Providing the raw processing power to support your virtual workloads is the first step toward achieving enterprise-level virtualization performance. However, you still need to be able to deliver that power to your end users. Your network infrastructure is the vital conduit for connecting your virtualized applications to the end users that need them. It s important to realize that the network can be a bottleneck, especially in highly virtualized environments. Software-defined networking (SDN) technologies like NEC s ProgrammableFlow Networking Suite can enable you to more quickly deploy applications as well as control the No Yes (L), but sparing not supported 11

12 utilization of your network resources. The end result is improved ability to meet your SLAs and deliver predictable application performance to your end users. Designed to support high-density virtualization platforms like the Express5800/A2000 Series Server, NEC s ProgrammableFlow SDN technology ensures that all of your VMs can meet their SLAs by enabling you to create a logical or virtual network that s abstracted from the underlying physical network infrastructure. You can associate your virtual networks with specific applications, eliminating the need to manually create Virtual Local Area Networks (VLANs) when you deploy your applications. These associations also enable you to manage the network bandwidth for your applications using defined policies. NEC s ProgrammableFlow is completely integrated with Microsoft System Center and Windows Server 2012 R2 Hyper-V network virtualization, enabling you to manage your VMs and your virtual networks using SCVMM When you create virtual networks using SCVMM, NEC s ProgrammableFlow SDN capabilities will handle all the required underlying network configurations. NEC s ProgrammableFlow Networking Suite uses the OpenFlow protocol to automatically provision and manage both the physical switches and Hyper-V s Extensible Switch (also known as the Virtual Switch). Summary The days of considering SQL Server to be a workload that can t be virtualized are definitely in the past. Today s high-performance computing platforms like the NEC Express5800/ A2000 Series Server provides a level of performance and scalability that s ideal for running virtually all production SQL Server workloads. In addition, the latest generation of hypervisors like Windows Server 2012 R2 and vsphere 5.5 enable you to take full advantage of the host s compute and memory capabilities, allowing you to run the most resource-intensive enterprise workloads. In order to ensure maximum performance and scalability you need to be sure to start with a hardware platform that provides the essential computing power plus the high memory capacity required to support multiple concurrent workloads. With support for up to 60 cores and 4 TB of RAM the NEC Express5800/A2000 series delivers the performance and scalability required to run the most resource intensive workloads. Beyond pure scalability its RAS and COPT features provide mainframe class reliability for your SQL Server VMs. With that said, you ll find that by following the essential virtualization host and VM guest configuration practices, selecting the right server platform like the NEC Express5800/A2000 Series Server, and by taking advantage of SDN, you can ensure that you ll get the maximum performance for your SQL Server VMs. 12

Maximizing SQL Server Virtualization Performance

Maximizing SQL Server Virtualization Performance Maximizing SQL Server Virtualization Performance Michael Otey Senior Technical Director Windows IT Pro SQL Server Pro 1 What this presentation covers Host configuration guidelines CPU, RAM, networking

More information

SQL Server Virtualization

SQL Server Virtualization The Essential Guide to SQL Server Virtualization S p o n s o r e d b y Virtualization in the Enterprise Today most organizations understand the importance of implementing virtualization. Virtualization

More information

MS EXCHANGE SERVER ACCELERATION IN VMWARE ENVIRONMENTS WITH SANRAD VXL

MS EXCHANGE SERVER ACCELERATION IN VMWARE ENVIRONMENTS WITH SANRAD VXL MS EXCHANGE SERVER ACCELERATION IN VMWARE ENVIRONMENTS WITH SANRAD VXL Dr. Allon Cohen Eli Ben Namer info@sanrad.com 1 EXECUTIVE SUMMARY SANRAD VXL provides enterprise class acceleration for virtualized

More information

Microsoft Office SharePoint Server 2007 Performance on VMware vsphere 4.1

Microsoft Office SharePoint Server 2007 Performance on VMware vsphere 4.1 Performance Study Microsoft Office SharePoint Server 2007 Performance on VMware vsphere 4.1 VMware vsphere 4.1 One of the key benefits of virtualization is the ability to consolidate multiple applications

More information

Oracle Database Scalability in VMware ESX VMware ESX 3.5

Oracle Database Scalability in VMware ESX VMware ESX 3.5 Performance Study Oracle Database Scalability in VMware ESX VMware ESX 3.5 Database applications running on individual physical servers represent a large consolidation opportunity. However enterprises

More information

WHITE PAPER Optimizing Virtual Platform Disk Performance

WHITE PAPER Optimizing Virtual Platform Disk Performance WHITE PAPER Optimizing Virtual Platform Disk Performance Think Faster. Visit us at Condusiv.com Optimizing Virtual Platform Disk Performance 1 The intensified demand for IT network efficiency and lower

More information

Evaluation Report: Accelerating SQL Server Database Performance with the Lenovo Storage S3200 SAN Array

Evaluation Report: Accelerating SQL Server Database Performance with the Lenovo Storage S3200 SAN Array Evaluation Report: Accelerating SQL Server Database Performance with the Lenovo Storage S3200 SAN Array Evaluation report prepared under contract with Lenovo Executive Summary Even with the price of flash

More information

HP SN1000E 16 Gb Fibre Channel HBA Evaluation

HP SN1000E 16 Gb Fibre Channel HBA Evaluation HP SN1000E 16 Gb 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

Windows Server 2008 R2 Hyper-V Live Migration

Windows Server 2008 R2 Hyper-V Live Migration Windows Server 2008 R2 Hyper-V Live Migration White Paper Published: August 09 This is a preliminary document and may be changed substantially prior to final commercial release of the software described

More information

EMC Virtual Infrastructure for Microsoft SQL Server

EMC Virtual Infrastructure for Microsoft SQL Server Microsoft SQL Server Enabled by EMC Celerra and Microsoft Hyper-V Copyright 2010 EMC Corporation. All rights reserved. Published February, 2010 EMC believes the information in this publication is accurate

More information

IOS110. Virtualization 5/27/2014 1

IOS110. Virtualization 5/27/2014 1 IOS110 Virtualization 5/27/2014 1 Agenda What is Virtualization? Types of Virtualization. Advantages and Disadvantages. Virtualization software Hyper V What is Virtualization? Virtualization Refers to

More information

Windows Server 2008 R2 Hyper-V Live Migration

Windows Server 2008 R2 Hyper-V Live Migration Windows Server 2008 R2 Hyper-V Live Migration Table of Contents Overview of Windows Server 2008 R2 Hyper-V Features... 3 Dynamic VM storage... 3 Enhanced Processor Support... 3 Enhanced Networking Support...

More information

Express5800 Scalable Enterprise Server Reference Architecture. For NEC PCIe SSD Appliance for Microsoft SQL Server

Express5800 Scalable Enterprise Server Reference Architecture. For NEC PCIe SSD Appliance for Microsoft SQL Server Express5800 Scalable Enterprise Server Reference Architecture For NEC PCIe SSD Appliance for Microsoft SQL Server An appliance that significantly improves performance of enterprise systems and large-scale

More information

Microsoft Exchange Solutions on VMware

Microsoft Exchange Solutions on VMware Design and Sizing Examples: Microsoft Exchange Solutions on VMware Page 1 of 19 Contents 1. Introduction... 3 1.1. Overview... 3 1.2. Benefits of Running Exchange Server 2007 on VMware Infrastructure 3...

More information

Windows Server 2008 R2 Hyper V. Public FAQ

Windows Server 2008 R2 Hyper V. Public FAQ Windows Server 2008 R2 Hyper V Public FAQ Contents New Functionality in Windows Server 2008 R2 Hyper V...3 Windows Server 2008 R2 Hyper V Questions...4 Clustering and Live Migration...5 Supported Guests...6

More information

Scaling in a Hypervisor Environment

Scaling in a Hypervisor Environment Scaling in a Hypervisor Environment Richard McDougall Chief Performance Architect VMware VMware ESX Hypervisor Architecture Guest Monitor Guest TCP/IP Monitor (BT, HW, PV) File System CPU is controlled

More information

Using VMware VMotion with Oracle Database and EMC CLARiiON Storage Systems

Using VMware VMotion with Oracle Database and EMC CLARiiON Storage Systems Using VMware VMotion with Oracle Database and EMC CLARiiON Storage Systems Applied Technology Abstract By migrating VMware virtual machines from one physical environment to another, VMware VMotion can

More information

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION

DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION DIABLO TECHNOLOGIES MEMORY CHANNEL STORAGE AND VMWARE VIRTUAL SAN : VDI ACCELERATION A DIABLO WHITE PAPER AUGUST 2014 Ricky Trigalo Director of Business Development Virtualization, Diablo Technologies

More information

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1

Performance Characteristics of VMFS and RDM VMware ESX Server 3.0.1 Performance Study Performance Characteristics of and RDM VMware ESX Server 3.0.1 VMware ESX Server offers three choices for managing disk access in a virtual machine VMware Virtual Machine File System

More information

Maximizing Your Server Memory and Storage Investments with Windows Server 2012 R2

Maximizing Your Server Memory and Storage Investments with Windows Server 2012 R2 Executive Summary Maximizing Your Server Memory and Storage Investments with Windows Server 2012 R2 October 21, 2014 What s inside Windows Server 2012 fully leverages today s computing, network, and storage

More information

Dell Virtualization Solution for Microsoft SQL Server 2012 using PowerEdge R820

Dell Virtualization Solution for Microsoft SQL Server 2012 using PowerEdge R820 Dell Virtualization Solution for Microsoft SQL Server 2012 using PowerEdge R820 This white paper discusses the SQL server workload consolidation capabilities of Dell PowerEdge R820 using Virtualization.

More information

Deploying Affordable, High Performance Hybrid Flash Storage for Clustered SQL Server

Deploying Affordable, High Performance Hybrid Flash Storage for Clustered SQL Server Deploying Affordable, High Performance Hybrid Flash Storage for Clustered SQL Server Flash storage adoption has increased in recent years, as organizations have deployed it to support business applications.

More information

Virtualizing SQL Server 2008 Using EMC VNX Series and Microsoft Windows Server 2008 R2 Hyper-V. Reference Architecture

Virtualizing SQL Server 2008 Using EMC VNX Series and Microsoft Windows Server 2008 R2 Hyper-V. Reference Architecture Virtualizing SQL Server 2008 Using EMC VNX Series and Microsoft Windows Server 2008 R2 Hyper-V Copyright 2011 EMC Corporation. All rights reserved. Published February, 2011 EMC believes the information

More information

EMC Unified Storage for Microsoft SQL Server 2008

EMC Unified Storage for Microsoft SQL Server 2008 EMC Unified Storage for Microsoft SQL Server 2008 Enabled by EMC CLARiiON and EMC FAST Cache Reference Copyright 2010 EMC Corporation. All rights reserved. Published October, 2010 EMC believes the information

More information

Best Practices for Virtualised SharePoint

Best Practices for Virtualised SharePoint Best Practices for Virtualised SharePoint Brendan Law Blaw@td.com.au @FlamerNZ Flamer.co.nz/spag/ Nathan Mercer Nathan.Mercer@microsoft.com @NathanM blogs.technet.com/nmercer/ Agenda Why Virtualise? Hardware

More information

Distribution One Server Requirements

Distribution One Server Requirements Distribution One Server Requirements Introduction Welcome to the Hardware Configuration Guide. The goal of this guide is to provide a practical approach to sizing your Distribution One application and

More information

EMC Celerra Unified Storage Platforms

EMC Celerra Unified Storage Platforms EMC Solutions for Microsoft SQL Server EMC Celerra Unified Storage Platforms EMC NAS Product Validation Corporate Headquarters Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright 2008, 2009 EMC

More information

Technical Paper. Moving SAS Applications from a Physical to a Virtual VMware Environment

Technical Paper. Moving SAS Applications from a Physical to a Virtual VMware Environment Technical Paper Moving SAS Applications from a Physical to a Virtual VMware Environment Release Information Content Version: April 2015. Trademarks and Patents SAS Institute Inc., SAS Campus Drive, Cary,

More information

The Benefits of POWER7+ and PowerVM over Intel and an x86 Hypervisor

The Benefits of POWER7+ and PowerVM over Intel and an x86 Hypervisor The Benefits of POWER7+ and PowerVM over Intel and an x86 Hypervisor Howard Anglin rhbear@us.ibm.com IBM Competitive Project Office May 2013 Abstract...3 Virtualization and Why It Is Important...3 Resiliency

More information

PARALLELS CLOUD STORAGE

PARALLELS CLOUD STORAGE PARALLELS CLOUD STORAGE Performance Benchmark Results 1 Table of Contents Executive Summary... Error! Bookmark not defined. Architecture Overview... 3 Key Features... 5 No Special Hardware Requirements...

More information

Microsoft Hyper-V chose a Primary Server Virtualization Platform

Microsoft Hyper-V chose a Primary Server Virtualization Platform Roger Shupert, Integration Specialist } Lake Michigan College has been using Microsoft Hyper-V as it s primary server virtualization platform since 2008, in this presentation we will discuss the following;

More information

Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays

Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays Best Practices for Deploying SSDs in a Microsoft SQL Server 2008 OLTP Environment with Dell EqualLogic PS-Series Arrays Database Solutions Engineering By Murali Krishnan.K Dell Product Group October 2009

More information

FlashSoft Software from SanDisk : Accelerating Virtual Infrastructures

FlashSoft Software from SanDisk : Accelerating Virtual Infrastructures Technology Insight Paper FlashSoft Software from SanDisk : Accelerating Virtual Infrastructures By Leah Schoeb January 16, 2013 FlashSoft Software from SanDisk: Accelerating Virtual Infrastructures 1 FlashSoft

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

Reference Architecture for Dell VIS Self-Service Creator and VMware vsphere 4

Reference Architecture for Dell VIS Self-Service Creator and VMware vsphere 4 Reference Architecture for Dell VIS Self-Service Creator and VMware vsphere 4 Solutions for Large Environments Virtualization Solutions Engineering Ryan Weldon and Tom Harrington THIS WHITE PAPER IS FOR

More information

VMware Virtual SAN Backup Using VMware vsphere Data Protection Advanced SEPTEMBER 2014

VMware Virtual SAN Backup Using VMware vsphere Data Protection Advanced SEPTEMBER 2014 VMware SAN Backup Using VMware vsphere Data Protection Advanced SEPTEMBER 2014 VMware SAN Backup Using VMware vsphere Table of Contents Introduction.... 3 vsphere Architectural Overview... 4 SAN Backup

More information

PARALLELS CLOUD SERVER

PARALLELS CLOUD SERVER PARALLELS CLOUD SERVER Performance and Scalability 1 Table of Contents Executive Summary... Error! Bookmark not defined. LAMP Stack Performance Evaluation... Error! Bookmark not defined. Background...

More information

EMC Virtual Infrastructure for Microsoft Applications Data Center Solution

EMC Virtual Infrastructure for Microsoft Applications Data Center Solution EMC Virtual Infrastructure for Microsoft Applications Data Center Solution Enabled by EMC Symmetrix V-Max and Reference Architecture EMC Global Solutions Copyright and Trademark Information Copyright 2009

More information

Virtualizing Microsoft SQL Server on Dell XC Series Web-scale Converged Appliances Powered by Nutanix Software. Dell XC Series Tech Note

Virtualizing Microsoft SQL Server on Dell XC Series Web-scale Converged Appliances Powered by Nutanix Software. Dell XC Series Tech Note Virtualizing Microsoft SQL Server on Dell XC Series Web-scale Converged Appliances Powered by Nutanix Software Dell XC Series Tech Note The increase in virtualization of critical applications such as Microsoft

More information

Balancing CPU, Storage

Balancing CPU, Storage TechTarget Data Center Media E-Guide Server Virtualization: Balancing CPU, Storage and Networking Demands Virtualization initiatives often become a balancing act for data center administrators, who are

More information

Optimizing SQL Server Storage Performance with the PowerEdge R720

Optimizing SQL Server Storage Performance with the PowerEdge R720 Optimizing SQL Server Storage Performance with the PowerEdge R720 Choosing the best storage solution for optimal database performance Luis Acosta Solutions Performance Analysis Group Joe Noyola Advanced

More information

Sage 300 ERP 2014 Compatibility guide

Sage 300 ERP 2014 Compatibility guide Sage 300 ERP 2014 Compatibility guide 03 17 2014 Table of contents 1.0 Overview 3 1.1 Overview 3 1.1.1 Unlisted platforms are not supported 3 1.1.2 Product updates and program fixes 3 1.1.3 Compatibility

More information

Monitoring Databases on VMware

Monitoring Databases on VMware Monitoring Databases on VMware Ensure Optimum Performance with the Correct Metrics By Dean Richards, Manager, Sales Engineering Confio Software 4772 Walnut Street, Suite 100 Boulder, CO 80301 www.confio.com

More information

Veeam 74-409 Study Webinar Server Virtualization with Windows Server Hyper-V and System Center. Orin Thomas @orinthomas

Veeam 74-409 Study Webinar Server Virtualization with Windows Server Hyper-V and System Center. Orin Thomas @orinthomas Veeam 74-409 Study Webinar Server Virtualization with Windows Server Hyper-V and System Center Orin Thomas @orinthomas http://hyperv.veeam.com/ study-guide-microsoft-certification-exam-74-409-server-virtualization-windows-server-hyper-v-system-center-4202/

More information

Virtualizing Microsoft Exchange Server 2010 with NetApp and VMware

Virtualizing Microsoft Exchange Server 2010 with NetApp and VMware Virtualizing Microsoft Exchange Server 2010 with NetApp and VMware Deploying Microsoft Exchange Server 2010 in a virtualized environment that leverages VMware virtualization and NetApp unified storage

More information

Microsoft Private Cloud Fast Track Reference Architecture

Microsoft Private Cloud Fast Track Reference Architecture Microsoft Private Cloud Fast Track Reference Architecture Microsoft Private Cloud Fast Track is a reference architecture designed to help build private clouds by combining Microsoft software with NEC s

More information

Parallels Cloud Storage

Parallels Cloud Storage Parallels Cloud Storage White Paper Best Practices for Configuring a Parallels Cloud Storage Cluster www.parallels.com Table of Contents Introduction... 3 How Parallels Cloud Storage Works... 3 Deploying

More information

Evaluation of Enterprise Data Protection using SEP Software

Evaluation of Enterprise Data Protection using SEP Software Test Validation Test Validation - SEP sesam Enterprise Backup Software Evaluation of Enterprise Data Protection using SEP Software Author:... Enabling you to make the best technology decisions Backup &

More information

Hyper-V R2: What's New?

Hyper-V R2: What's New? ASPE IT Training Hyper-V R2: What's New? A WHITE PAPER PREPARED FOR ASPE BY TOM CARPENTER www.aspe-it.com toll-free: 877-800-5221 Hyper-V R2: What s New? Executive Summary This white paper provides an

More information

EMC Business Continuity for Microsoft SQL Server Enabled by SQL DB Mirroring Celerra Unified Storage Platforms Using iscsi

EMC Business Continuity for Microsoft SQL Server Enabled by SQL DB Mirroring Celerra Unified Storage Platforms Using iscsi EMC Business Continuity for Microsoft SQL Server Enabled by SQL DB Mirroring Applied Technology Abstract Microsoft SQL Server includes a powerful capability to protect active databases by using either

More information

Virtual SAN Design and Deployment Guide

Virtual SAN Design and Deployment Guide Virtual SAN Design and Deployment Guide TECHNICAL MARKETING DOCUMENTATION VERSION 1.3 - November 2014 Copyright 2014 DataCore Software All Rights Reserved Table of Contents INTRODUCTION... 3 1.1 DataCore

More information

WITH A FUSION POWERED SQL SERVER 2014 IN-MEMORY OLTP DATABASE

WITH A FUSION POWERED SQL SERVER 2014 IN-MEMORY OLTP DATABASE WITH A FUSION POWERED SQL SERVER 2014 IN-MEMORY OLTP DATABASE 1 W W W. F U S I ON I O.COM Table of Contents Table of Contents... 2 Executive Summary... 3 Introduction: In-Memory Meets iomemory... 4 What

More information

Networking for Caribbean Development

Networking for Caribbean Development Networking for Caribbean Development BELIZE NOV 2 NOV 6, 2015 w w w. c a r i b n o g. o r g Virtualization: Architectural Considerations and Implementation Options Virtualization Virtualization is the

More information

Cloud Storage. Parallels. Performance Benchmark Results. White Paper. www.parallels.com

Cloud Storage. Parallels. Performance Benchmark Results. White Paper. www.parallels.com Parallels Cloud Storage White Paper Performance Benchmark Results www.parallels.com Table of Contents Executive Summary... 3 Architecture Overview... 3 Key Features... 4 No Special Hardware Requirements...

More information

Technology Insight Series

Technology Insight Series Evaluating Storage Technologies for Virtual Server Environments Russ Fellows June, 2010 Technology Insight Series Evaluator Group Copyright 2010 Evaluator Group, Inc. All rights reserved Executive Summary

More information

White Paper. Recording Server Virtualization

White Paper. Recording Server Virtualization White Paper Recording Server Virtualization Prepared by: Mike Sherwood, Senior Solutions Engineer Milestone Systems 23 March 2011 Table of Contents Introduction... 3 Target audience and white paper purpose...

More information

DELL SOLID STATE DISK (SSD) DRIVES

DELL SOLID STATE DISK (SSD) DRIVES DELL SOLID STATE DISK (SSD) DRIVES STORAGE SOLUTIONS FOR SELECT POWEREDGE SERVERS By Bryan Martin, Dell Product Marketing Manager for HDD & SSD delltechcenter.com TAB LE OF CONTENTS INTRODUCTION 3 DOWNFALLS

More information

Philips IntelliSpace Critical Care and Anesthesia on VMware vsphere 5.1

Philips IntelliSpace Critical Care and Anesthesia on VMware vsphere 5.1 Philips IntelliSpace Critical Care and Anesthesia on VMware vsphere 5.1 Jul 2013 D E P L O Y M E N T A N D T E C H N I C A L C O N S I D E R A T I O N S G U I D E Table of Contents Introduction... 3 VMware

More information

Best Practices for Optimizing Your Linux VPS and Cloud Server Infrastructure

Best Practices for Optimizing Your Linux VPS and Cloud Server Infrastructure Best Practices for Optimizing Your Linux VPS and Cloud Server Infrastructure Q1 2012 Maximizing Revenue per Server with Parallels Containers for Linux www.parallels.com Table of Contents Overview... 3

More information

Leveraging EMC Fully Automated Storage Tiering (FAST) and FAST Cache for SQL Server Enterprise Deployments

Leveraging EMC Fully Automated Storage Tiering (FAST) and FAST Cache for SQL Server Enterprise Deployments Leveraging EMC Fully Automated Storage Tiering (FAST) and FAST Cache for SQL Server Enterprise Deployments Applied Technology Abstract This white paper introduces EMC s latest groundbreaking technologies,

More information

7 Real Benefits of a Virtual Infrastructure

7 Real Benefits of a Virtual Infrastructure 7 Real Benefits of a Virtual Infrastructure Dell September 2007 Even the best run IT shops face challenges. Many IT organizations find themselves with under-utilized servers and storage, yet they need

More information

Part 1 - What s New in Hyper-V 2012 R2. Clive.Watson@Microsoft.com Datacenter Specialist

Part 1 - What s New in Hyper-V 2012 R2. Clive.Watson@Microsoft.com Datacenter Specialist Part 1 - What s New in Hyper-V 2012 R2 Clive.Watson@Microsoft.com Datacenter Specialist Microsoft Cloud OS Vision Public Cloud Azure Virtual Machines Windows Azure Pack 1 Consistent Platform Windows Azure

More information

IOmark- VDI. Nimbus Data Gemini Test Report: VDI- 130906- a Test Report Date: 6, September 2013. www.iomark.org

IOmark- VDI. Nimbus Data Gemini Test Report: VDI- 130906- a Test Report Date: 6, September 2013. www.iomark.org IOmark- VDI Nimbus Data Gemini Test Report: VDI- 130906- a Test Copyright 2010-2013 Evaluator Group, Inc. All rights reserved. IOmark- VDI, IOmark- VDI, VDI- IOmark, and IOmark are trademarks of Evaluator

More information

Best Practices for Monitoring Databases on VMware. Dean Richards Senior DBA, Confio Software

Best Practices for Monitoring Databases on VMware. Dean Richards Senior DBA, Confio Software Best Practices for Monitoring Databases on VMware Dean Richards Senior DBA, Confio Software 1 Who Am I? 20+ Years in Oracle & SQL Server DBA and Developer Worked for Oracle Consulting Specialize in Performance

More information

LSI MegaRAID FastPath Performance Evaluation in a Web Server Environment

LSI MegaRAID FastPath Performance Evaluation in a Web Server Environment LSI MegaRAID FastPath Performance Evaluation in a Web Server Environment Evaluation report prepared under contract with LSI Corporation Introduction Interest in solid-state storage (SSS) is high, and IT

More information

LSI MegaRAID CacheCade Performance Evaluation in a Web Server Environment

LSI MegaRAID CacheCade Performance Evaluation in a Web Server Environment LSI MegaRAID CacheCade Performance Evaluation in a Web Server Environment Evaluation report prepared under contract with LSI Corporation Introduction Interest in solid-state storage (SSS) is high, and

More information

Deploying and Optimizing SQL Server for Virtual Machines

Deploying and Optimizing SQL Server for Virtual Machines Deploying and Optimizing SQL Server for Virtual Machines Deploying and Optimizing SQL Server for Virtual Machines Much has been written over the years regarding best practices for deploying Microsoft SQL

More information

MS Exchange Server Acceleration

MS Exchange Server Acceleration White Paper MS Exchange Server Acceleration Using virtualization to dramatically maximize user experience for Microsoft Exchange Server Allon Cohen, PhD Scott Harlin OCZ Storage Solutions, Inc. A Toshiba

More information

HP ProLiant Gen8 vs Gen9 Server Blades on Data Warehouse Workloads

HP ProLiant Gen8 vs Gen9 Server Blades on Data Warehouse Workloads HP ProLiant Gen8 vs Gen9 Server Blades on Data Warehouse Workloads Gen9 Servers give more performance per dollar for your investment. Executive Summary Information Technology (IT) organizations face increasing

More information

High Performance SQL Server with Storage Center 6.4 All Flash Array

High Performance SQL Server with Storage Center 6.4 All Flash Array High Performance SQL Server with Storage Center 6.4 All Flash Array Dell Storage November 2013 A Dell Compellent Technical White Paper Revisions Date November 2013 Description Initial release THIS WHITE

More information

Memory and SSD Optimization In Windows Server 2012 and SQL Server 2012

Memory and SSD Optimization In Windows Server 2012 and SQL Server 2012 Memory and SSD Optimization In Windows Server 2012 and SQL Server 2012 Contents Windows Server 2012 Overview 2 Memory and Storage Optimization in Hyper-V 3 Understanding NUMA Impact 3 Virtual NUMA Support

More information

IOmark-VM. DotHill AssuredSAN Pro 5000. Test Report: VM- 130816-a Test Report Date: 16, August 2013. www.iomark.org

IOmark-VM. DotHill AssuredSAN Pro 5000. Test Report: VM- 130816-a Test Report Date: 16, August 2013. www.iomark.org IOmark-VM DotHill AssuredSAN Pro 5000 Test Report: VM- 130816-a Test Report Date: 16, August 2013 Copyright 2010-2013 Evaluator Group, Inc. All rights reserved. IOmark-VM, IOmark-VDI, VDI-IOmark, and IOmark

More information

HP ProLiant DL580 Gen8 and HP LE PCIe Workload WHITE PAPER Accelerator 90TB Microsoft SQL Server Data Warehouse Fast Track Reference Architecture

HP ProLiant DL580 Gen8 and HP LE PCIe Workload WHITE PAPER Accelerator 90TB Microsoft SQL Server Data Warehouse Fast Track Reference Architecture WHITE PAPER HP ProLiant DL580 Gen8 and HP LE PCIe Workload WHITE PAPER Accelerator 90TB Microsoft SQL Server Data Warehouse Fast Track Reference Architecture Based on Microsoft SQL Server 2014 Data Warehouse

More information

Pivot3 Reference Architecture for VMware View Version 1.03

Pivot3 Reference Architecture for VMware View Version 1.03 Pivot3 Reference Architecture for VMware View Version 1.03 January 2012 Table of Contents Test and Document History... 2 Test Goals... 3 Reference Architecture Design... 4 Design Overview... 4 The Pivot3

More information

NEC Express5800/A2000 Series Scalable Enterprise Server.OR CX (Core Xeon) High Operation-ability

NEC Express5800/A2000 Series Scalable Enterprise Server.OR CX (Core Xeon) High Operation-ability Speeds and Feeds NEC Express5800/A2000 Series Scalable Enterprise Server.OR CX (Core Xeon) High Scalability Max. 4 (60cores/120threads) Intel Xeon Processor E7 v2 family CPU Max. 4TB memory with 64 x64gb

More information

Hyperscale Use Cases for Scaling Out with Flash. David Olszewski

Hyperscale Use Cases for Scaling Out with Flash. David Olszewski Hyperscale Use Cases for Scaling Out with Flash David Olszewski Business challenges Performanc e Requireme nts Storage Budget Balance the IT requirements How can you get the best of both worlds? SLA Optimized

More information

Nexenta Performance Scaling for Speed and Cost

Nexenta Performance Scaling for Speed and Cost Nexenta Performance Scaling for Speed and Cost Key Features Optimize Performance Optimize Performance NexentaStor improves performance for all workloads by adopting commodity components and leveraging

More information

Database Virtualization

Database Virtualization Database Virtualization David Fetter Senior MTS, VMware Inc PostgreSQL China 2011 Guangzhou Thanks! Jignesh Shah Staff Engineer, VMware Performance Expert Great Human Being Content Virtualization Virtualized

More information

Server Consolidation with SQL Server 2008

Server Consolidation with SQL Server 2008 Server Consolidation with SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 supports multiple options for server consolidation, providing organizations

More information

The MAX5 Advantage: Clients Benefit running Microsoft SQL Server Data Warehouse (Workloads) on IBM BladeCenter HX5 with IBM MAX5.

The MAX5 Advantage: Clients Benefit running Microsoft SQL Server Data Warehouse (Workloads) on IBM BladeCenter HX5 with IBM MAX5. Performance benefit of MAX5 for databases The MAX5 Advantage: Clients Benefit running Microsoft SQL Server Data Warehouse (Workloads) on IBM BladeCenter HX5 with IBM MAX5 Vinay Kulkarni Kent Swalin IBM

More information

LLamasoft K2 Enterprise 8.1 System Requirements

LLamasoft K2 Enterprise 8.1 System Requirements Overview... 3 RAM... 3 Cores and CPU Speed... 3 Local System for Operating Supply Chain Guru... 4 Applying Supply Chain Guru Hardware in K2 Enterprise... 5 Example... 6 Determining the Correct Number of

More information

EMC Virtual Infrastructure for Microsoft Applications Data Center Solution

EMC Virtual Infrastructure for Microsoft Applications Data Center Solution EMC Virtual Infrastructure for Microsoft Applications Data Center Solution Enabled by EMC Symmetrix V-Max and Reference Architecture EMC Global Solutions Copyright and Trademark Information Copyright 2009

More information

Deploying F5 BIG-IP Virtual Editions in a Hyper-Converged Infrastructure

Deploying F5 BIG-IP Virtual Editions in a Hyper-Converged Infrastructure Deploying F5 BIG-IP Virtual Editions in a Hyper-Converged Infrastructure Justin Venezia Senior Solution Architect Paul Pindell Senior Solution Architect Contents The Challenge 3 What is a hyper-converged

More information

Dell Compellent Storage Center SAN & VMware View 1,000 Desktop Reference Architecture. Dell Compellent Product Specialist Team

Dell Compellent Storage Center SAN & VMware View 1,000 Desktop Reference Architecture. Dell Compellent Product Specialist Team Dell Compellent Storage Center SAN & VMware View 1,000 Desktop Reference Architecture Dell Compellent Product Specialist Team THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL

More information

vsphere 6.0 Advantages Over Hyper-V

vsphere 6.0 Advantages Over Hyper-V v3c Advantages Over Hyper-V The most trusted and complete virtualization platform 2015 Q1 2015 VMware Inc. All rights reserved. The Most Trusted Virtualization Platform Hypervisor Architecture Broad Support

More information

MICROSOFT SHAREPOINT SERVER: BEST PRACTICES AND DESIGN GUIDELINES FOR EMC STORAGE

MICROSOFT SHAREPOINT SERVER: BEST PRACTICES AND DESIGN GUIDELINES FOR EMC STORAGE White Paper MICROSOFT SHAREPOINT SERVER: BEST PRACTICES AND DESIGN GUIDELINES FOR EMC STORAGE EMC VNX Family, EMC Symmetrix VMAX Systems, and EMC Xtrem Server Products Design and sizing best practices

More information

Virtual server management: Top tips on managing storage in virtual server environments

Virtual server management: Top tips on managing storage in virtual server environments Tutorial Virtual server management: Top tips on managing storage in virtual server environments Sponsored By: Top five tips for managing storage in a virtual server environment By Eric Siebert, Contributor

More information

RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES

RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS: COMPETITIVE FEATURES RED HAT ENTERPRISE VIRTUALIZATION FOR SERVERS Server virtualization offers tremendous benefits for enterprise IT organizations server

More information

How Customers Are Cutting Costs and Building Value with Microsoft Virtualization

How Customers Are Cutting Costs and Building Value with Microsoft Virtualization How Customers Are Cutting Costs and Building Value with Microsoft Virtualization Introduction The majority of organizations are incorporating virtualization into their IT infrastructures because of the

More information

FOR SERVERS 2.2: FEATURE matrix

FOR SERVERS 2.2: FEATURE matrix RED hat ENTERPRISE VIRTUALIZATION FOR SERVERS 2.2: FEATURE matrix Red hat enterprise virtualization for servers Server virtualization offers tremendous benefits for enterprise IT organizations server consolidation,

More information

HP recommended configuration for Microsoft Exchange Server 2010: HP LeftHand P4000 SAN

HP recommended configuration for Microsoft Exchange Server 2010: HP LeftHand P4000 SAN HP recommended configuration for Microsoft Exchange Server 2010: HP LeftHand P4000 SAN Table of contents Executive summary... 2 Introduction... 2 Solution criteria... 3 Hyper-V guest machine configurations...

More information

Improve Business Productivity and User Experience with a SanDisk Powered SQL Server 2014 In-Memory OLTP Database

Improve Business Productivity and User Experience with a SanDisk Powered SQL Server 2014 In-Memory OLTP Database WHITE PAPER Improve Business Productivity and User Experience with a SanDisk Powered SQL Server 2014 In-Memory OLTP Database 951 SanDisk Drive, Milpitas, CA 95035 www.sandisk.com Table of Contents Executive

More information

Microsoft SQL Server 2012 on Cisco UCS with iscsi-based Storage Access in VMware ESX Virtualization Environment: Performance Study

Microsoft SQL Server 2012 on Cisco UCS with iscsi-based Storage Access in VMware ESX Virtualization Environment: Performance Study White Paper Microsoft SQL Server 2012 on Cisco UCS with iscsi-based Storage Access in VMware ESX Virtualization Environment: Performance Study 2012 Cisco and/or its affiliates. All rights reserved. This

More information

System Requirements for Microsoft Dynamics SL 2015

System Requirements for Microsoft Dynamics SL 2015 System for Microsoft Dynamics SL 2015 Overview This document contains the minimum client hardware requirements, server recommendations and Terminal Server minimum hardware requirements supported by the

More information

Achieving a High Performance OLTP Database using SQL Server and Dell PowerEdge R720 with Internal PCIe SSD Storage

Achieving a High Performance OLTP Database using SQL Server and Dell PowerEdge R720 with Internal PCIe SSD Storage Achieving a High Performance OLTP Database using SQL Server and Dell PowerEdge R720 with This Dell Technical White Paper discusses the OLTP performance benefit achieved on a SQL Server database using a

More information

TOP TEN CONSIDERATIONS

TOP TEN CONSIDERATIONS White Paper TOP TEN CONSIDERATIONS FOR CHOOSING A SERVER VIRTUALIZATION TECHNOLOGY Learn more at www.swsoft.com/virtuozzo Published: July 2006 Revised: July 2006 Table of Contents Introduction... 3 Technology

More information

Hardware Performance Optimization and Tuning. Presenter: Tom Arakelian Assistant: Guy Ingalls

Hardware Performance Optimization and Tuning. Presenter: Tom Arakelian Assistant: Guy Ingalls Hardware Performance Optimization and Tuning Presenter: Tom Arakelian Assistant: Guy Ingalls Agenda Server Performance Server Reliability Why we need Performance Monitoring How to optimize server performance

More information

Virtualizing Microsoft SQL Server 2008 on the Hitachi Adaptable Modular Storage 2000 Family Using Microsoft Hyper-V

Virtualizing Microsoft SQL Server 2008 on the Hitachi Adaptable Modular Storage 2000 Family Using Microsoft Hyper-V Virtualizing Microsoft SQL Server 2008 on the Hitachi Adaptable Modular Storage 2000 Family Using Microsoft Hyper-V Implementation Guide By Eduardo Freitas and Ryan Sokolowski February 2010 Summary Deploying

More information

Solid State Drive Architecture

Solid State Drive Architecture Solid State Drive Architecture A comparison and evaluation of data storage mediums Tyler Thierolf Justin Uriarte Outline Introduction Storage Device as Limiting Factor Terminology Internals Interface Architecture

More information

Accelerating Server Storage Performance on Lenovo ThinkServer

Accelerating Server Storage Performance on Lenovo ThinkServer Accelerating Server Storage Performance on Lenovo ThinkServer Lenovo Enterprise Product Group April 214 Copyright Lenovo 214 LENOVO PROVIDES THIS PUBLICATION AS IS WITHOUT WARRANTY OF ANY KIND, EITHER

More information