document describes why and how to migrate DB2 objects to Dorado Storage System. designed to eliminate IO bottleneck.

Size: px
Start display at page:

Download "document describes why and how to migrate DB2 objects to Dorado Storage System. designed to eliminate IO bottleneck."

Transcription

1 Accelerate DB2 Performance by Migrating Objects to Dorado Using solid storage in DB2 database makes the performance speed up with less power consumption. This document describes why and how to migrate DB2 objects to Dorado Storage System. HUAWEI OceanStor Dorado2100 G2 and Dorado5100 are SAN storage systems using all solid state disks designed to eliminate IO bottleneck. Jarvis WANG IT Storage Solution SDT, Enterprise BG Version 1.1 1

2 Why Migrate As we know, whether in OLTP (online transactional processing) or OLAP (online analytical processing) systems, DB2 database is I/O intensive. Besides, the increasing of capacity and performance is not in-phase for enterprise hard disk. The capacity of enterprise hard disk is too big and too slow for DB2 database nowadays. Migrating DB2 objects to SSDs (solid state disks, also known as flash disk), user can benefit from the low latency, high random IOPS, high sequential throughput and low power consumption features. I/O Bottleneck The result of the following statement shows the I/O wait time percent in total execute time of a DB2 OLTP database running on traditional magnets disks (15K RPM SAS disk). There s 96.25% DB time is spent on waits of I/O requests, and each physical read costs 15.4 milliseconds. The high latency of the slow magnets disks is definitely the bottleneck of the OLTP system. Capacity and Performance of Hard Disk The following table shows the capacity and performance change of enterprise hard disk in the last 5 years, the capacity is increased year by year, but the performance stays the same level. When deploying DB2 database on hard disk, users will buy much more spindles than the capacity needs to suport the high I/O throughput requirements, while the free capacity can t be used to store other data because that will make the performance of database bad. Tiering storage or pure SSD solution are now strongly recommended in DB2 database, and the solution that migrating hottest objects to Dorado fit into the performnace and capacity requirements. Year Capacity RPM OLTP Throughput OLAP Throughput GB 15 K 200 IO/s 30 MB/s GB 15 K 200 IO/s 30 MB/s GB 15 K 200 IO/s 30 MB/s GB 15 K 200 IO/s 30 MB/s GB 15 K 200 IO/s 30 MB/s OceanStor Dorado HUAWEI OceanStor Dorado2100 G2 and Dorado5100 are SAN storage systems using all solid state disks, they are designed to eliminate IO bottleneck, and accelerate mission-critical applications by reducing latency. Using Dorado2100 G2 or Dorado5100 to accelerate DB2 performance is the best choice. 2

3 Latency (ms) The following chart shows the SPC1-LIKE (OLTP workload) benchmark results of OceanStor Dorado and traditional storage systems. The latency of Dorado is lower than 1ms, but the latency of traditional storage is higher to 10ms. Dorado could significantly improve the response time and throughput in OLTP systems Troditional High End Storage-1(608 15K SAS) Dorado2100 G2 (75 SSD) Troditional High End Storage-2 ( K SAS) Dorado5100 ( 96 SSD) IOPS x Performance Acceleration The following chart shows the improvement of transaction response time and maximum user load when migrating DB2 objects from SAS disks to Dorado. Active Users Trans. Resp. Time (ms) Base Line - 48 HDDs, 16 used for data Migrate hot objects to Dorado 22 Migrate all objects to Dorado The tests are performed using TPC-C Like workload on a traditional storage with 48-15K RPM SAS disks and a Dorado5100 storage with 24 SLC SSD disks. The TPC-C objects are migrated one by one from 16 SAS disks which are configured as 2 RAID10 group, to 18 SSDs disks which are configured as 2 RAID5 group. After migrating hot objects to Dorado, the transaction response time (Trans. Resp. Time) is reduced from 260ms to 123ms, reduced 53%; the maximum user load (Active Users) is increased from 2000 to 3800, increased 90%. 3

4 After migrating all objects to Dorado, the transaction response time (Trans. Resp. Time) is reduced from 260ms to 22ms, reduced 92%; the maximum user load (Active Users) is increased from 2000 to 16000, increased to 800%. Users are significantly benefited from the low latency and high random I/O throughput of Dorado. The following two statement results show the I/O wait time information before and after migrating all objects to Dorado. The wait time of I/O operations is reduced from 15.42ms to 0.46ms, and the I/O wait time percentage is reduced from 96.24% to 48.36%. I/O wait time of hard disk I/O wait time of solid disk 4

5 What to Migrate In OLTP database, I/O operations on data files are very random and the blocks are relatively small (typically 4KB in DB2). Mostly, the performance bottleneck is caused by the latency of physical random read. The redo write is synchronize I/O operation and very frequent, and the transaction commit must wait the success of redo log write, so redo write is another critical component in OLTP system and is the second files need to be migrated to Dorado. The undo and temporary table spaces are the third objects need to be migrated to Dorado. The archive log and flash back recovery area are sequential and periodical I/O operations, and are the last to be migrated to Dorado. In OLAP database, I/O operations on data files are multiple streams sequential read and the blocks are relatively large (32k-512k). The queries are usually executed in parallel and there re multiple streams, causing I/O operations more random and the throughput decreased. Mostly, the performance bottleneck is caused by the read operation of temporary and user table spaces. The best migrating solution is move all DB2 objects to Dorado, but when the budget is not enough, you could follow the steps below to find and migrate the hottest objects to Dorado. Hottest Objects First of all, you could use the following statement to find the hottest tables and migrate them to Dorado. The following execute result shows the hottest objects order by read temperature (rows read multiple by table size) in an OLTP system which could be migrated to Dorado one by one. select substr(tabname,1,20) as table_name,data_partition_id, decimal(rows_read)/(data_object_pages+index_object_pages) AS read_temperature, decimal(rows_written)/(data_object_pages+index_object_pages) AS write_temperature from sysibmadm.snaptab where tabschema='db2inst1' order by read_temperature desc 5

6 Redo Logs The 2 nd step is to migrate redo log files to Dorado, reducing the latency of log file sync operation and log archive operation. Temporary Table Space The 3 rd step is to migrate temporary table space to Dorado. The temporary table space is a critical component in OLAP systems. Migrating temporary table space could significantly improve the performance of sorting operations. Archive Log The 4 th step is to set archive log destination to Dorado. Log archiving operation performs sequential read from redo log and sequential write to archive destination, which has a performance impact on redo log sync operations. The faster log archives, the smaller impact on performance. Setting archive log destination to Dorado could improve the transaction performance. Backup Destination The last step is to set the backup destination to Dorado, making the backup and recovery much more quickly. 6

7 How to Migrate There re many ways to migrate objects from one table space to another table space. The following steps describe migrating DB2 objects to Dorado using LOAD FROM CURSOR method. Before migrating, finding the hottest objects, planning storage size and estimating migration window are strongly recommended by HUAWEI. Also, please ensure there s no user online when migrating. The following steps are performed in DB2 LUW V on Red Hat Enterprise Linux 6.3. Tables and Indexes 1. Get the object s DDL using db2look command For example, the following DDL is got from the command db2look -d hwdb -z db2inst1 -e -t stock, STOCK is a table with 10 partitions which are stored on 10 different table spaces, and an index PK_STOCK is created on the table. 2. Get the object size from sysibmadm.snaptab view For example, you can get the size of each partitions of the table STOCK using the following command, DATA_OBJECT_PAGES is the size of each partition, INDEX_OBJECT_PAGES is the total size of all indexes created on the table, TBS_NAME is the table space name where the partition created in, and TBSP_TOTAL_PAGES is the size of the table space. 7

8 select data_partition_id, data_object_pages, index_object_pages, substr(tbsp_name,1,20) tbs_name, tbsp_total_pages from sysibmadm.snaptab s,table(mon_get_tablespace('',-2)) t where s.tabschema='db2inst1' and s.tabname='stock' and s.tbsp_id=t.tbsp_id order by data_partition_id 3. Create logical volumes or file systems on Dorado storage devices For example, create 10 volumes using the following commands to store the 10 partitions of table STOCK, the size of the volume should be at least 50% overhead to the size got in last step, it is 150% * (DATA_OBJECT_PAGES + INDEX_OBJECT_PAGES / 10) * PAGE_SIZE. pvcreate /dev/sdb pvcreate /dev/sdf vgcreate vgusr /dev/sdb /dev/sdf lvcreate -n s0 -i 2 -I 512 -L 50g vgusr lvcreate -n s1 -i 2 -I 512 -L 50g vgusr... lvcreate -n s9 -i 2 -I 512 -L 50g vgusr chown db2inst1:dasadm1 /dev/vgusr/s[0-9] 4. Create table spaces on Dorado storage path or volumes For example, create 10 table spaces like the following commands on the 10 volumes created in last step. CREATE LARGE TABLESPACE tss0 MANAGED BY DATABASE USING ( DEVICE '/dev/mapper/vgusr-s0' 50G) BUFFERPOOL bps EXTENTSIZE 128 PREFETCHSIZE 128 OVERHEAD 0.5 TRANSFERRATE 0.05 DROPPED TABLE RECOVERY OFF; 5. Rename the tables and indexes For example, using the following commands to rename table STOCK to STOCK_OLD and index PK_STOCK to PK_STOCK_OLD : 8

9 rename table stock to stock_old; rename index pk_stock to pk_stock_old; 6. Create new table and load data from the old For example, change the table space in the table DDL got from db2look command, and execute it to create new table on the new table spaces created on Dorado storage. Then load data into the new table from the old one. CREATE TABLE "DB2INST1"."STOCK" ( "S_W_ID" INTEGER NOT NULL,... "S_DIST_10" CHAR(24) ) PARTITION BY RANGE("S_W_ID") (PART "PART0" STARTING(1) IN "TSS0", PART "PART1" STARTING(1001) IN "TSS1",... PART "PART9" STARTING(9001) ENDING(10000) IN "TSS9") ; DECLARE C_STOCK CURSOR FOR SELECT * FROM STOCK_OLD; LOAD FROM C_STOCK OF CURSOR INSERT INTO STOCK NONRECOVERABLE; 7. Re-create indexes on the new table For example, using the DDL got from db2look command to re-create indexes for table STOCK : CREATE INDEX "DB2INST1"."PK_STOCK" ON "DB2INST1"."STOCK" ("S_W_ID" ASC, "S_I_ID" ASC) PARTITIONED COMPRESS NO ALLOW REVERSE SCANS; 8. Run statistics For example, using the following command to re-run statistics on table STOCK : runstats on table stock and indexes all; 9. Done. Redo Logs 1. Change the new transaction log path to Dorado storage path db2 update db cfg using NEWLOGPATH "/opt/db2/fsys" 2. Restart database db2 force application all 9

10 db2 terminate db2 connect to hwdb 3. Done. Temporary Table Space 1. Create temporary table space in Dorado storage path CREATE SYSTEM TEMPORARY TABLESPACE TEMPSPACE2 MANAGED BY SYSTEM USING ('/opt/db2/fsys/tempspace2'); 2. Drop the old temporary table space drop tablespace tempspace1; 3. Done. Archive Log 1. Change the archive log destination parameter db2 update db cfg using LOGARCHMETH1 'DISK:/opt/db2/fsys/' 2. Done. Backup Destination 1. Specify the new backup destination when backup db2 backup db hwdb to /opt/db2/fbak1,/opt/db2/fbak2 2. Done. 10

11 Best Practices for Dorado This chapter introduces best practices when migrating DB2 objects to Dorado Storage System. RAID Level Dorado provides 4 kinds of RAID level: RAID10, RAID5, RAID0, and RAID1. Level RAID0 provides maximum random write performance but it s not safe. RAID10 provides double random write performance than RAID5, but it s more expensive. When migrating DB2 objects to Dorado, RAID5 is the best choice. But when the write performance of RAID5 can t fit into your database throughput, chose RAID10 or add more SSDs to build new RAID5 groups for your database. Write Policy Dorado provides 3 kinds of write policies for LUN: write through, write back with cache mirroring, and write back without cache mirroring. Write through is the default policy, in which mode dirty pages are directly written to SSDs on Dorado by I/O cleaners, which policy can be used for LUNs store user tables and indexes. For LUNs store redo log files and archive logs, you could change the policy to write back with cache mirroring with the help of HUAWEI technical support engineers. In write back mode, dirty pages are written to Dorado Cache Pool, and later synced to SSDs in the background with LRU-LIKE algorithm. The latency is very low because blocks are only written to Dorado memory. With cache mirroring, each write I/O from DB2 is first written to the cache of LUN s owner controller, and at the same time transferred to another controller through the mirror channel between the two controllers, making the latency of write I/O higher than no cache mirroring. Linux I/O Scheduler DB2 database is more widely deployed on Linux operating system nowadays. There re 4 kinds of I/O scheduler for block devices in Linux kernel 2.6: noop, anticipatory, deadline, and cfq. The default I/O scheduler is cfq, which is not suitable for Dorado. For DB2 database, deadline is recommended for OceanStor T series storage systems and noop is recommended for OceanStor Dorado storage system. Using the following command, you can change the I/O scheduler of /dev/sdb to noop and /dev/sdc to deadline : echo noop > /sys/block/sdb/queue/scheduler echo deadline > /sys/block/sdc/queue/scheduler 11

12 SLC or emlc Two types of SSD are supported on Dorado, SLC (Single-Layer Chip) and emlc (Enterprise Multi-Layer Chip). SLC has much better random write performance and more number of block erase count, but more expensive than emlc. SLC and emlc almost have the same random read performance. The write ratio of OLTP workload is typically 20% - 60%, but there re scenarios lower than 20%. For write intensive OLTP workload, SLC is a better choice considering performance and erase count. For read-mostly or read-only OLTP workload, emlc is a better choice. In OLAP database, the data is written once and read many times, and the updated data is periodically loaded into database. Choosing emlc is a better idea for OLAP workload. 12

13 Copyright Huawei Technologies Co., Ltd All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of Huawei Technologies Co., Ltd. Trademark Notice HUAWEI, and are trademarks or registered trademarks of Huawei Technologies Co., Ltd. Other trademarks, product, service and company names mentioned are the property of their respective owners. General Disclaimer The information in this document may contain predictive statements including, without limitation, statements regarding the future financial and operating results, future product portfolio, new technology, etc. There are a number of factors that could cause actual results and developments to differ materially from those expressed or implied in the predictive statements. Therefore, such information is provided for reference purpose only and constitutes neither an offer nor an HUAWEI TECHNOLOGIES CO., LTD. Huawei Industrial Base Bantian Longgang Shenzhen , P.R. China Tel: acceptance. Huawei may change the information at any time without notice. PROVIDED BY HUAWEI STORAGE PERFORMANCE LAB 13

Accelerate Oracle Performance by Using SmartCache of T Series Unified Storage

Accelerate Oracle Performance by Using SmartCache of T Series Unified Storage Accelerate Oracle Performance by Using SmartCache of T Series Unified Storage This document describes why and how to use SmartCache in Oracle OLTP database to accelerate the transaction performance. SmartCache

More information

The introduction of storage presales tool-edesigner. Storage edesigner Project Team

The introduction of storage presales tool-edesigner. Storage edesigner Project Team The introduction of storage presales tool-edesigner Storage edesigner Project Team 0 Can t finish product evaluation or product configuration in several hours? Can t guarantee the accuracy? Master complicate

More information

Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card

Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card Best Practices for Optimizing SQL Server Database Performance with the LSI WarpDrive Acceleration Card Version 1.0 April 2011 DB15-000761-00 Revision History Version and Date Version 1.0, April 2011 Initial

More information

Boost Database Performance with the Cisco UCS Storage Accelerator

Boost Database Performance with the Cisco UCS Storage Accelerator Boost Database Performance with the Cisco UCS Storage Accelerator Performance Brief February 213 Highlights Industry-leading Performance and Scalability Offloading full or partial database structures to

More information

Best Practices for Optimizing Storage for Oracle Automatic Storage Management with Oracle FS1 Series Storage ORACLE WHITE PAPER JANUARY 2015

Best Practices for Optimizing Storage for Oracle Automatic Storage Management with Oracle FS1 Series Storage ORACLE WHITE PAPER JANUARY 2015 Best Practices for Optimizing Storage for Oracle Automatic Storage Management with Oracle FS1 Series Storage ORACLE WHITE PAPER JANUARY 2015 Table of Contents 0 Introduction 1 The Test Environment 1 Best

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

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

IBM Systems and Technology Group May 2013 Thought Leadership White Paper. Faster Oracle performance with IBM FlashSystem

IBM Systems and Technology Group May 2013 Thought Leadership White Paper. Faster Oracle performance with IBM FlashSystem IBM Systems and Technology Group May 2013 Thought Leadership White Paper Faster Oracle performance with IBM FlashSystem 2 Faster Oracle performance with IBM FlashSystem Executive summary This whitepaper

More information

EMC XtremSF: Delivering Next Generation Performance for Oracle Database

EMC XtremSF: Delivering Next Generation Performance for Oracle Database White Paper EMC XtremSF: Delivering Next Generation Performance for Oracle Database Abstract This white paper addresses the challenges currently facing business executives to store and process the growing

More information

Lab Evaluation of NetApp Hybrid Array with Flash Pool Technology

Lab Evaluation of NetApp Hybrid Array with Flash Pool Technology Lab Evaluation of NetApp Hybrid Array with Flash Pool Technology Evaluation report prepared under contract with NetApp Introduction As flash storage options proliferate and become accepted in the enterprise,

More information

OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni

OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni OLTP Meets Bigdata, Challenges, Options, and Future Saibabu Devabhaktuni Agenda Database trends for the past 10 years Era of Big Data and Cloud Challenges and Options Upcoming database trends Q&A Scope

More information

Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator

Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator enterprise White Paper Delivering Accelerated SQL Server Performance with OCZ s ZD-XL SQL Accelerator Performance Test Results for Analytical (OLAP) and Transactional (OLTP) SQL Server 212 Loads Allon

More information

SUN ORACLE DATABASE MACHINE

SUN ORACLE DATABASE MACHINE SUN ORACLE DATABASE MACHINE FEATURES AND FACTS FEATURES From 2 to 8 database servers From 3 to 14 Sun Oracle Exadata Storage Servers Up to 5.3 TB of Exadata QDR (40 Gb/second) InfiniBand Switches Uncompressed

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

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

IBM DB2: LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs

IBM DB2: LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs coursemonster.com/au IBM DB2: LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs View training dates» Overview Learn how to tune for optimum performance the IBM DB2 9 for Linux,

More information

Data Center Storage Solutions

Data Center Storage Solutions Data Center Storage Solutions Enterprise software, appliance and hardware solutions you can trust When it comes to storage, most enterprises seek the same things: predictable performance, trusted reliability

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

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

Performance and scalability of a large OLTP workload

Performance and scalability of a large OLTP workload Performance and scalability of a large OLTP workload ii Performance and scalability of a large OLTP workload Contents Performance and scalability of a large OLTP workload with DB2 9 for System z on Linux..............

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

HUAWEI OceanStor Enterprise Storage System Success Cases

HUAWEI OceanStor Enterprise Storage System Success Cases Copyright Huawei Technologies Co., Ltd. 2013. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of Huawei Technologies

More information

Oracle Aware Flash: Maximizing Performance and Availability for your Database

Oracle Aware Flash: Maximizing Performance and Availability for your Database Oracle Aware Flash: Maximizing Performance and Availability for your Database Gurmeet Goindi Principal Product Manager Oracle Kirby McCord Database Architect US Cellular Kodi Umamageswaran Vice President,

More information

Condusiv s V-locity Server Boosts Performance of SQL Server 2012 by 55%

Condusiv s V-locity Server Boosts Performance of SQL Server 2012 by 55% openbench Labs Executive Briefing: April 19, 2013 Condusiv s Server Boosts Performance of SQL Server 2012 by 55% Optimizing I/O for Increased Throughput and Reduced Latency on Physical Servers 01 Executive

More information

DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs

DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs Kod szkolenia: Tytuł szkolenia: CL442PL DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs Dni: 5 Opis: Learn how to tune for optimum the IBM DB2 9 for Linux, UNIX, and Windows

More information

Data Center Solutions

Data Center Solutions Data Center Solutions Systems, software and hardware solutions you can trust With over 25 years of storage innovation, SanDisk is a global flash technology leader. At SanDisk, we re expanding the possibilities

More information

Qsan Document - White Paper. Performance Monitor Case Studies

Qsan Document - White Paper. Performance Monitor Case Studies Qsan Document - White Paper Performance Monitor Case Studies Version 1.0 November 2014 Copyright Copyright@2004~2014, Qsan Technology, Inc. All rights reserved. No part of this document may be reproduced

More information

WHITE PAPER FUJITSU PRIMERGY SERVER BASICS OF DISK I/O PERFORMANCE

WHITE PAPER FUJITSU PRIMERGY SERVER BASICS OF DISK I/O PERFORMANCE WHITE PAPER BASICS OF DISK I/O PERFORMANCE WHITE PAPER FUJITSU PRIMERGY SERVER BASICS OF DISK I/O PERFORMANCE This technical documentation is aimed at the persons responsible for the disk I/O performance

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

The Revival of Direct Attached Storage for Oracle Databases

The Revival of Direct Attached Storage for Oracle Databases The Revival of Direct Attached Storage for Oracle Databases Revival of DAS in the IT Infrastructure Introduction Why is it that the industry needed SANs to get more than a few hundred disks attached to

More information

Sistemas Operativos: Input/Output Disks

Sistemas Operativos: Input/Output Disks Sistemas Operativos: Input/Output Disks Pedro F. Souto (pfs@fe.up.pt) April 28, 2012 Topics Magnetic Disks RAID Solid State Disks Topics Magnetic Disks RAID Solid State Disks Magnetic Disk Construction

More information

The IntelliMagic White Paper: Storage Performance Analysis for an IBM Storwize V7000

The IntelliMagic White Paper: Storage Performance Analysis for an IBM Storwize V7000 The IntelliMagic White Paper: Storage Performance Analysis for an IBM Storwize V7000 Summary: This document describes how to analyze performance on an IBM Storwize V7000. IntelliMagic 2012 Page 1 This

More information

Comprehending the Tradeoffs between Deploying Oracle Database on RAID 5 and RAID 10 Storage Configurations. Database Solutions Engineering

Comprehending the Tradeoffs between Deploying Oracle Database on RAID 5 and RAID 10 Storage Configurations. Database Solutions Engineering Comprehending the Tradeoffs between Deploying Oracle Database on RAID 5 and RAID 10 Storage Configurations A Dell Technical White Paper Database Solutions Engineering By Sudhansu Sekhar and Raghunatha

More information

Best Practices for Deploying Citrix XenDesktop on NexentaStor Open Storage

Best Practices for Deploying Citrix XenDesktop on NexentaStor Open Storage Best Practices for Deploying Citrix XenDesktop on NexentaStor Open Storage White Paper July, 2011 Deploying Citrix XenDesktop on NexentaStor Open Storage Table of Contents The Challenges of VDI Storage

More information

SUN ORACLE DATABASE MACHINE

SUN ORACLE DATABASE MACHINE SUN ORACLE DATABASE MACHINE FEATURES AND FACTS FEATURES From 1 to 8 database servers From 1 to 14 Sun Oracle Exadata Storage Servers Each Exadata Storage Server includes 384 GB of Exadata Smart Flash Cache

More information

Choosing Storage Systems

Choosing Storage Systems Choosing Storage Systems For MySQL Peter Zaitsev, CEO Percona Percona Live MySQL Conference and Expo 2013 Santa Clara,CA April 25,2013 Why Right Choice for Storage is Important? 2 because Wrong Choice

More information

Optimizing Storage for Oracle ASM with Oracle Flash-Optimized SAN Storage

Optimizing Storage for Oracle ASM with Oracle Flash-Optimized SAN Storage Optimizing Storage for Oracle ASM with Oracle Flash-Optimized SAN Storage Simon Towers Architect Flash Storage Systems October 02, 2014 Program Agenda 1 2 3 4 5 6 Goals Flash Storage System Environment

More information

Dynamic Disk Pools Technical Report

Dynamic Disk Pools Technical Report Dynamic Disk Pools Technical Report A Dell Technical White Paper Dell PowerVault MD3 Dense Series of Storage Arrays 9/5/2012 THIS WHITE PAPER IS FOR INFORMATIONAL PURPOSES ONLY, AND MAY CONTAIN TYPOGRAPHICAL

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

AIX NFS Client Performance Improvements for Databases on NAS

AIX NFS Client Performance Improvements for Databases on NAS AIX NFS Client Performance Improvements for Databases on NAS October 20, 2005 Sanjay Gulabani Sr. Performance Engineer Network Appliance, Inc. gulabani@netapp.com Diane Flemming Advisory Software Engineer

More information

Data Center Storage Solutions

Data Center Storage Solutions Data Center Storage Solutions Enterprise hardware and software solutions you can trust When it comes to storage, most enterprises seek the same things: predictable performance, trusted reliability and

More information

OceanStor 9000 InfoProtector Technical White Paper. Issue 01. Date 2014-02-13 HUAWEI TECHNOLOGIES CO., LTD.

OceanStor 9000 InfoProtector Technical White Paper. Issue 01. Date 2014-02-13 HUAWEI TECHNOLOGIES CO., LTD. OceanStor 9000 InfoProtector Technical White Paper Issue 01 Date 2014-02-13 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2014. All rights reserved. No part of this document may

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

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

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

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

More information

HP Smart Array Controllers and basic RAID performance factors

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

More information

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

How it can benefit your enterprise. Dejan Kocic Netapp

How it can benefit your enterprise. Dejan Kocic Netapp PRESENTATION Case for flash TITLE GOES storage HERE How it can benefit your enterprise Dejan Kocic Netapp SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA unless otherwise

More information

Huawei Business Continuity and Disaster Recovery Solution

Huawei Business Continuity and Disaster Recovery Solution Huawei Business Continuity and Disaster Recovery Solution Contents 01 Great Challenges to Business Continuity and Disaster Recovery 02 Huawei Business Continuity and Disaster Recovery Solution 02 Application

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

RAID Performance Analysis

RAID Performance Analysis RAID Performance Analysis We have six 500 GB disks with 8 ms average seek time. They rotate at 7200 RPM and have a transfer rate of 20 MB/sec. The minimum unit of transfer to each disk is a 512 byte sector.

More information

Performance Benchmark for Cloud Block Storage

Performance Benchmark for Cloud Block Storage Performance Benchmark for Cloud Block Storage J.R. Arredondo vjune2013 Contents Fundamentals of performance in block storage Description of the Performance Benchmark test Cost of performance comparison

More information

Implementing EMC CLARiiON CX4 with Enterprise Flash Drives for Microsoft SQL Server 2008 Databases

Implementing EMC CLARiiON CX4 with Enterprise Flash Drives for Microsoft SQL Server 2008 Databases Implementing EMC CLARiiON CX4 with Enterprise Flash Drives for Microsoft SQL Server 2008 Databases Applied Technology Abstract This white paper examines the performance considerations of placing SQL Server

More information

Performance Baseline of Hitachi Data Systems HUS VM All Flash Array for Oracle

Performance Baseline of Hitachi Data Systems HUS VM All Flash Array for Oracle Performance Baseline of Hitachi Data Systems HUS VM All Flash Array for Oracle Storage and Database Performance Benchware Performance Suite Release 8.5 (Build 131015) November 2013 Contents 1 System Configuration

More information

An Oracle White Paper May 2011. Exadata Smart Flash Cache and the Oracle Exadata Database Machine

An Oracle White Paper May 2011. Exadata Smart Flash Cache and the Oracle Exadata Database Machine An Oracle White Paper May 2011 Exadata Smart Flash Cache and the Oracle Exadata Database Machine Exadata Smart Flash Cache... 2 Oracle Database 11g: The First Flash Optimized Database... 2 Exadata Smart

More information

An Oracle White Paper September 2010. Oracle Database Smart Flash Cache

An Oracle White Paper September 2010. Oracle Database Smart Flash Cache An Oracle White Paper September 2010 Oracle Database Smart Flash Cache Introduction Oracle Database 11g Release 2 introduced a new database feature: Database Smart Flash Cache. This feature is available

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

The IntelliMagic White Paper on: Storage Performance Analysis for an IBM San Volume Controller (SVC) (IBM V7000)

The IntelliMagic White Paper on: Storage Performance Analysis for an IBM San Volume Controller (SVC) (IBM V7000) The IntelliMagic White Paper on: Storage Performance Analysis for an IBM San Volume Controller (SVC) (IBM V7000) IntelliMagic, Inc. 558 Silicon Drive Ste 101 Southlake, Texas 76092 USA Tel: 214-432-7920

More information

Safe Harbor Statement

Safe Harbor Statement Safe Harbor Statement The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment

More information

Data Center Solutions

Data Center Solutions Data Center Solutions Systems, software and hardware solutions you can trust With over 25 years of storage innovation, SanDisk is a global flash technology leader. At SanDisk, we re expanding the possibilities

More information

PrimaryIO Application Performance Acceleration Date: July 2015 Author: Tony Palmer, Senior Lab Analyst

PrimaryIO Application Performance Acceleration Date: July 2015 Author: Tony Palmer, Senior Lab Analyst ESG Lab Spotlight PrimaryIO Application Performance Acceleration Date: July 215 Author: Tony Palmer, Senior Lab Analyst Abstract: PrimaryIO Application Performance Acceleration (APA) is designed to provide

More information

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 412, University of Maryland. Guest lecturer: David Hovemeyer.

Introduction Disks RAID Tertiary storage. Mass Storage. CMSC 412, University of Maryland. Guest lecturer: David Hovemeyer. Guest lecturer: David Hovemeyer November 15, 2004 The memory hierarchy Red = Level Access time Capacity Features Registers nanoseconds 100s of bytes fixed Cache nanoseconds 1-2 MB fixed RAM nanoseconds

More information

Accelerating Oracle with IBM FlashSystem: The Need for Speed

Accelerating Oracle with IBM FlashSystem: The Need for Speed Mike Ault - Oracle FlashSystem Consulting Manager, IBM January 2014 Accelerating Oracle with IBM FlashSystem: The Need for Speed 2014 IBM Corporation Smarter Computing Demands Flash The more we have flash

More information

AirWave 7.7. Server Sizing Guide

AirWave 7.7. Server Sizing Guide AirWave 7.7 Server Sizing Guide Copyright 2013 Aruba Networks, Inc. Aruba Networks trademarks include, Aruba Networks, Aruba Wireless Networks, the registered Aruba the Mobile Edge Company logo, Aruba

More information

MS SQL Performance (Tuning) Best Practices:

MS SQL Performance (Tuning) Best Practices: MS SQL Performance (Tuning) Best Practices: 1. Don t share the SQL server hardware with other services If other workloads are running on the same server where SQL Server is running, memory and other hardware

More information

Intel RAID SSD Cache Controller RCS25ZB040

Intel RAID SSD Cache Controller RCS25ZB040 SOLUTION Brief Intel RAID SSD Cache Controller RCS25ZB040 When Faster Matters Cost-Effective Intelligent RAID with Embedded High Performance Flash Intel RAID SSD Cache Controller RCS25ZB040 When Faster

More information

The IntelliMagic White Paper: Green Storage: Reduce Power not Performance. December 2010

The IntelliMagic White Paper: Green Storage: Reduce Power not Performance. December 2010 The IntelliMagic White Paper: Green Storage: Reduce Power not Performance December 2010 Summary: This white paper provides techniques to configure the disk drives in your storage system such that they

More information

Solid State Storage in Massive Data Environments Erik Eyberg

Solid State Storage in Massive Data Environments Erik Eyberg Solid State Storage in Massive Data Environments Erik Eyberg Senior Analyst Texas Memory Systems, Inc. Agenda Taxonomy Performance Considerations Reliability Considerations Q&A Solid State Storage Taxonomy

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

PERFORMANCE TUNING ORACLE RAC ON LINUX

PERFORMANCE TUNING ORACLE RAC ON LINUX PERFORMANCE TUNING ORACLE RAC ON LINUX By: Edward Whalen Performance Tuning Corporation INTRODUCTION Performance tuning is an integral part of the maintenance and administration of the Oracle database

More information

Boost SQL Server Performance Buffer Pool Extensions & Delayed Durability

Boost SQL Server Performance Buffer Pool Extensions & Delayed Durability Boost SQL Server Performance Buffer Pool Extensions & Delayed Durability Manohar Punna President - SQLServerGeeks #509 Brisbane 2016 Agenda SQL Server Memory Buffer Pool Extensions Delayed Durability Analysis

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

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

HUAWEI OceanStor 9000. Load Balancing Technical White Paper. Issue 01. Date 2014-06-20 HUAWEI TECHNOLOGIES CO., LTD.

HUAWEI OceanStor 9000. Load Balancing Technical White Paper. Issue 01. Date 2014-06-20 HUAWEI TECHNOLOGIES CO., LTD. HUAWEI OceanStor 9000 Load Balancing Technical Issue 01 Date 2014-06-20 HUAWEI TECHNOLOGIES CO., LTD. Copyright Huawei Technologies Co., Ltd. 2014. All rights reserved. No part of this document may be

More information

Using Synology SSD Technology to Enhance System Performance Synology Inc.

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

More information

How it can benefit your enterprise. Dejan Kocic Hitachi Data Systems (HDS)

How it can benefit your enterprise. Dejan Kocic Hitachi Data Systems (HDS) PRESENTATION Case for flash TITLE GOES storage HERE How it can benefit your enterprise Dejan Kocic Hitachi Data Systems (HDS) SNIA Legal Notice The material contained in this tutorial is copyrighted by

More information

Using Synology SSD Technology to Enhance System Performance Synology Inc.

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

More information

Using Synology SSD Technology to Enhance System Performance. Based on DSM 5.2

Using Synology SSD Technology to Enhance System Performance. Based on DSM 5.2 Using Synology SSD Technology to Enhance System Performance Based on DSM 5.2 Table of Contents Chapter 1: Enterprise Challenges and SSD Cache as Solution Enterprise Challenges... 3 SSD Cache as Solution...

More information

Pure Storage Reference Architecture for Oracle Databases

Pure Storage Reference Architecture for Oracle Databases Pure Storage Reference Architecture for Oracle Databases Overview This document provides a reference architecture for deploying Oracle databases on the Pure Storage FlashArray. Pure Storage has validated

More information

EMC XtremSF: Delivering Next Generation Storage Performance for SQL Server

EMC XtremSF: Delivering Next Generation Storage Performance for SQL Server White Paper EMC XtremSF: Delivering Next Generation Storage Performance for SQL Server Abstract This white paper addresses the challenges currently facing business executives to store and process the growing

More information

VERITAS Database Edition 2.1.2 for Oracle on HP-UX 11i. Performance Report

VERITAS Database Edition 2.1.2 for Oracle on HP-UX 11i. Performance Report VERITAS Database Edition 2.1.2 for Oracle on HP-UX 11i Performance Report V E R I T A S W H I T E P A P E R Table of Contents Introduction.................................................................................1

More information

Energy Efficient Storage Management Cooperated with Large Data Intensive Applications

Energy Efficient Storage Management Cooperated with Large Data Intensive Applications Energy Efficient Storage Management Cooperated with Large Data Intensive Applications Norifumi Nishikawa #1, Miyuki Nakano #2, Masaru Kitsuregawa #3 # Institute of Industrial Science, The University of

More information

Boosting Database Batch workloads using Flash Memory SSDs

Boosting Database Batch workloads using Flash Memory SSDs Boosting Database Batch workloads using Flash Memory SSDs Won-Gill Oh and Sang-Won Lee School of Information and Communication Engineering SungKyunKwan University, 27334 2066, Seobu-Ro, Jangan-Gu, Suwon-Si,

More information

An Oracle White Paper December 2013. Exadata Smart Flash Cache Features and the Oracle Exadata Database Machine

An Oracle White Paper December 2013. Exadata Smart Flash Cache Features and the Oracle Exadata Database Machine An Oracle White Paper December 2013 Exadata Smart Flash Cache Features and the Oracle Exadata Database Machine Flash Technology and the Exadata Database Machine... 2 Oracle Database 11g: The First Flash

More information

Running Highly Available, High Performance Databases in a SAN-Free Environment

Running Highly Available, High Performance Databases in a SAN-Free Environment TECHNICAL BRIEF:........................................ Running Highly Available, High Performance Databases in a SAN-Free Environment Who should read this paper Architects, application owners and database

More information

Agenda. Enterprise Application Performance Factors. Current form of Enterprise Applications. Factors to Application Performance.

Agenda. Enterprise Application Performance Factors. Current form of Enterprise Applications. Factors to Application Performance. Agenda Enterprise Performance Factors Overall Enterprise Performance Factors Best Practice for generic Enterprise Best Practice for 3-tiers Enterprise Hardware Load Balancer Basic Unix Tuning Performance

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

Q & A From Hitachi Data Systems WebTech Presentation:

Q & A From Hitachi Data Systems WebTech Presentation: Q & A From Hitachi Data Systems WebTech Presentation: RAID Concepts 1. Is the chunk size the same for all Hitachi Data Systems storage systems, i.e., Adaptable Modular Systems, Network Storage Controller,

More information

Converged storage architecture for Oracle RAC based on NVMe SSDs and standard x86 servers

Converged storage architecture for Oracle RAC based on NVMe SSDs and standard x86 servers Converged storage architecture for Oracle RAC based on NVMe SSDs and standard x86 servers White Paper rev. 2015-11-27 2015 FlashGrid Inc. 1 www.flashgrid.io Abstract Oracle Real Application Clusters (RAC)

More information

Analysis of VDI Storage Performance During Bootstorm

Analysis of VDI Storage Performance During Bootstorm Analysis of VDI Storage Performance During Bootstorm Introduction Virtual desktops are gaining popularity as a more cost effective and more easily serviceable solution. The most resource-dependent process

More information

DB2 for Linux, UNIX, and Windows Performance Tuning and Monitoring Workshop

DB2 for Linux, UNIX, and Windows Performance Tuning and Monitoring Workshop DB2 for Linux, UNIX, and Windows Performance Tuning and Monitoring Workshop Duration: 4 Days What you will learn Learn how to tune for optimum performance the IBM DB2 9 for Linux, UNIX, and Windows relational

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

Oracle Database Deployments with EMC CLARiiON AX4 Storage Systems

Oracle Database Deployments with EMC CLARiiON AX4 Storage Systems Oracle Database Deployments with EMC CLARiiON AX4 Storage Systems Applied Technology Abstract This white paper investigates configuration and replication choices for Oracle Database deployment with EMC

More information

SUN STORAGE F5100 FLASH ARRAY

SUN STORAGE F5100 FLASH ARRAY SUN STORAGE F5100 FLASH ARRAY KEY FEATURES ACCELERATING DATABASE PERFORMANCE WITH THE WORLD S FASTEST SOLID- STATE FLASH ARRAY Unprecedented performance, power, and space efficiency World s first flash

More information

Evaluation Report: Supporting Microsoft Exchange on the Lenovo S3200 Hybrid Array

Evaluation Report: Supporting Microsoft Exchange on the Lenovo S3200 Hybrid Array Evaluation Report: Supporting Microsoft Exchange on the Lenovo S3200 Hybrid Array Evaluation report prepared under contract with Lenovo Executive Summary Love it or hate it, businesses rely on email. It

More information

Big Fast Data Hadoop acceleration with Flash. June 2013

Big Fast Data Hadoop acceleration with Flash. June 2013 Big Fast Data Hadoop acceleration with Flash June 2013 Agenda The Big Data Problem What is Hadoop Hadoop and Flash The Nytro Solution Test Results The Big Data Problem Big Data Output Facebook Traditional

More information

IBM DB2 for Linux, UNIX, and Windows

IBM DB2 for Linux, UNIX, and Windows IBM DB2 for Linux, UNIX, and Windows Best practices Database storage Aamer Sachedina Senior Technical Staff Member DB2 Technology Development Matthew Huras DB2 for Linux, UNIX, and Windows Kernel Chief

More information

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved.

Preview of Oracle Database 12c In-Memory Option. Copyright 2013, Oracle and/or its affiliates. All rights reserved. Preview of Oracle Database 12c In-Memory Option 1 The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any

More information

Huawei Cloud Data Center Solution

Huawei Cloud Data Center Solution Huawei Cloud Data Center Solution Copyright Huawei Technologies Co., Ltd. 2015. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior

More information