Demystifying Storage Area Networks. Michael Wells Microsoft Application Solutions Specialist EMC Corporation

Size: px
Start display at page:

Download "Demystifying Storage Area Networks. Michael Wells Microsoft Application Solutions Specialist EMC Corporation"

Transcription

1 Demystifying Storage Area Networks Michael Wells Microsoft Application Solutions Specialist EMC Corporation

2 About Me DBA for 7+ years Developer for 10+ years MCSE: Data Platform MCSE: SQL Server 2012 MCITP: Database Administrator 2008 MCITP: Database Developer 2008 MCTS: SQL Server 2005

3 Agenda SAN Protocols SAN Storage Types The parts of a SAN Different SAN Architectures Understanding RAID Understanding Multipathing

4 SAN Protocols Fiber Channel high performance, dedicated fiber network requiring special hardware iscsi sends SCSI commands over traditional Ethernet interfaces (uses TCP/IP) Fiber Channel over Ethernet (FCOE) Fiber Channel commands over a lossless Ethernet network and requires special hardware

5 SAN Storage Types Block Storage volumes must be mounted to a host File Storage configured at the array with a file system and can be addressed by a UNC path Unified Storage array capable of supporting both storage types

6 The Main Parts of a SAN (FC) LUN (Logical) HBA (Physical) Fiber Optic Cable (Physical) Fiber Channel Switch (Physical) Storage Processor/Engine (Physical) Cache (Physical) Disk Array Enclosure DAE (Physical) Storage Pool (Logical) RAID Set (Logical) Drives (Physical)

7 LUN Logical Unit Number Volume mounted to one or more servers and appears in Windows as a drive Can be mounted using a drive letter or a mount point

8 HBA Host Bus Adapter Physical card that connects the server to the SAN Fabric Rating Net Throughput Efficiency 1Gb MBs 77.7% 2Gb MBs 77.7% 4Gb MBs 77.7% 8Gb MBs 77.7% 10Gb 1,181 MBs 94.2% 16Gb 1,575 MBs 94.2%

9 Fiber Optic Cable Physical medium used for data transmission between components connected to the SAN Fabric

10 Fiber Channel Switch Networking device that handles traffic between components the heart of the SAN Fabric

11 Storage Processor/Engine The brains of the SAN there are at least 2 and can be Active/Passive or Active/Active depending on the system

12 Cache Split into Read Cache and Write Cache Read Cache prevents the need to re-read the data from spinning disk Write Cache allows the write operation to be acknowledged before the data is committed to disk (should have battery backup) Can be memory in the Storage Processor/Engine or it can be Drives in the array (usually SSD)

13 Disk Array Enclosure (DAE) A piece of hardware that holds hard drives and is connected to the storage processors

14 Storage Pool One or more RAID sets grouped into a single pool from which LUNs are allocated Usually built using drives of the same size and speed Can be a mixed pool when storage tiering technology is used

15 RAID Set Redundant Array of Inexpensive Disks - Method of grouping disks together for performance, redundancy, or both RAID 0 Striping Performance with no redundancy RAID 1 Mirroring Redundancy, but not space efficient RAID 5 Striping with Parity Redundancy, with better space efficiency RAID 6 Striping with Parity Redundancy, with better fault tolerance than RAID 5 RAID 1/0 Mirroring + Striping Performance with redundancy

16 Drives The physical drive that stores the data blocks Enterprise Flash Drives (EFD) 3500 IOPS Single Layer Cells (SLC) low density with the best durability Multi Layer Cells (MLC) higher density at the cost of long-term durability SAS Drives 15k RPM 160 IOPS 10k RPM 140 IOPS Near-Line (NL) SAS Drives 7.2k RPM 90 IOPS SATA Drives SATA2 7.2k 80 IOPS SATA 7.2k 60 IOPS

17 The Four Storage Architectures Clustered Scale Up & Down TYPE 1 Tightly Coupled Scale Out TYPE 2 Loosely Coupled Scale Out TYPE 3 Distributed Shared Nothing TYPE 4 General Purpose Storage Balance of Perf/Cost/RAS Integrated & Unified Efficient & Simple Transactional Commits Brains Share Memory Distributed Data Data Available all Brains Shared Meta-Data Transactional Commits Independent Brains Inter-Brain Communication Distributed Data Data Available all Brains Transactional Commits Independent Brains Direct Attach Storage Lazy / Forced Data Dist. Distributed Commits Non-Transactional Commits

18 Key Performance Metrics IOPS I/O Operations per Second Front-End IOPS IO traffic generated at the host and sent to the Storage Processor / Engine Back-End IOPS IO traffic generated at the Storage Processor and sent to the disks Bandwidth the amount of data being sent/recieved Latency the time it takes for an IO request to complete

19 What Size IO Does SQL Server Use? File type Operation READ pattern WRITE pattern Threads used I/O type Data File Normal Activity 8KiB up to 128KiB 8KiB up to 128KiB Based on MaxDOP Random Checkpoint N/A 64KiB up to 128 KiB # of Sockets in Computer Random LazyWriter N/A 64KiB up to 128 KiB 1 per NUMA Node Random Bulk Insert N/A 8KiB up to 128 KiB Based on MaxDOP Sequential Backup 1 MB 1 MB Based on MaxDOP Sequential Restore 64KiB 64KiB Based on MaxDOP Sequential DBCC Checkdb w/ no repair option 8KiB up to 64KiB N/A Based on MaxDOP Sequential Rebuild Index See Read Ahead 8KiB 128 KiB Based on MaxDOP Sequential ReadAhead Up to 512 KiB N/A Based on MaxDOP Sequential Log File Normal Activity 512 bytes - 64KiB 512 bytes - 64KiB one log writer thread per soft NUMA node with a cap of 4 Sequential

20 Understanding RAID RAID Protection comes at a cost Small block random writes 1 application write IO RAID 1/0 2 back-end write IO RAID 5 4 back-end IO (2 read IO + 2 write IO) RAID 6 6 back-end IO (3 read IO + 3 write IO)

21 RAID Recommendations for SQL Always place Log files on RAID 1/0 or RAID 1 Better protection from failure Better write performance (log activity is almost all write) Consider using RAID 5 or RAID 6 for data files Data files are less write intensive than log files and can benefit from the less expensive RAID level Consider using RAID 1/0 for TEMPDB Faster writes will improve performance when temporary objects are used and/or operations spill over to TEMPDB

22 Understanding Multipathing The primary purpose of multipathing is redundancy

23 Multipathing - Redundancy Storage Processor A Storage Processor B

24 Understanding Multipathing The primary purpose of multipathing is redundancy The secondary purpose of multipathing is for performance and load balancing

25 Multipathing - Performance Storage Processor A Storage Processor B

26 Microsoft Multipath I/O (MPIO) Use more than one path for read and write functions to your storage device Provides redundant failover and load-balancing support for disks or LUNs Supports bandwidth aggregation Distributes I/O transactions across multiple adapters Windows Server feature

27 The Importance of a Baseline A query takes 30 seconds to run, is that too long? What about a query that runs in 3 seconds? To identify abnormal behavior you must first understand normal

28 SQL Monitoring Dynamic Management Views (DMVs) SQL Profiler/Trace Extended Events Performance Dashboard Management Data Warehouse (MDW)

29 DYNAMIC MANAGEMENT VIEWS SYS.DM_IO_VIRTUAL_FILE_STATS SELECT [ReadLatency] = CASE WHEN [num_of_reads] = 0 THEN 0 ELSE ([io_stall_read_ms] / [num_of_reads]) END, [WriteLatency] = CASE WHEN [num_of_writes] = 0 THEN 0 ELSE ([io_stall_write_ms] / [num_of_writes]) END, [Latency] = CASE WHEN ([num_of_reads] = 0 AND [num_of_writes] = 0) THEN 0 ELSE ([io_stall] / ([num_of_reads] + [num_of_writes])) END, [AvgBPerRead] = CASE WHEN [num_of_reads] = 0 THEN 0 ELSE ([num_of_bytes_read] / [num_of_reads]) END, [AvgBPerWrite] = CASE WHEN [num_of_writes] = 0 THEN 0 ELSE ([num_of_bytes_written] / [num_of_writes]) END, [AvgBPerTransfer] = CASE WHEN ([num_of_reads] = 0 AND [num_of_writes] = 0) THEN 0 ELSE (([num_of_bytes_read] + [num_of_bytes_written]) / ([num_of_reads] + [num_of_writes])) END, LEFT ([mf].[physical_name], 2) AS [Drive], DB_NAME ([vfs].[database_id]) AS [DB], [mf].[physical_name] FROM sys.dm_io_virtual_file_stats (NULL,NULL) AS [vfs] JOIN sys.master_files AS [mf] ON [vfs].[database_id] = [mf].[database_id] AND [vfs].[file_id] = [mf].[file_id] -- WHERE [vfs].[file_id] = 2 -- log files -- ORDER BY [Latency] DESC -- ORDER BY [ReadLatency] DESC ORDER BY [WriteLatency] DESC; GO Query Credit Paul Randal and Jimmy May

30 Dynamic Management Views

31 SQL Profiler Warning: SQL Trace was deprecated in SQL 2012 No new events or enhancements! Look at ClearTrace for aggregating trace results

32 Extended Events Replaces the functionality of SQL Trace The only way to monitor new SQL Server events like those related to Availability Group Replication Jonathan Kehayias has written a converter to migrate trace definitions to extended events -

33 Performance Dashboard

34 Management Data Warehouse

35 Windows Monitoring Windows Performance Counters Performance Monitor (PerfMon) System Center Operations Manager (SCOM)

36 WINDOWS PERFORMANCE COUNTERS PERFORMANCE MONITOR: LOGICAL DISK Latency Avg. Disk sec/transfer Avg. Disk sec/read Avg. Disk sec/write IOPS Disk Transfers/sec Disk Read/sec Disk Writes/sec Throughput Disk Bytes/sec Disk Read Bytes/sec Disk Write Bytes/sec Transfer Size Avg. Disk Bytes/Transfer Avg. Disk Read Bytes/Transfer Avg. Disk Write Bytes/Transfer Disk Queue Length Current Disk Queue Length Avg. Disk Queue Length Avg. Disk Read Queue Length Avg. Disk Write Queue Length Capacity % Free Space Free Megabytes For details on these counters

37 Performance Monitor (PerfMon)

38 System Center Operations MGR

39 When I Find An Issue Don t immediately blame the I/O Subsystem, using your baseline look for things like: Query plan changes Additional indexes or index changes Access pattern or key changes Adding Change Data Tracking (CDC) or triggers Enabling Snapshot Isolation Decreased server memory Increased session counts

40 Escalating Issues Provide as much relevant information as possible Show normal/expected performance metrics These must already exist and be easily accessible Show how the current workload compares to normal/expected If the current workload is different, what changed and is it permanent? Focus on solving the problem Don t get bogged down in the blame game

41

Infrastructure Tuning

Infrastructure Tuning Infrastructure Tuning For SQL Server Performance SQL PASS Performance Virtual Chapter 2014.07.24 About David Klee @kleegeek davidklee.net gplus.to/kleegeek linked.com/a/davidaklee Specialties / Focus Areas

More information

Storage Update and Storage Best Practices for Microsoft Server Applications. Dennis Martin President, Demartek January 2009 Copyright 2009 Demartek

Storage Update and Storage Best Practices for Microsoft Server Applications. Dennis Martin President, Demartek January 2009 Copyright 2009 Demartek Storage Update and Storage Best Practices for Microsoft Server Applications Dennis Martin President, Demartek January 2009 Copyright 2009 Demartek Agenda Introduction Storage Technologies Storage Devices

More information

davidklee.net heraflux.com linkedin.com/in/davidaklee

davidklee.net heraflux.com linkedin.com/in/davidaklee @kleegeek davidklee.net heraflux.com linkedin.com/in/davidaklee Specialties / Focus Areas / Passions: Performance Tuning & Troubleshooting Virtualization Cloud Enablement Infrastructure Architecture Health

More information

EMC Tiered Storage for Microsoft SQL Server 2008 Enabled by EMC CLARiiON CX4 and Enterprise Flash Drives

EMC Tiered Storage for Microsoft SQL Server 2008 Enabled by EMC CLARiiON CX4 and Enterprise Flash Drives EMC Tiered Storage for Microsoft SQL Server 2008 Enabled by EMC CLARiiON CX4 and Enterprise Flash Drives A Detailed Review EMC Information Infrastructure Solutions Abstract This white paper demonstrates

More information

IBM System Storage DS3300 Storage System 1000 Mailbox Clustered Continuous Replication Microsoft Exchange 2007 Storage Solution

IBM System Storage DS3300 Storage System 1000 Mailbox Clustered Continuous Replication Microsoft Exchange 2007 Storage Solution DS3300 Storage System 1000 Mailbox Clustered Storage Solution Tested with: ESRP Storage Version 2.0 Tested Date: February 12, 2008 Authors: Joe Richards i, David Hartman ii Document Version: 2.1 Content...

More information

Accelerate Applications Using EqualLogic Arrays with directcache

Accelerate Applications Using EqualLogic Arrays with directcache Accelerate Applications Using EqualLogic Arrays with directcache Abstract This paper demonstrates how combining Fusion iomemory products with directcache software in host servers significantly improves

More information

Virtual SQL Servers. Actual Performance. 2016

Virtual SQL Servers. Actual Performance. 2016 @kleegeek davidklee.net heraflux.com linkedin.com/in/davidaklee Specialties / Focus Areas / Passions: Performance Tuning & Troubleshooting Virtualization Cloud Enablement Infrastructure Architecture Health

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

Dell EMC SCv3020 7,000 Mailbox Exchange 2016 Resiliency Storage Solution using 7.2K drives

Dell EMC SCv3020 7,000 Mailbox Exchange 2016 Resiliency Storage Solution using 7.2K drives Dell EMC SCv3020 7,000 Mailbox Exchange 2016 Resiliency Storage Solution using 7.2K drives Microsoft ESRP 4.0 Abstract This document describes the Dell EMC SCv3020 storage solution for Microsoft Exchange

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

Dell PowerVault MD Mailbox Single Copy Cluster Microsoft Exchange 2007 Storage Solution

Dell PowerVault MD Mailbox Single Copy Cluster Microsoft Exchange 2007 Storage Solution Dell PowerVault MD3000 3000 Mailbox Single Copy Cluster Microsoft Exchange 2007 Storage Solution Tested with: ESRP Storage Version 2.0 Tested Date: August 08, 2007 Table of Contents Table of Contents...2

More information

Assessing performance in HP LeftHand SANs

Assessing performance in HP LeftHand SANs Assessing performance in HP LeftHand SANs HP LeftHand Starter, Virtualization, and Multi-Site SANs deliver reliable, scalable, and predictable performance White paper Introduction... 2 The advantages of

More information

Exam : S Title : Snia Storage Network Management/Administration. Version : Demo

Exam : S Title : Snia Storage Network Management/Administration. Version : Demo Exam : S10-200 Title : Snia Storage Network Management/Administration Version : Demo 1. A SAN architect is asked to implement an infrastructure for a production and a test environment using Fibre Channel

More information

Dell Storage SC Series Arrays and Microsoft SQL Server

Dell Storage SC Series Arrays and Microsoft SQL Server Dell Storage SC Series Arrays and Microsoft SQL Server Dell Storage Engineering July 2016 A Dell Best Practices Guide Revisions Date October 2007 Description Initial release December 2007 Technical review

More information

Dell PowerVault MD1220 is a SAS based storage enclosure. The major features of the storage system include:

Dell PowerVault MD1220 is a SAS based storage enclosure. The major features of the storage system include: Tested with: ESRP Storage Version 3.0 Tested Date: June 09, 2011 Content Content... 2 Overview... 3 Disclaimer... 3 Features... 3 Solution Description... 4 Targeted Customer Profile... 6 Simulated Exchange

More information

Storage Area Network (SAN) Training Presentation. July 2007 IBM PC CLUB Jose Medeiros Storage Systems Engineer MCP+I, MCSE, NT4 MCT

Storage Area Network (SAN) Training Presentation. July 2007 IBM PC CLUB Jose Medeiros Storage Systems Engineer MCP+I, MCSE, NT4 MCT Storage Area Network (SAN) Training Presentation July 007 IBM PC CLUB Jose Medeiros Storage Systems Engineer MCP+I, MCSE, NT MCT Agenda Training Objectives Basic SAN information Terminology SAN Infrastructure

More information

Dell PowerVault MD3000i 5000 Mailbox Single Copy Cluster Microsoft Exchange 2007 Storage Solution

Dell PowerVault MD3000i 5000 Mailbox Single Copy Cluster Microsoft Exchange 2007 Storage Solution Dell PowerVault MD3000i 5000 Mailbox Single Copy Cluster Microsoft Exchange 2007 Storage Solution Tested with: ESRP Storage Version 2.0 Tested Date: October 2, 2007 Table of Contents Table of Contents...2

More information

ESRP Storage Program

ESRP Storage Program ESRP Storage Program EMC CLARiiON AX4-5i (500 User) Exchange 2010 Mailbox Resiliency Storage Solution Tested with: ESRP - Storage Version 3.0 Tested Date: 25 November 2009 EMC Global Solutions Copyright

More information

Sun ZFS Storage 7120 Appliance 5,000 Mailbox Resiliency Exchange 2010 Storage Solution

Sun ZFS Storage 7120 Appliance 5,000 Mailbox Resiliency Exchange 2010 Storage Solution An Oracle White Paper June 2012 Sun ZFS Storage 7120 Appliance 5,000 Mailbox Resiliency Exchange 2010 Storage Solution Tested with: ESRP Storage Version 3.0 Tested Date: 11/2010 Disclaimer This document

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

-- RPC:Completed, @maxfilesize, NULL, xxx -- Batch:Completed -- Set the Filters -- Set the trace status to start -- Display trace id for future references SQL_Signature Regular Expressions I of this:

More information

Dell Compellent Storage Center 6.5 SC4020 4,500 Mailbox Exchange 2013 Resiliency Storage Solution

Dell Compellent Storage Center 6.5 SC4020 4,500 Mailbox Exchange 2013 Resiliency Storage Solution Dell Compellent Storage Center 6.5 SC4020 4,500 Mailbox Exchange 2013 Resiliency Storage Solution Microsoft ESRP 4.0 Mark Boeser, Exchange Product Specialist Dell Compellent Technical Solutions June 2014

More information

ESRP Storage Program EMC CLARiiON CX3-20c (500 User) Storage Solution for Microsoft Exchange Server

ESRP Storage Program EMC CLARiiON CX3-20c (500 User) Storage Solution for Microsoft Exchange Server ESRP Storage Program EMC CLARiiON CX3-20c (500 User) Storage Solution for Microsoft Exchange Server February 28, 2007 This document contains information about the EMC CLARiiON CX3-20c Storage Solution

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

EMC CLARiiON Database Storage Solutions: Microsoft SQL Server 2000 and 2005

EMC CLARiiON Database Storage Solutions: Microsoft SQL Server 2000 and 2005 EMC CLARiiON Database Storage Solutions: Microsoft SQL Server 2000 and 2005 Best Practices Planning Abstract This technical white paper explains best practices associated with Microsoft SQL Server 2000

More information

Microsoft SQL Server 2012 Fast Track Reference Configuration Using PowerEdge R720 and EqualLogic PS6110XV Arrays

Microsoft SQL Server 2012 Fast Track Reference Configuration Using PowerEdge R720 and EqualLogic PS6110XV Arrays Microsoft SQL Server 2012 Fast Track Reference Configuration Using PowerEdge R720 and EqualLogic PS6110XV Arrays This whitepaper describes Dell Microsoft SQL Server Fast Track reference architecture configurations

More information

EMC CLARiiON CX3 Series FCP

EMC CLARiiON CX3 Series FCP EMC Solutions for Microsoft SQL Server 2005 on Windows 2008 EMC CLARiiON CX3 Series FCP EMC Global Solutions 42 South Street Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com www.emc.com Copyright 2008

More information

S S SNIA Storage Networking Foundations

S S SNIA Storage Networking Foundations S10-110 Number: S10-110 Passing Score: 800 Time Limit: 120 min S10-110 SNIA Storage Networking Foundations Exam A QUESTION 1 What are two NAS file access protocols? (Choose two.) A. SMB B. iscsi C. NFS

More information

SQL Server: Practical Troubleshooting. Dmitri Korotkevitch (http://aboutsqlserver.com)

SQL Server: Practical Troubleshooting. Dmitri Korotkevitch (http://aboutsqlserver.com) SQL Server: Practical Troubleshooting 1 Who is this guy with heavy accent? 11+ years of experience working with Microsoft SQL Server Microsoft SQL Server MVP Microsoft Certified Master (SQL Server 2008)

More information

Chapter 12: Mass-Storage

Chapter 12: Mass-Storage Chapter 12: Mass-Storage Systems Chapter 12: Mass-Storage Systems Revised 2010. Tao Yang Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management Swap-Space Management

More information

DELL TM AX4-5 Application Performance

DELL TM AX4-5 Application Performance DELL TM AX4-5 Application Performance A Comparison of Entry-level Storage Platforms Abstract This paper compares the performance of the Dell AX4-5 with the performance of similarly configured IBM DS3400

More information

HP StorageWorks 600 Modular Disk System 4,000 user 3GB Mailbox resiliency Exchange 2010 storage solution

HP StorageWorks 600 Modular Disk System 4,000 user 3GB Mailbox resiliency Exchange 2010 storage solution HP StorageWorks 600 Modular Disk System 4,000 user 3GB Mailbox resiliency Exchange 2010 storage solution Technical white paper Table of contents Overview... 2 Disclaimer... 2 Features... 2 Solution description...

More information

ESRP Storage Program EMC CLARiiON CX3-20c(1000 user) Storage Solution for Microsoft Exchange Server

ESRP Storage Program EMC CLARiiON CX3-20c(1000 user) Storage Solution for Microsoft Exchange Server ESRP Storage Program EMC CLARiiON CX3-20c(1000 user) Storage Solution for Microsoft Exchange Server February 28, 2007 This document contains information about the EMC CLARiiON CX3-20c(1000 User) Storage

More information

Field Testing Buffer Pool Extension and In-Memory OLTP Features in SQL Server 2014

Field Testing Buffer Pool Extension and In-Memory OLTP Features in SQL Server 2014 Field Testing Buffer Pool Extension and In-Memory OLTP Features in SQL Server 2014 Rick Heiges, SQL MVP Sr Solutions Architect Scalability Experts Ross LoForte - SQL Technology Architect - Microsoft Changing

More information

Storage Optimization with Oracle Database 11g

Storage Optimization with Oracle Database 11g Storage Optimization with Oracle Database 11g Terabytes of Data Reduce Storage Costs by Factor of 10x Data Growth Continues to Outpace Budget Growth Rate of Database Growth 1000 800 600 400 200 1998 2000

More information

1Z0-433

1Z0-433 1Z0-433 Passing Score: 800 Time Limit: 0 min Exam A QUESTION 1 What is the function of the samfsdump utility? A. It provides a metadata backup of the file names, directory structure, inode information,

More information

Storage Best Practices for Microsoft Server Applications

Storage Best Practices for Microsoft Server Applications Storage Best Practices for Microsoft Server Applications Dennis Martin President, Demartek Principal Research Contributor Performance Lab Portal wikibon.org August 2009 1 Agenda Brief Company Overview

More information

EMC VSPEX FOR VIRTUALIZED MICROSOFT EXCHANGE 2013 WITH MICROSOFT HYPER-V

EMC VSPEX FOR VIRTUALIZED MICROSOFT EXCHANGE 2013 WITH MICROSOFT HYPER-V IMPLEMENTATION GUIDE EMC VSPEX FOR VIRTUALIZED MICROSOFT EXCHANGE 2013 WITH MICROSOFT HYPER-V EMC VSPEX Abstract This describes the steps required to deploy a Microsoft Exchange Server 2013 solution on

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

This document contains information about the EMC DMX SRDF/A Storage Solution for Microsoft Exchange Server.

This document contains information about the EMC DMX SRDF/A Storage Solution for Microsoft Exchange Server. ESRP Storage Program EMC Symmetrix DMX-3 4500 SRDF/A (60000 Users) Storage Solution for Microsoft Exchange Server Replicated Storage Rev 1.0 January 16, 2007 This document contains information about the

More information

Dell Storage Center 6.6 SCv2000 SAS Front-end Arrays and 2,500 Mailbox Exchange 2013 Resiliency Storage Solution

Dell Storage Center 6.6 SCv2000 SAS Front-end Arrays and 2,500 Mailbox Exchange 2013 Resiliency Storage Solution Dell Storage Center 6.6 SCv2000 SAS Front-end Arrays and 2,500 Mailbox Exchange 2013 Resiliency Storage Solution Microsoft ESRP 4.0 Dell Storage Engineering October 2015 A Dell Technical White Paper Revisions

More information

Chapter 10: Mass-Storage Systems

Chapter 10: Mass-Storage Systems Chapter 10: Mass-Storage Systems Silberschatz, Galvin and Gagne 2013 Chapter 10: Mass-Storage Systems Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management Swap-Space

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

Snia S Storage Networking Management/Administration.

Snia S Storage Networking Management/Administration. Snia S10-200 Storage Networking Management/Administration http://killexams.com/exam-detail/s10-200 QUESTION: 85 What are two advantages of over-subscription? (Choose two.) A. saves on ISL links B. decreases

More information

Sun ZFS Storage 7320 Appliance 10,000 Mailbox Resiliency Exchange 2010 Storage Solution

Sun ZFS Storage 7320 Appliance 10,000 Mailbox Resiliency Exchange 2010 Storage Solution An Oracle White Paper June 2012 Sun ZFS Storage 7320 Appliance 10,000 Mailbox Resiliency Exchange 2010 Storage Solution Tested with: ESRP Storage Version 3.0 Tested Date: 12/2010 Disclaimer This document

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

Chapter 10: Mass-Storage Systems. Operating System Concepts 9 th Edition

Chapter 10: Mass-Storage Systems. Operating System Concepts 9 th Edition Chapter 10: Mass-Storage Systems Silberschatz, Galvin and Gagne 2013 Chapter 10: Mass-Storage Systems Overview of Mass Storage Structure Disk Structure Disk Attachment Disk Scheduling Disk Management Swap-Space

More information

Introducing Tegile. Company Overview. Product Overview. Solutions & Use Cases. Partnering with Tegile

Introducing Tegile. Company Overview. Product Overview. Solutions & Use Cases. Partnering with Tegile Tegile Systems 1 Introducing Tegile Company Overview Product Overview Solutions & Use Cases Partnering with Tegile 2 Company Overview Company Overview Te gile - [tey-jile] Tegile = technology + agile Founded

More information

IBM Tivoli Storage Manager for Windows Version Installation Guide IBM

IBM Tivoli Storage Manager for Windows Version Installation Guide IBM IBM Tivoli Storage Manager for Windows Version 7.1.8 Installation Guide IBM IBM Tivoli Storage Manager for Windows Version 7.1.8 Installation Guide IBM Note: Before you use this information and the product

More information

IBM Storwize V ,000 mailbox resiliency Microsoft Exchange 2013 storage solution. IBM Systems and Technology Group ISV Enablement March 2014

IBM Storwize V ,000 mailbox resiliency Microsoft Exchange 2013 storage solution. IBM Systems and Technology Group ISV Enablement March 2014 IBM Storwize V5000 16,000 mailbox resiliency Microsoft Exchange 2013 storage solution IBM Systems and Technology Group ISV Enablement March 2014 Copyright IBM Corporation, 2014 Table of contents Abstract...

More information

access addresses/addressing advantages agents allocation analysis

access addresses/addressing advantages agents allocation analysis INDEX A access control of multipath port fanout, LUN issues, 122 of SAN devices, 154 virtualization server reliance on, 173 DAS characteristics (table), 19 conversion to SAN fabric storage access, 105

More information

DELL EMC UNITY: HIGH AVAILABILITY

DELL EMC UNITY: HIGH AVAILABILITY DELL EMC UNITY: HIGH AVAILABILITY A Detailed Review ABSTRACT This white paper discusses the high availability features on Dell EMC Unity purposebuilt solution. October, 2017 1 WHITE PAPER The information

More information

VMware Virtual SAN. Technical Walkthrough. Massimiliano Moschini Brand Specialist VCI - vexpert VMware Inc. All rights reserved.

VMware Virtual SAN. Technical Walkthrough. Massimiliano Moschini Brand Specialist VCI - vexpert VMware Inc. All rights reserved. VMware Virtual SAN Technical Walkthrough Massimiliano Moschini Brand Specialist VCI - vexpert 2014 VMware Inc. All rights reserved. VMware Storage Innovations VI 3.x VMFS Snapshots Storage vmotion NAS

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

Reference Architecture

Reference Architecture EMC Solutions for Microsoft SQL Server 2005 on Windows 2008 in VMware ESX Server EMC CLARiiON CX3 Series FCP EMC Global Solutions 42 South Street Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com www.emc.com

More information

NST6000 UNIFIED HYBRID STORAGE. Performance, Availability and Scale for Any SAN and NAS Workload in Your Environment

NST6000 UNIFIED HYBRID STORAGE. Performance, Availability and Scale for Any SAN and NAS Workload in Your Environment DATASHEET TM NST6000 UNIFIED HYBRID STORAGE Performance, Availability and Scale for Any SAN and NAS Workload in Your Environment UNIFIED The Nexsan NST6000 unified hybrid storage system is ideal for organizations

More information

HP 3PAR StoreServ ,000 Mailbox Resiliency Exchange 2010 Storage Solution

HP 3PAR StoreServ ,000 Mailbox Resiliency Exchange 2010 Storage Solution Technical white paper HP 3PAR StoreServ 7400 60,000 Mailbox Resiliency Exchange 2010 Storage Solution Table of contents Overview... 2 Disclaimer... 2 Features of the tested solution... 2 HP 3PAR StoreServ

More information

PESIT Bangalore South Campus

PESIT Bangalore South Campus PESIT Bangalore South Campus Hosur road, 1km before Electronic City, Bengaluru -100 Department of Information Science & Engineering SOLUTION MANUAL INTERNAL ASSESSMENT TEST 1 Subject & Code : Storage Area

More information

NAS for Server Virtualization Dennis Chapman Senior Technical Director NetApp

NAS for Server Virtualization Dennis Chapman Senior Technical Director NetApp NAS for Server Virtualization Dennis Chapman Senior Technical Director NetApp Agenda The Landscape has Changed New Customer Requirements The Market has Begun to Move Comparing Performance Results Storage

More information

Chapter 6. Storage and Other I/O Topics

Chapter 6. Storage and Other I/O Topics Chapter 6 Storage and Other I/O Topics Introduction I/O devices can be characterized by Behaviour: input, output, storage Partner: human or machine Data rate: bytes/sec, transfers/sec I/O bus connections

More information

EMC CLARiiON CX3 UltraScale Series The Proven Midrange Storage

EMC CLARiiON CX3 UltraScale Series The Proven Midrange Storage EMC CLARiiON CX3 UltraScale Series The Proven Midrange Storage Erez Etzyon Senior Technology Consultant CLARiiON CX3 UltraScale Series Breakthrough Architecture and Innovation Designed to Deliver New Levels

More information

Isilon Performance. Name

Isilon Performance. Name 1 Isilon Performance Name 2 Agenda Architecture Overview Next Generation Hardware Performance Caching Performance Streaming Reads Performance Tuning OneFS Architecture Overview Copyright 2014 EMC Corporation.

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

Getting the most from your SAN File and Filegroup design patterns. Stephen Archbold

Getting the most from your SAN File and Filegroup design patterns. Stephen Archbold Getting the most from your SAN File and Filegroup design patterns Stephen Archbold About me Microsoft Certified Master SQL Server 2008 Working with SQL Server for 6+ years Former Production DBA for 24/7

More information

EMC Backup and Recovery for Microsoft Exchange 2007

EMC Backup and Recovery for Microsoft Exchange 2007 EMC Backup and Recovery for Microsoft Exchange 2007 Enabled by EMC CLARiiON CX4-120, Replication Manager, and Hyper-V on Windows Server 2008 using iscsi Reference Architecture Copyright 2009 EMC Corporation.

More information

NetApp E-Series E ,000-Mailbox Microsoft Exchange Server 2013 Mailbox Resiliency Storage Solution

NetApp E-Series E ,000-Mailbox Microsoft Exchange Server 2013 Mailbox Resiliency Storage Solution NetApp E-Series E2700 20,000-Mailbox Microsoft Exchange Server 2013 Tested with: ESRP Storage Version 4.0 Niyaz Mohamed, NetApp March 2015 Abstract This document describes the NetApp E-Series 2700 storage

More information

EMC STORAGE FOR MILESTONE XPROTECT CORPORATE

EMC STORAGE FOR MILESTONE XPROTECT CORPORATE Reference Architecture EMC STORAGE FOR MILESTONE XPROTECT CORPORATE Milestone multitier video surveillance storage architectures Design guidelines for Live Database and Archive Database video storage EMC

More information

SQL Server 2014 Training. Prepared By: Qasim Nadeem

SQL Server 2014 Training. Prepared By: Qasim Nadeem SQL Server 2014 Training Prepared By: Qasim Nadeem SQL Server 2014 Module: 1 Architecture &Internals of SQL Server Engine Module : 2 Installing, Upgrading, Configuration, Managing Services and Migration

More information

Hitachi Unified Storage VM Dynamically Provisioned 21,600 Mailbox Exchange 2013 Mailbox Resiliency Storage Solution

Hitachi Unified Storage VM Dynamically Provisioned 21,600 Mailbox Exchange 2013 Mailbox Resiliency Storage Solution 1 Hitachi Unified Storage VM Dynamically Provisioned 21,600 Mailbox Exchange 2013 Mailbox Resiliency Storage Solution Tested with: ESRP Storage Version 4.0 Test Date: February - March 2014 Month Year Notices

More information

EMC VSPEX FOR VIRTUALIZED MICROSOFT SQL SERVER 2012 WITH MICROSOFT HYPER-V

EMC VSPEX FOR VIRTUALIZED MICROSOFT SQL SERVER 2012 WITH MICROSOFT HYPER-V IMPLEMENTATION GUIDE EMC VSPEX FOR VIRTUALIZED MICROSOFT SQL SERVER 2012 WITH MICROSOFT HYPER-V EMC VSPEX Abstract This describes, at a high level, the steps required to deploy multiple Microsoft SQL Server

More information

Nexenta Technical Sales Professional (NTSP)

Nexenta Technical Sales Professional (NTSP) Global Leader in Software Defined Storage Nexenta Technical Sales Professional (NTSP) COURSE CONTENT Nexenta Technical Sales Professional (NTSP) Course USE CASE: MICROSOFT SHAREPOINT 2 Use Case Microsoft

More information

Introduction to NetApp E-Series E2700 with SANtricity 11.10

Introduction to NetApp E-Series E2700 with SANtricity 11.10 d Technical Report Introduction to NetApp E-Series E2700 with SANtricity 11.10 Todd Edwards, NetApp March 2014 TR-4275 1 Introduction to NetApp E-Series E2700 with SANtricity 11.10 TABLE OF CONTENTS 1

More information

Dell EMC SC Series SC5020 9,000 Mailbox Exchange 2016 Resiliency Storage Solution using 7.2K Drives

Dell EMC SC Series SC5020 9,000 Mailbox Exchange 2016 Resiliency Storage Solution using 7.2K Drives Dell EMC SC Series SC5020 9,000 Mailbox Exchange 2016 Resiliency Storage Solution using 7.2K Drives Microsoft ESRP 4.0 Dell EMC Engineering June 2017 A Dell EMC Technical White Paper Revisions Date June

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

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

Slide 0 Welcome to this Web Based Training session introducing the ETERNUS DX80 S2, DX90 S2, DX410 S2 and DX440 S2 storage systems from Fujitsu.

Slide 0 Welcome to this Web Based Training session introducing the ETERNUS DX80 S2, DX90 S2, DX410 S2 and DX440 S2 storage systems from Fujitsu. Slide 0 Welcome to this Web Based Training session introducing the ETERNUS DX80 S2, DX90 S2, DX410 S2 and DX440 S2 storage systems from Fujitsu. 1 This training module is divided in six main chapters.

More information

EMC CLARiiON AX4-5i (2,000 User) Storage Solution for Microsoft Exchange Server 2007 SP1

EMC CLARiiON AX4-5i (2,000 User) Storage Solution for Microsoft Exchange Server 2007 SP1 EMC CLARiiON AX4-5i (2,000 User) Storage Solution for Microsoft Exchange Server 2007 SP1 Case Study EMC Global Solutions 42 South Street Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright and

More information

Oracle Performance on M5000 with F20 Flash Cache. Benchmark Report September 2011

Oracle Performance on M5000 with F20 Flash Cache. Benchmark Report September 2011 Oracle Performance on M5000 with F20 Flash Cache Benchmark Report September 2011 Contents 1 About Benchware 2 Flash Cache Technology 3 Storage Performance Tests 4 Conclusion copyright 2011 by benchware.ch

More information

Microsoft SQL Server 2012 Fast Track Reference Architecture Using PowerEdge R720 and Compellent SC8000

Microsoft SQL Server 2012 Fast Track Reference Architecture Using PowerEdge R720 and Compellent SC8000 Microsoft SQL Server 2012 Fast Track Reference Architecture Using PowerEdge R720 and Compellent SC8000 This whitepaper describes the Dell Microsoft SQL Server Fast Track reference architecture configuration

More information

Surveillance Dell EMC Storage with Milestone XProtect Corporate

Surveillance Dell EMC Storage with Milestone XProtect Corporate Surveillance Dell EMC Storage with Milestone XProtect Corporate Sizing Guide H14502 REV 1.5 Copyright 2014-2018 Dell Inc. or its subsidiaries. All rights reserved. Published January 2018 Dell believes

More information

iscsi Technology Brief Storage Area Network using Gbit Ethernet The iscsi Standard

iscsi Technology Brief Storage Area Network using Gbit Ethernet The iscsi Standard iscsi Technology Brief Storage Area Network using Gbit Ethernet The iscsi Standard On February 11 th 2003, the Internet Engineering Task Force (IETF) ratified the iscsi standard. The IETF was made up of

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

Isilon Scale Out NAS. Morten Petersen, Senior Systems Engineer, Isilon Division

Isilon Scale Out NAS. Morten Petersen, Senior Systems Engineer, Isilon Division Isilon Scale Out NAS Morten Petersen, Senior Systems Engineer, Isilon Division 1 Agenda Architecture Overview Next Generation Hardware Performance Caching Performance SMB 3 - MultiChannel 2 OneFS Architecture

More information

Database Solutions Engineering. Best Practices for running Microsoft SQL Server and Microsoft Hyper-V on Dell PowerEdge Servers and Storage

Database Solutions Engineering. Best Practices for running Microsoft SQL Server and Microsoft Hyper-V on Dell PowerEdge Servers and Storage Best Practices for running Microsoft SQL Server and Microsoft Hyper-V on Dell PowerEdge Servers and Storage A Dell Technical White Paper Database Solutions Engineering By Anthony Fernandez Dell Product

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

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

IBM EXAM QUESTIONS & ANSWERS

IBM EXAM QUESTIONS & ANSWERS IBM 000-452 EXAM QUESTIONS & ANSWERS Number: 000-452 Passing Score: 800 Time Limit: 120 min File Version: 68.8 http://www.gratisexam.com/ IBM 000-452 EXAM QUESTIONS & ANSWERS Exam Name: IBM Storwize V7000

More information

COMP283-Lecture 3 Applied Database Management

COMP283-Lecture 3 Applied Database Management COMP283-Lecture 3 Applied Database Management Introduction DB Design Continued Disk Sizing Disk Types & Controllers DB Capacity 1 COMP283-Lecture 3 DB Storage: Linear Growth Disk space requirements increases

More information

Computer Architecture 计算机体系结构. Lecture 6. Data Storage and I/O 第六讲 数据存储和输入输出. Chao Li, PhD. 李超博士

Computer Architecture 计算机体系结构. Lecture 6. Data Storage and I/O 第六讲 数据存储和输入输出. Chao Li, PhD. 李超博士 Computer Architecture 计算机体系结构 Lecture 6. Data Storage and I/O 第六讲 数据存储和输入输出 Chao Li, PhD. 李超博士 SJTU-SE346, Spring 2018 Review Memory hierarchy Cache and virtual memory Locality principle Miss cache, victim

More information

COSC6376 Cloud Computing Lecture 17: Storage Systems

COSC6376 Cloud Computing Lecture 17: Storage Systems COSC6376 Cloud Computing Lecture 17: Storage Systems Instructor: Weidong Shi (Larry), PhD Computer Science Department University of Houston Storage Area Network and Storage Virtualization Single Disk Drive

More information

Chapter 10: Mass-Storage Systems

Chapter 10: Mass-Storage Systems COP 4610: Introduction to Operating Systems (Spring 2016) Chapter 10: Mass-Storage Systems Zhi Wang Florida State University Content Overview of Mass Storage Structure Disk Structure Disk Scheduling Disk

More information

Dell PowerEdge R720xd 6,000 Mailbox Resiliency Microsoft Exchange 2013 Storage Solution. Tested with ESRP Storage Version 4.0 Tested Date: Feb 2014

Dell PowerEdge R720xd 6,000 Mailbox Resiliency Microsoft Exchange 2013 Storage Solution. Tested with ESRP Storage Version 4.0 Tested Date: Feb 2014 Dell PowerEdge R720xd 6,000 Mailbox Resiliency Microsoft Exchange 2013 Storage Solution Tested with ESRP Storage Version 4.0 Tested Date: Feb 2014 2014 Dell Inc. All Rights Reserved. Dell, the Dell logo,

More information

TECHNICAL SPECIFICATIONS

TECHNICAL SPECIFICATIONS TECHNICAL SPECIFICATIONS STORAGE CENTER DATASHEET STORAGE CENTER TECHNICAL SPECIFICATIONS Storage Center goes beyond the boundaries of traditional storage systems by combining modular standards-based hardware

More information

FAST & Furious mit EMC² VNX

FAST & Furious mit EMC² VNX FAST & Furious mit EMC² VNX EMC Forum 2011 1 Topics What we ll cover in the next 30 minutes VNX(e) Introduction Video Flash 1 st 2 Next Generation Unified Storage Optimized for today s virtualized IT Unisphere

More information

Milestone Solution Partner IT Infrastructure Components Certification Report

Milestone Solution Partner IT Infrastructure Components Certification Report Milestone Solution Partner IT Infrastructure Components Certification Report Dell MD3860i Storage Array Multi-Server 1050 Camera Test Case 4-2-2016 Table of Contents Executive Summary:... 3 Abstract...

More information

Loosely coupled: asynchronous processing, decoupling of tiers/components Fan-out the application tiers to support the workload Use cache for data and content Reduce number of requests if possible Batch

More information

UCS Invicta: A New Generation of Storage Performance. Mazen Abou Najm DC Consulting Systems Engineer

UCS Invicta: A New Generation of Storage Performance. Mazen Abou Najm DC Consulting Systems Engineer UCS Invicta: A New Generation of Storage Performance Mazen Abou Najm DC Consulting Systems Engineer HDDs Aren t Designed For High Performance Disk 101 Can t spin faster (200 IOPS/Drive) Can t seek faster

More information

New HPE 3PAR StoreServ 8000 and series Optimized for Flash

New HPE 3PAR StoreServ 8000 and series Optimized for Flash New HPE 3PAR StoreServ 8000 and 20000 series Optimized for Flash AGENDA HPE 3PAR StoreServ architecture fundamentals HPE 3PAR Flash optimizations HPE 3PAR portfolio overview HPE 3PAR Flash example from

More information

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

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

More information

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