Rick Stehno Principle Product Marketing Engineer / DBA. Replicated Database

Size: px
Start display at page:

Download "Rick Stehno Principle Product Marketing Engineer / DBA. Replicated Database"

Transcription

1 LSI Nytro WarpDrive Acceleration Card Increases Performance of an Oracle MySQL Replicated Database Rick Stehno Principle Product Marketing Engineer / DBA SYNOPSIS This document is a guide to help increase MySQL database performance on the master server while simultaneously reducing replication lag time on the slave server by implementing the PCIe flash based LSI Nytro WarpDrive storage acceleration card. By offering high performance with low latency and minimal CPU burden, the Nytro WarpDrive card can help maximize transactional I/O performance for applications like online transaction processing (OLTP), data warehousing (DW), and data mining. By delivering the I/O performance of hundreds of traditional hard disk drives (HDDs), the Nytro WarpDrive card is designed to improve user satisfaction and productivity by enabling applications that use the MySQL database to meet challenging service- level agreements (SLAs) for response times and throughput. This solution guide describes a reference architecture as a basis for planning and deploying PCIe compatible flash storage, including a typical use case scenario. Advantages of Using Flashbased Storage with a MySQL Replicated Database As OLTP and DW applications have demanding requirements for short response times and high throughput, it makes it difficult for database administrators (DBAs) to maintain these systems as the number of users grows and the amount of data increases. During the application life cycle, performance bottlenecks might originate in one or more areas, including the network, processor, or storage devices, such as HDDs. Correcting a bottleneck in one area might cause a bottleneck in another area. In addition, if a customer wants to take advantage of MySQL s built-in replication features to horizontally scale out their database, replication process performance can become a concern. MySQL offers different methods of replicating a database to provide for high availability, disaster recovery, scalability for high performance, or a combination of any of these. MySQL replication provides the capability for all the slave database(s) to synchronize data to the master database. The default replication operation mode in MySQL is asynchronous, meaning that the master server pushes changes to the slaves once the updates are committed. Replication has thus little overhead in transaction execution latency and the slaves eventually become consistent with the state of the master. In the following use case, the semi-synchronous replication method was used. When deploying semi-synchronous replication, the master server halts the commit of a transaction, similar to synchronous replication, until the master receives at least one acknowledgement from any of the slave servers. Another benefit of using semi-synchronous replication is that the acknowledgement from the slave server only states that the new data has been received and saved to the relay log file, it doesn t mean that the slave server has actually applied the data to the database which results in better performance. Flash-based storage provides a new tool for DBAs to help solve their MySQL database performance issues. For example, 5 ms is the typical response time for a small data read from a HDD. Flash-based devices such as the Nytro WarpDrive card can complete the same reading <50μs on average, an improvement of several orders-of-magnitude in response time. Flash-based storage also provides performance levels that fall between the performance levels of HDDs and DDR3 memory. Initial implementations of flash-based drives (SSDs) were intended to replace HDDs in directattach storage or RAID subsystems. The recent innovation of mounting SSDs on a PCIe card alleviates throughput constraints that are caused by the storage interface. The Nytro WarpDrive card supports bandwidth up to 4GB/s, up to 260,000 input/output operations per second (IOPs) and capacity up to 3.2TB.

2 LSI Nytro WarpDrive Card LSI Nytro WarpDrive Card Application Acceleration Built for Enterprise Workloads Host Offloaded Architecture LSI SandForce Driven Flash Modules Market segment leading performance DuraClass Technology for enhanced reliability and endurance Offloaded architecture does not burden the host which is critical as the Flash begins to wear out Enterprise Ready Most widely deployed SAS Drivers in the industry Extensive qualification testing/rdt Consistent performance through time and across CPU speed bins Bootable Battery-less Power Fail Protection Management Tools Future Benefits Workload based tuning Enhanced Architectural optimizations and integration Industry Hardened Drivers Breadth of capacity: 200 GB to 3.2 TB SLC & MLC Major OEM Wins in Production Image 1: the LSI Nytro Warpdrive provides multiple benefits Overview of the LSI Nytro WarpDrive Application Acceleration Card The Nytro WarpDrive card offers high performance with low latency and minimal CPU burden. The Nytro WarpDrive card is designed to maximize transactional I/O performance for MySQL databases and for other applications that require high-performance computing cycles. The Nytro WarpDrive card performs consistently across reads and writes, regardless of workload, by using industry-standard and widely deployed LSI SAS software for easier system integration and management, as well as a faster time-to-market. Configuring the Linux Operating System and the MySQL Database for Optimum I/O Performance You can achieve significant database I/O improvement by following some simple guidelines in setting up the Linux operating system and the MySQL database with or without replication. This section will describe the configuration steps for both the Linux operating system and the MySQL replicated database with the Nytro WarpDrive acceleration card. Configure the Nytro WarpDrive Application Acceleration Card to use as a Filesystem This section explains some actions you can take to tune the Nytro WarpDrive acceleration card for enhanced performance using the Oracle Linux with Unbreakable Enterprise Kernel (UEK) operating system. The configuration steps that follow will work in both the UEK and Oracle Linux operating systems. The following steps configure the Nytro WarpDrive card as a single filesystem for each of the master and slave servers for MySQL databases. Other options would be to use multiple Nytro WarpDrive acceleration cards and apply RAID to provide fault tolerance for extra data protection. 1. Align the Nytro WarpDrive card on a 1MB boundary in the Linux operating system. The following example shows how to partition the Nytro WarpDrive card as a single partition starting on a 1MB boundary: echo 2048,, sfdisk -us /dev/sda Disk /dev/sda: cylinders, 255 heads, 63 sectors/track Units = sectors of 512 bytes, counting from 0 Device Boot Start End #sectors Id System /dev/sda Linux /dev/sda Empty /dev/sda Empty /dev/sda Empty LSI Nytro WarpDrive Acceleration Card Increases Performance of an Oracle MySQL Replicated Database 2

3 2. Bypass journaling when you create a file system. Instead of using EXT-3 for the file system, use EXT-4 with journaling turned off, which eliminates double writes to the Nytro WarpDrive card in certain cases. The reduction in writes increases performance and prolongs the life of the Nytro WarpDrive card. 3. For creating an EXT-4 filesystem with journaling turned off: $ mkfs t ext4 /dev/sda1 or mkfs.ext4 /dev/sda1 After creating the EXT-4 filesystem, journaling will be on as the default. To verify this, execute the tune4fs command: $ tune4fs l /dev/sda1 grep Filesystem features Notice the has_journal feature should be listed. To turn off journaling, execute: $ tune4fs -O ^has_journal /dev/sda1 4. Verify that journaling is disabled, execute the following command and make sure has_journal is not listed. $ tune4fs l /dev/sda1 grep Filesystem features 5. When mounting the new EXT-4 device (noatime option is described below): $ mount -o noatime /dev/sda1 /mountpoint 6. Modify the kernel I/O scheduler. The I/O schedulers in the latest Linux operating system releases have new I/O capabilities, including options to modify these settings at boot time. In the tests described in this document, the DEADLINE I/O scheduler was used with the noatime file system mount option. To invoke the DEADLINE scheduler for the entire system, add this line to the /etc/grub.conf file, and bounce the system. $ kernel /vmlinuz el6uek.x86_64 ro root=/dev/mapper/vg_nytro-lv_root elevator=deadline An alternative way to invoke the DEADLINE IO scheduler is to modify the /etc/rc.local file with the following command: $ echo deadline > /sys/block/sda/queue/scheduler 7. To verify that the DEADLINE scheduler is enabled, issue the following statement as root. $ cat /sys/block/sda/queue/scheduler noop anticipatory [deadline] cfq 8. In addition to changing the I/O scheduler, the noatime file system mount option was invoked, which was added to the /etc/fstab file. This option eliminates the need for the system to create writes to the file system when objects are only being read. This option also enables faster access to the files, plus the benefit of less wear on the Nytro WarpDrive card. This example shows how the /etc/fstab entry invokes the noatime option: /dev/sda1 /osfc ext4 defaults,noatime 1 2 An alternative to invoking the noatime option is to specify it when executing the mount command: $ mount o noatime /dev/sda1 /osfc 9. Performance of the Nytro WarpDrive card can be improved by increasing Queue Depth (QD) from the default of 128 to 256 or higher, depending on the database workload. Since the latency of the Nytro WarpDrive card is so small, more I/O operations/commands can be run in parallel on the Nytro WarpDrive card compared to a HDD. In order to modify queue depth, the nr_requests parameter will need to be modified to the same or larger value of the new queue depth value. Here are examples of modifying both the nr_requests and queue_depth parameters for /dev/sda which was used in our tests: $ echo 512 > /sys/block/sda/queue/nr_requests $ echo 512 > /sys/block/sda/device/queue_depth LSI Nytro WarpDrive Acceleration Card Increases Performance of an Oracle MySQL Replicated Database 3

4 10. Further performance benefits can be recognized by telling the operating system to complete an I/O request on the same CPU that initiated it. In some workloads this can provide a nice jump in performance. To enable this feature on the Nytro WarpDrive device: echo 1 > /sys/block/sda/queue/rq_affinity 11. Another operating setting that can provide more performance is setting the rotational setting to 0 which means that the device is non-rotational, it is a flash device: echo 0 > /sys/block/sda/queue/rotational Note: To persist these settings across reboots, place all of these commands in the /etc/rc.local file. Configuring the MySQL Database for Semi-Synchronous Master/Slave Replication This section describes the modifications needed to enable semi-synchronous replication using MySQL. 1. To enable semi-synchronous master/slave replication in MySQL 5.6, the following configuration settings need to be applied. Master Database: Plugins:The semi-synchronous plugin will need to be installed before starting the master server with the my.cnf changes for replication. From a mysql prompt: INSTALL PLUGIN rpl_semi_sync_master SONAME semisync_master.so ; These are the database settings for the master to enable replication used for this test case: /etc/my.cnf [mysqld] log_bin=/u04/binlog/mysql-bin sync_binlog=1 binlog_format= MIXED server_id = 10 # semi-sync replication rpl_semi_sync_master_enabled=1 datadir = /u04/datadir max_connections = 600 innodb_flush_log_at_trx_commit=1 innodb_buffer_pool_size = 4G innodb_thread_concurrency=49 slow_query_log=1 slow_query_log_file = /u04/slow_query_logfile.log innodb_log_group_home_dir = /u04/logs innodb_data_home_dir = /u04/data innodb_file_per_table=1 innodb_flush_log_at_trx_commit=1 innodb_log_files_in_group=4 innodb_log_file_size=2g innodb_thread_concurrency=0 innodb_flush_method = O_DIRECT innodb_write_io_threads=64 innodb_io_capacity=20000 expire-logs-days=1 LSI Nytro WarpDrive Acceleration Card Increases Performance of an Oracle MySQL Replicated Database 4

5 Slave Database: Plugins: The semi-synchronous plugin will need to be installed before starting the slave server with the my.cnf changes for replication. From a mysql prompt: INSTALL PLUGIN rpl_semi_sync_slave SONAME semisync_slave.so ; These are the database settings for the slave to enable replication used for this test case: /etc/my.cnf [mysqld] log_bin=/u04/binlog/mysql-bin binlog_format= MIXED datadir = /u04/datadir server_id = 2 # for semi-sync replication rpl_semi_sync_slave_enabled=1 innodb_flush_log_at_trx_commit=1 innodb_buffer_pool_size = 4G innodb_thread_concurrency=49 slow_query_log_file = /u04 innodb_log_group_home_dir = /u04/logs innodb_data_home_dir = /u04/data innodb_file_per_table=1 innodb_log_files_in_group=4 innodb_log_file_size=2g innodb_flush_method = O_DIRECT innodb_io_capacity=20000 relay_log = /u04/logs/mysql-relay-log log_slave_updates = 1 skip_slave_start read_only = 1 expire-logs-days=1 2. To start the replication process after starting both the master and slave databases, execute the following commands from each database: Master Database mysql prompt: mysql> show master status\g; File: mysql-bin Position: 120 Binlog_Do_DB: Binlog_Ignore_DB: executed_gtid_set: 1 row in set (0.00 sec) LSI Nytro WarpDrive Acceleration Card Increases Performance of an Oracle MySQL Replicated Database 5

6 Slave Database mysql prompt: Benchmark Results mysql> Reset slave; mysql> change master to master_host= master_hostname, master_user= repl, master_password= mysql, master_log_file= mysql-bin , master_ log_pos=120; mysql> start slave; mysql> start slave IO_THREAD; Before adding the Nytro WarpDrive card to the test configuration, the Linux operating system and the MySQL database were configured using techniques described in the above sections. OLTP benchmarks were executed to establish a baseline before and after implementing the Nytro WarpDrive card. Quest Benchmark Factory software was used for these benchmarks with transactions per second (TPS) and average response time results documented. The slave metric Seconds_Behind_Master, indicating the number of seconds that the slave is behind the master in processing, was captured during these tests as well. Baseline Results The results from the benchmark before installing the Nytro WarpDrive acceleration card into the servers were the following: Average TPS: 312 Average Response Time:.32 seconds Slave Seconds_Behind_Master: 1172 seconds These tests were executed with a configuration that resulted in the best results from HDD right before performance started to drop off due to overloading the HDDs. Implementing Nytro WarpDrive After implementing the Nytro WarpDrive card on both servers to replace the HDD for the database files, the following benchmarks were executed: Test 1: Modification of the average TPS and average response time benchmarks to add more load to the system to take advantage of the lower latency which the Nytro WarpDrive card provides The Slave Seconds Behind Master test using the same configuration as with HDD Average TPS: 996 Average response time:.1 second Note: By installing the Nytro WarpDrive card in both servers, it was possible to double the userload on the system, while improving average response times using the same 4G buffer size of the database. LSI Nytro WarpDrive Acceleration Card Increases Performance of an Oracle MySQL Replicated Database 6

7 MySQL TPC-C Benchmark with Semi-Synchronous Replication MySQL TPC-C Benchmark with Semi-Synchronous Replication Transactions Per Second Over 3x more TPS Seconds Response times are a third less 0 HDD NWD 0 HDD NWD TPS Avg Response Time(s) Test 2 Slave Seconds_Behind_Master: 0 Conclusion In our benchmark testing with a Nytro WarpDrive card and a MySQL database utilizing the master/slave semi-synchronous replication feature, large performance gains were realized and could directly improve enterprise environments using the configuration presented in this guide for workloads that are: 1. I/O bound due to large number of HDDs 2. I/O bound due to large HDD throughput requirements (MBps) By implementing the Nytro WarpDrive card in a MySQL replicated environment, not only will the Nytro WarpDrive card increase performance on the master, but it will also reduce the number of seconds that the slave is behind the master in replicating data. For more information and sales office locations, please visit the LSI website at: lsi.com North American Headquarters San Jose, CA T: (within U.S.) T: (outside U.S.) LSI Europe Ltd. European Headquarters United Kingdom T: [+44] LSI KK Headquarters Tokyo, Japan T: [+81] LSI and the LSI & Design logo are trademarks or registered trademarks of LSI Corporation in the United States and/or other countries. All other brand and product names may be trademarks of their respective companies. LSI Corporation reserves the right to make changes to the product(s) or information disclosed herein at any time without notice. LSI Corporation does not assume any responsibility or liability arising out of the application or use of any product or service described herein, except as expressly agreed to in writing by LSI Corporation; nor does the purchase, lease, or use of a product or service from LSI Corporation convey a license under any patent rights, copyrights, trademark rights, or any other of the intellectual property rights of LSI Corporation or of third parties. LSI products are not intended for use in life-support appliances, devices, or systems. Use of any LSI product in such applications without written consent of the appropriate LSI officer is prohibited. Copyright 2014 by LSI Corporation. All rights reserved. > 0514 WP

An Oracle White Paper September Optimizing Oracle Database Performance on Oracle Linux with Flash

An Oracle White Paper September Optimizing Oracle Database Performance on Oracle Linux with Flash An Oracle White Paper September 2014 Optimizing Oracle Database Performance on Oracle Linux with Flash Introduction... 1 Advantages of Using Flash-based Caching / Storage with an Oracle Database and Oracle

More information

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

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

More information

P RO D UC T SEL EC TOR GUID E. Storage Adapters. March 2014

P RO D UC T SEL EC TOR GUID E. Storage Adapters. March 2014 P RO D UC T SEL EC TOR GUID E Storage Adapters March 2014 LSI Storage Adapters Nytro Flash Acceleration Solutions...Page 3 MegaRAID Solutions....Page 5 3ware Solutions....Page 6 Syncro Shared Solutions...Page

More information

LSI and HGST accelerate database applications with Enterprise RAID and Solid State Drives

LSI and HGST accelerate database applications with Enterprise RAID and Solid State Drives LSI and HGST accelerate database applications with Enterprise RAID and Solid State Drives HGST Ultrastar enterprise-class solid state drives (SSDs) connected to LSI MegaRAID 6Gb/s SAS+SATA RAID controller

More information

LSI SAS6160 LSI SAS Switch. Configuration Guide

LSI SAS6160 LSI SAS Switch. Configuration Guide LSI SAS6160 LSI SAS Switch Configuration Guide 2010 SAS Switch The LSI SAS6160 Switch is a ½ wide, 16-port switch that fits into the 1U form factor. The switch extends the capabilities of SAS in direct-attached

More information

LSI MegaRAID Advanced Software Evaluation Guide V3.0

LSI MegaRAID Advanced Software Evaluation Guide V3.0 LSI MegaRAID Advanced Software Evaluation Guide V3.0 Contents: n Current sightings to be aware of with Evaluation Kits n MegaRAID Controller Cards that support Advanced Software n Optimum Controller Settings

More information

Benchmarking Enterprise SSDs

Benchmarking Enterprise SSDs Whitepaper March 2013 Benchmarking Enterprise SSDs When properly structured, benchmark tests enable IT professionals to compare solid-state drives (SSDs) under test with conventional hard disk drives (HDDs)

More information

NVMFS: A New File System Designed Specifically to Take Advantage of Nonvolatile Memory

NVMFS: A New File System Designed Specifically to Take Advantage of Nonvolatile Memory NVMFS: A New File System Designed Specifically to Take Advantage of Nonvolatile Memory Dhananjoy Das, Sr. Systems Architect SanDisk Corp. 1 Agenda: Applications are KING! Storage landscape (Flash / NVM)

More information

MegaRAID SAS e RAID Controller

MegaRAID SAS e RAID Controller MegaRAID SAS 9286-8e RAID Controller Quick Installation Guide 53823-00, Rev. A 53823-00A Revision History Version and Date 53823-00, Rev. A, Initial release of the document. Description of Changes LSI

More information

Choosing Hardware and Operating Systems for MySQL. Apr 15, 2009 O'Reilly MySQL Conference and Expo Santa Clara,CA by Peter Zaitsev, Percona Inc

Choosing Hardware and Operating Systems for MySQL. Apr 15, 2009 O'Reilly MySQL Conference and Expo Santa Clara,CA by Peter Zaitsev, Percona Inc Choosing Hardware and Operating Systems for MySQL Apr 15, 2009 O'Reilly MySQL Conference and Expo Santa Clara,CA by Peter Zaitsev, Percona Inc -2- We will speak about Choosing Hardware Choosing Operating

More information

stec Host Cache Solution

stec Host Cache Solution White Paper stec Host Cache Solution EnhanceIO SSD Cache Software and the stec s1120 PCIe Accelerator speed decision support system (DSS) workloads and free up disk I/O resources for other applications.

More information

EMC XTREMCACHE ACCELERATES MICROSOFT SQL SERVER

EMC XTREMCACHE ACCELERATES MICROSOFT SQL SERVER White Paper EMC XTREMCACHE ACCELERATES MICROSOFT SQL SERVER EMC XtremSF, EMC XtremCache, EMC VNX, Microsoft SQL Server 2008 XtremCache dramatically improves SQL performance VNX protects data EMC Solutions

More information

Innodb Performance Optimization

Innodb Performance Optimization Innodb Performance Optimization Most important practices Peter Zaitsev CEO Percona Technical Webinars December 20 th, 2017 1 About this Presentation Innodb Architecture and Performance Optimization 3h

More information

Accelerating OLTP performance with NVMe SSDs Veronica Lagrange Changho Choi Vijay Balakrishnan

Accelerating OLTP performance with NVMe SSDs Veronica Lagrange Changho Choi Vijay Balakrishnan Accelerating OLTP performance with NVMe SSDs Veronica Lagrange Changho Choi Vijay Balakrishnan Agenda OLTP status quo Goal System environments Tuning and optimization MySQL Server results Percona Server

More information

QLE10000 Series Adapter Provides Application Benefits Through I/O Caching

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

More information

EMC XTREMCACHE ACCELERATES ORACLE

EMC XTREMCACHE ACCELERATES ORACLE White Paper EMC XTREMCACHE ACCELERATES ORACLE EMC XtremSF, EMC XtremCache, EMC VNX, EMC FAST Suite, Oracle Database 11g XtremCache extends flash to the server FAST Suite automates storage placement in

More information

Nimble Storage for Hadoop, Vertica, Splunk, and MySQL on Linux

Nimble Storage for Hadoop, Vertica, Splunk, and MySQL on Linux Nimble Storage for Hadoop, Vertica, Splunk, and MySQL on Linux Contents Introduction...4 Creating Nimble Volumes for Hadoop, Vertica, Splunk and MySQL...5 Hadoop Recommendations...6 Creating a Nimble Storage

More information

Syncro CS e Controller

Syncro CS e Controller Syncro CS 9286-8e Controller Quick Installation Guide 54127-00, Rev. B 54127-00B Syncro CS 9286-8e RAID Controller Quick Installation Guide Revision History Version and Date Description of Changes 54127-00,

More information

Performance comparisons and trade-offs for various MySQL replication schemes

Performance comparisons and trade-offs for various MySQL replication schemes Performance comparisons and trade-offs for various MySQL replication schemes Darpan Dinker VP Engineering Brian O Krafka, Chief Architect Schooner Information Technology, Inc. http://www.schoonerinfotech.com/

More information

Persistent Memory. High Speed and Low Latency. White Paper M-WP006

Persistent Memory. High Speed and Low Latency. White Paper M-WP006 Persistent Memory High Speed and Low Latency White Paper M-WP6 Corporate Headquarters: 3987 Eureka Dr., Newark, CA 9456, USA Tel: (51) 623-1231 Fax: (51) 623-1434 E-mail: info@smartm.com Customer Service:

More information

Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c

Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c White Paper Deploy a High-Performance Database Solution: Cisco UCS B420 M4 Blade Server with Fusion iomemory PX600 Using Oracle Database 12c What You Will Learn This document demonstrates the benefits

More information

MegaRAID SAS 9285CV-8e RAID Controller. Quick Installation Guide

MegaRAID SAS 9285CV-8e RAID Controller. Quick Installation Guide MegaRAID SAS 9285CV-8e RAID Controller Quick Installation Guide LSI, the LSI & Design logo, MegaRAID, CacheVault, CacheCade, and SafeStore are trademarks or registered trademarks of LSI Corporation or

More information

MySQL Replication Advanced Features In 20 minutes

MySQL Replication Advanced Features In 20 minutes MySQL Replication Advanced Features In 20 minutes Peter Zaitsev, CEO FOSDEM, Brussels, Belgium February 2nd, 2019 1 Question #1 Who in this room is using some kind of MySQL Replication? 2 Question #2 Which

More information

EMC XTREMCACHE ACCELERATES VIRTUALIZED ORACLE

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

More information

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

Improving Ceph Performance while Reducing Costs

Improving Ceph Performance while Reducing Costs Improving Ceph Performance while Reducing Costs Applications and Ecosystem Solutions Development Rick Stehno Santa Clara, CA 1 Flash Application Acceleration Three ways to accelerate application performance

More information

Flash In the Data Center

Flash In the Data Center Flash In the Data Center Enterprise-grade Morgan Littlewood: VP Marketing and BD Violin Memory, Inc. Email: littlewo@violin-memory.com Mobile: +1.650.714.7694 7/12/2009 1 Flash in the Data Center Nothing

More information

Linux Internals For MySQL DBAs. Ryan Lowe Marcos Albe Chris Giard Daniel Nichter Syam Purnam Emily Slocombe Le Peter Boros

Linux Internals For MySQL DBAs. Ryan Lowe Marcos Albe Chris Giard Daniel Nichter Syam Purnam Emily Slocombe Le Peter Boros Linux Internals For MySQL DBAs Ryan Lowe Marcos Albe Chris Giard Daniel Nichter Syam Purnam Emily Slocombe Le Peter Boros Linux Kernel It s big (almost 20 million lines of code) It ll take you YEARS to

More information

ScaleArc Performance Benchmarking with sysbench

ScaleArc Performance Benchmarking with sysbench MySQL Performance Blog ScaleArc Performance Benchmarking with sysbench Peter Boros, 2014 1/31 Author: Peter Boros Revision: 2.0 Date: Mar 28, 2014 Customer: ScaleArc Contents 1 Executive Summary 3 2 About

More information

Samsung Z-SSD SZ985. Ultra-low Latency SSD for Enterprise and Data Centers. Brochure

Samsung Z-SSD SZ985. Ultra-low Latency SSD for Enterprise and Data Centers. Brochure Samsung Z-SSD SZ985 Ultra-low Latency SSD for Enterprise and Data Centers Brochure 1 A high-speed storage device from the SSD technology leader Samsung Z-SSD SZ985 offers more capacity than PRAM-based

More information

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

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

More information

P RO D UC T SEL EC TOR GUID E. Storage Adapters. March 2012

P RO D UC T SEL EC TOR GUID E. Storage Adapters. March 2012 P RO D UC T SEL EC TOR GUID E Storage Adapters March 2012 MegaRAID Solutions MegaRAID Ordering Part No. PKG Host Bus Type Channel/ Ports I/O Processor External Internal Cache Protection Option Memory (MB)

More information

Performance and Scalability with Griddable.io

Performance and Scalability with Griddable.io Performance and Scalability with Griddable.io Executive summary Griddable.io is an industry-leading timeline-consistent synchronized data integration grid across a range of source and target data systems.

More information

MySQL Performance Optimization and Troubleshooting with PMM. Peter Zaitsev, CEO, Percona Percona Technical Webinars 9 May 2018

MySQL Performance Optimization and Troubleshooting with PMM. Peter Zaitsev, CEO, Percona Percona Technical Webinars 9 May 2018 MySQL Performance Optimization and Troubleshooting with PMM Peter Zaitsev, CEO, Percona Percona Technical Webinars 9 May 2018 Few words about Percona Monitoring and Management (PMM) 100% Free, Open Source

More information

The Benefits of Solid State in Enterprise Storage Systems. David Dale, NetApp

The Benefits of Solid State in Enterprise Storage Systems. David Dale, NetApp The Benefits of Solid State in Enterprise Storage Systems David Dale, NetApp SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA unless otherwise noted. Member companies

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

HP ProLiant DL380 Gen8 and HP PCle LE Workload Accelerator 28TB/45TB Data Warehouse Fast Track Reference Architecture

HP ProLiant DL380 Gen8 and HP PCle LE Workload Accelerator 28TB/45TB Data Warehouse Fast Track Reference Architecture HP ProLiant DL380 Gen8 and HP PCle LE Workload Accelerator 28TB/45TB Data Warehouse Fast Track Reference Architecture Based on Microsoft SQL Server 2014 Data Warehouse Fast Track (DWFT) Reference Architecture

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

Setting up Multi-Source Replication in MariaDB 10.0

Setting up Multi-Source Replication in MariaDB 10.0 Setting up Multi-Source Replication in MariaDB 10.0 November 3, 2014 Derek Downey MySQL Principal Consultant Who am I? Web Developer and Sysadmin background MySQL DBA for 10+ years MySQL Principal Consultant

More information

MySQL Performance Optimization and Troubleshooting with PMM. Peter Zaitsev, CEO, Percona

MySQL Performance Optimization and Troubleshooting with PMM. Peter Zaitsev, CEO, Percona MySQL Performance Optimization and Troubleshooting with PMM Peter Zaitsev, CEO, Percona In the Presentation Practical approach to deal with some of the common MySQL Issues 2 Assumptions You re looking

More information

EMC VFCache. Performance. Intelligence. Protection. #VFCache. Copyright 2012 EMC Corporation. All rights reserved.

EMC VFCache. Performance. Intelligence. Protection. #VFCache. Copyright 2012 EMC Corporation. All rights reserved. EMC VFCache Performance. Intelligence. Protection. #VFCache Brian Sorby Director, Business Development EMC Corporation The Performance Gap Xeon E7-4800 CPU Performance Increases 100x Every Decade Pentium

More information

Consolidating OLTP Workloads on Dell PowerEdge R th generation Servers

Consolidating OLTP Workloads on Dell PowerEdge R th generation Servers Consolidating OLTP Workloads on Dell PowerEdge R720 12 th generation Servers B Balamurugan Phani MV Dell Database Solutions Engineering March 2012 This document is for informational purposes only and may

More information

LSI SAS i4e PCI Express to 6Gb/s Serial Attached SCSI (SAS) Host Bus Adapter

LSI SAS i4e PCI Express to 6Gb/s Serial Attached SCSI (SAS) Host Bus Adapter LSI SAS 9207-4i4e PCI Express to 6Gb/s Serial Attached SCSI (SAS) Host Bus Adapter User Guide Version 2.1 DB15-000858-02 Revision History Version and Date Description of Changes Final Version 2.1, Updated

More information

MegaRAID CacheVault Power Module 02

MegaRAID CacheVault Power Module 02 MegaRAID CacheVault Power Module 02 Quick Installation Guide 53377-00, Rev. B Revision History Version and Date Description of Changes 53377-00, Rev. B, Revised the copyright information and Figure 3.

More information

LSI40909G-S PCI to Fibre Channel Host Adapter for Sun Solaris User s Guide, V1.0

LSI40909G-S PCI to Fibre Channel Host Adapter for Sun Solaris User s Guide, V1.0 LSI40909G-S PCI to Fibre Channel Host Adapter for Sun Solaris User s Guide, V1.0 Erratum Erratum Numbers E000708 Product Code LSI40909G-S Revision All Date Code Not applicable Order Number for User s Guide

More information

MySQL Replication. Rick Golba and Stephane Combaudon April 15, 2015

MySQL Replication. Rick Golba and Stephane Combaudon April 15, 2015 MySQL Replication Rick Golba and Stephane Combaudon April 15, 2015 Agenda What is, and what is not, MySQL Replication Replication Use Cases Types of replication Replication lag Replication errors Replication

More information

VERITAS Storage Foundation 4.0 TM for Databases

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

More information

Intel Solid State Drive Data Center Family for PCIe* in Baidu s Data Center Environment

Intel Solid State Drive Data Center Family for PCIe* in Baidu s Data Center Environment Intel Solid State Drive Data Center Family for PCIe* in Baidu s Data Center Environment Case Study Order Number: 334534-002US Ordering Information Contact your local Intel sales representative for ordering

More information

IBM MQ Appliance HA and DR Performance Report Model: M2001 Version 3.0 September 2018

IBM MQ Appliance HA and DR Performance Report Model: M2001 Version 3.0 September 2018 IBM MQ Appliance HA and DR Performance Report Model: M2001 Version 3.0 September 2018 Sam Massey IBM MQ Performance IBM UK Laboratories Hursley Park Winchester Hampshire 1 Notices Please take Note! Before

More information

An Oracle Technical White Paper October Sizing Guide for Single Click Configurations of Oracle s MySQL on Sun Fire x86 Servers

An Oracle Technical White Paper October Sizing Guide for Single Click Configurations of Oracle s MySQL on Sun Fire x86 Servers An Oracle Technical White Paper October 2011 Sizing Guide for Single Click Configurations of Oracle s MySQL on Sun Fire x86 Servers Introduction... 1 Foundation for an Enterprise Infrastructure... 2 Sun

More information

Accelerating Microsoft SQL Server Performance With NVDIMM-N on Dell EMC PowerEdge R740

Accelerating Microsoft SQL Server Performance With NVDIMM-N on Dell EMC PowerEdge R740 Accelerating Microsoft SQL Server Performance With NVDIMM-N on Dell EMC PowerEdge R740 A performance study with NVDIMM-N Dell EMC Engineering September 2017 A Dell EMC document category Revisions Date

More information

Samsung PM1725a NVMe SSD

Samsung PM1725a NVMe SSD Samsung PM1725a NVMe SSD Exceptionally fast speeds and ultra-low latency for enterprise application Brochure 1 Extreme performance from an SSD technology leader Maximize data transfer with the high-performance,

More information

NVMFS Benchmark. Introduction. vmcd.org

NVMFS Benchmark. Introduction. vmcd.org NVMFS Benchmark Introduction Makes MySQL flash-aware and improves latency performance and consistency while increasing storage efficiency of Fusion iomemory PCIe application accelerators Replaces traditional

More information

Enhancing Oracle VM Business Continuity Using Dell Compellent Live Volume

Enhancing Oracle VM Business Continuity Using Dell Compellent Live Volume Enhancing Oracle VM Business Continuity Using Dell Compellent Live Volume Wendy Chen, Roger Lopez, and Josh Raw Dell Product Group February 2013 This document is for informational purposes only and may

More information

IBM MQ Appliance HA and DR Performance Report Version July 2016

IBM MQ Appliance HA and DR Performance Report Version July 2016 IBM MQ Appliance HA and DR Performance Report Version 2. - July 216 Sam Massey IBM MQ Performance IBM UK Laboratories Hursley Park Winchester Hampshire 1 Notices Please take Note! Before using this report,

More information

ZD-XL SQL Accelerator 1.6

ZD-XL SQL Accelerator 1.6 ZD-XL SQL Accelerator 1.6 Integrated Flash Hardware & Software Acceleration Solution for SQL Server Features Supports Microsoft Hyper-V and VMware ESXi environments Accelerates SQL Server at a per database

More information

Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE

Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE Hewlett Packard Enterprise HPE GEN10 PERSISTENT MEMORY PERFORMANCE THROUGH PERSISTENCE Digital transformation is taking place in businesses of all sizes Big Data and Analytics Mobility Internet of Things

More information

FAQs HP Z Turbo Drive Quad Pro

FAQs HP Z Turbo Drive Quad Pro FAQs HP Z Turbo Drive Quad Pro Product performance/implementation What is the HP Z Turbo Drive PCIe SSD? The HP Z Turbo Drive PCIe SSD is the family name for an M.2 PCIe connected SSD. The M.2 PCIe card

More information

HP SmartCache technology

HP SmartCache technology Technical white paper HP SmartCache technology Table of contents Abstract... 2 Introduction... 2 Comparing storage technology performance... 3 What about hybrid drives?... 3 Why caching?... 4 How does

More information

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

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

More information

Removing the I/O Bottleneck in Enterprise Storage

Removing the I/O Bottleneck in Enterprise Storage Removing the I/O Bottleneck in Enterprise Storage WALTER AMSLER, SENIOR DIRECTOR HITACHI DATA SYSTEMS AUGUST 2013 Enterprise Storage Requirements and Characteristics Reengineering for Flash removing I/O

More information

InnoDB Scalability Limits. Peter Zaitsev, Vadim Tkachenko Percona Inc MySQL Users Conference 2008 April 14-17, 2008

InnoDB Scalability Limits. Peter Zaitsev, Vadim Tkachenko Percona Inc MySQL Users Conference 2008 April 14-17, 2008 InnoDB Scalability Limits Peter Zaitsev, Vadim Tkachenko Percona Inc MySQL Users Conference 2008 April 14-17, 2008 -2- Who are the Speakers? Founders of Percona Inc MySQL Performance and Scaling consulting

More information

HP VMA-series Memory Arrays

HP VMA-series Memory Arrays HP VMA-series Memory Arrays Optimize OLTP database applications Presenter title August 2011 2011 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without

More information

The Datacentered Future Greg Huff CTO, LSI Corporation

The Datacentered Future Greg Huff CTO, LSI Corporation The Datacentered Future Greg Huff CTO, LSI Corporation 1 Tremendous Growth in Connected Data Sources, Consumption Devices, and Services 2 Nearly limitless data depth and breadth needed Execution of millions

More information

How to Speed up Database Applications with a Purpose-Built SSD Storage Solution

How to Speed up Database Applications with a Purpose-Built SSD Storage Solution How to Speed up Database Applications with a Purpose-Built SSD Storage Solution SAN Accessible Storage Array Speeds Applications by up to 25x Introduction Whether deployed in manufacturing, finance, web

More information

Virtualization of the MS Exchange Server Environment

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

More information

Extending Datacenter Capacity To Drive ROI

Extending Datacenter Capacity To Drive ROI Extending Datacenter Capacity To Drive ROI Ajay Bhatia Director, Product Marketing Management Aug 6, 2014 Flash Memory Summit 2014 Santa Clara, CA 1 Hyperscale Datacenters & Adoption 2013 Enterprise s

More information

Switching to Innodb from MyISAM. Matt Yonkovit Percona

Switching to Innodb from MyISAM. Matt Yonkovit Percona Switching to Innodb from MyISAM Matt Yonkovit Percona -2- DIAMOND SPONSORSHIPS THANK YOU TO OUR DIAMOND SPONSORS www.percona.com -3- Who We Are Who I am Matt Yonkovit Principal Architect Veteran of MySQL/SUN/Percona

More information

Reduce Costs & Increase Oracle Database OLTP Workload Service Levels:

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

More information

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

Session 201-B: Accelerating Enterprise Applications with Flash Memory

Session 201-B: Accelerating Enterprise Applications with Flash Memory Session 201-B: Accelerating Enterprise Applications with Flash Memory Rob Larsen Director, Enterprise SSD Micron Technology relarsen@micron.com August 2014 1 Agenda Target applications Addressing needs

More information

Reduce Latency and Increase Application Performance Up to 44x with Adaptec maxcache 3.0 SSD Read and Write Caching Solutions

Reduce Latency and Increase Application Performance Up to 44x with Adaptec maxcache 3.0 SSD Read and Write Caching Solutions Reduce Latency and Increase Application Performance Up to 44x with Adaptec maxcache 3. SSD Read and Write Caching Solutions Executive Summary Today s data centers and cloud computing environments require

More information

How Flash-Based Storage Performs on Real Applications Session 102-C

How Flash-Based Storage Performs on Real Applications Session 102-C How Flash-Based Storage Performs on Real Applications Session 102-C Dennis Martin, President August 2016 1 Agenda About Demartek Enterprise Datacenter Environments Storage Performance Metrics Synthetic

More information

Improving Performance using the LINUX IO Scheduler Shaun de Witt STFC ISGC2016

Improving Performance using the LINUX IO Scheduler Shaun de Witt STFC ISGC2016 Improving Performance using the LINUX IO Scheduler Shaun de Witt STFC ISGC2016 Role of the Scheduler Optimise Access to Storage CPU operations have a few processor cycles (each cycle is < 1ns) Seek operations

More information

2 to 4 Intel Xeon Processor E v3 Family CPUs. Up to 12 SFF Disk Drives for Appliance Model. Up to 6 TB of Main Memory (with GB LRDIMMs)

2 to 4 Intel Xeon Processor E v3 Family CPUs. Up to 12 SFF Disk Drives for Appliance Model. Up to 6 TB of Main Memory (with GB LRDIMMs) Based on Cisco UCS C460 M4 Rack Servers Solution Brief May 2015 With Intelligent Intel Xeon Processors Highlights Integrate with Your Existing Data Center Our SAP HANA appliances help you get up and running

More information

Optimizing Server Flash with Intelligent Caching (Enterprise Storage Track)

Optimizing Server Flash with Intelligent Caching (Enterprise Storage Track) Optimizing Server Flash with Intelligent Caching (Enterprise Storage Track) Mohit Bhatnagar Sr. Director Flash Products and Solutions Santa Clara, CA 1 Definition of Intelligent Source: Dictionary.com

More information

Oracle Platform Performance Baseline Oracle 12c on Hitachi VSP G1000. Benchmark Report December 2014

Oracle Platform Performance Baseline Oracle 12c on Hitachi VSP G1000. Benchmark Report December 2014 Oracle Platform Performance Baseline Oracle 12c on Hitachi VSP G1000 Benchmark Report December 2014 Contents 1 System Configuration 2 Introduction into Oracle Platform Performance Tests 3 Storage Benchmark

More information

MegaRAID CacheVault Flash Module 02

MegaRAID CacheVault Flash Module 02 MegaRAID CacheVault Flash Module 02 Quick Installation Guide 53378-00, Rev. B MegaRAID CacheVault Flash Module CVFM02 Quick Installation Guide Revision History Version and Date Description of Changes 53378-00,

More information

The Server-Storage Performance Gap

The Server-Storage Performance Gap The Server-Storage Performance Gap How disk drive throughput and access time affect performance November 2010 2 Introduction In enterprise storage configurations and data centers, hard disk drives serve

More information

Non-Volatile Memory Cache Enhancements: Turbo-Charging Client Platform Performance

Non-Volatile Memory Cache Enhancements: Turbo-Charging Client Platform Performance Non-Volatile Memory Cache Enhancements: Turbo-Charging Client Platform Performance By Robert E Larsen NVM Cache Product Line Manager Intel Corporation August 2008 1 Legal Disclaimer INFORMATION IN THIS

More information

IBM High IOPS SSD PCIe Adapters IBM System x at-a-glance guide

IBM High IOPS SSD PCIe Adapters IBM System x at-a-glance guide IBM High IOPS SSD PCIe Adapters IBM System x at-a-glance guide The IBM High IOPS SSD PCIe Adapters provide a new generation of ultra-high-performance storage based on solid state device technology for

More information

Store Process Analyze Collaborate Archive Cloud The HPC Storage Leader Invent Discover Compete

Store Process Analyze Collaborate Archive Cloud The HPC Storage Leader Invent Discover Compete Store Process Analyze Collaborate Archive Cloud The HPC Storage Leader Invent Discover Compete 1 DDN Who We Are 2 We Design, Deploy and Optimize Storage Systems Which Solve HPC, Big Data and Cloud Business

More information

MySQL High Availability. Michael Messina Senior Managing Consultant, Rolta-AdvizeX /

MySQL High Availability. Michael Messina Senior Managing Consultant, Rolta-AdvizeX / MySQL High Availability Michael Messina Senior Managing Consultant, Rolta-AdvizeX mmessina@advizex.com / mike.messina@rolta.com Introduction Michael Messina Senior Managing Consultant Rolta-AdvizeX, Working

More information

MySQL Performance Tuning 101

MySQL Performance Tuning 101 MySQL Performance Tuning 101 Hands-on-Lab Mirko Ortensi Senior Support Engineer MySQL Support @ Oracle October 3, 2017 Copyright 2017, Oracle and/or its affiliates. All rights reserved. Safe Harbor Statement

More information

Pivot3 Acuity with Microsoft SQL Server Reference Architecture

Pivot3 Acuity with Microsoft SQL Server Reference Architecture Pivot3 Acuity with Microsoft SQL Server 2014 Reference Architecture How to Contact Pivot3 Pivot3, Inc. General Information: info@pivot3.com 221 West 6 th St., Suite 750 Sales: sales@pivot3.com Austin,

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

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

Accelerating storage performance in the PowerEdge FX2 converged architecture modular chassis

Accelerating storage performance in the PowerEdge FX2 converged architecture modular chassis Accelerating storage performance in the PowerEdge FX2 converged architecture modular chassis This white paper highlights the impressive storage performance of the PowerEdge FD332 storage node in the FX2

More information

REQUEST FOR PROPOSAL FOR PROCUREMENT OF

REQUEST FOR PROPOSAL FOR PROCUREMENT OF REQUEST FOR PROPOSAL FOR PROCUREMENT OF Upgrade of department RFP No.: SBI/GITC/ATM/2018-19/481 : 18/05/2018 Corrigendum II dated 30/05/2018 to Ref: SBI/GITC/ATM/2018-19/481 : 18/05/2018 State Bank of

More information

Understanding the Performance Benefits of MegaRAID FastPath with Lenovo Servers

Understanding the Performance Benefits of MegaRAID FastPath with Lenovo Servers Front cover Understanding the Performance Benefits of MegaRAID FastPath with Lenovo Servers Introduces the SSD Performance Accelerator for Lenovo servers Describes the performance gains from using MegaRAID

More information

Benefits of Automatic Data Tiering in OLTP Database Environments with Dell EqualLogic Hybrid Arrays

Benefits of Automatic Data Tiering in OLTP Database Environments with Dell EqualLogic Hybrid Arrays TECHNICAL REPORT: Performance Study Benefits of Automatic Data Tiering in OLTP Database Environments with Dell EqualLogic Hybrid Arrays ABSTRACT The Dell EqualLogic hybrid arrays PS6010XVS and PS6000XVS

More information

Lightspeed. Solid. Impressive. Nytro 3000 SAS SSD

Lightspeed. Solid. Impressive. Nytro 3000 SAS SSD DATA SHEET Lightspeed. Solid. Impressive. Nytro 3000 SAS SSD The Seagate Nytro 3000 SAS SSD family includes the next generation of high-capacity, high-performance SAS SSDs designed with multiple endurance

More information

Notes & Lessons Learned from a Field Engineer. Robert M. Smith, Microsoft

Notes & Lessons Learned from a Field Engineer. Robert M. Smith, Microsoft Notes & Lessons Learned from a Field Engineer Robert M. Smith, Microsoft SNIA Legal Notice The material contained in this tutorial is copyrighted by the SNIA. Member companies and individual members may

More information

Identifying Performance Bottlenecks with Real- World Applications and Flash-Based Storage

Identifying Performance Bottlenecks with Real- World Applications and Flash-Based Storage Identifying Performance Bottlenecks with Real- World Applications and Flash-Based Storage TechTarget Dennis Martin 1 Agenda About Demartek Enterprise Data Center Environments Storage Performance Metrics

More information

White Paper. Extending NetApp Deployments with stec Solid-State Drives and Caching

White Paper. Extending NetApp Deployments with stec Solid-State Drives and Caching White Paper Extending NetApp Deployments with stec Solid-State Drives and Caching Contents Introduction Can Your Storage Throughput Scale to Meet Business Demands? Maximize Existing NetApp Storage Investments

More information

Interface Trends for the Enterprise I/O Highway

Interface Trends for the Enterprise I/O Highway Interface Trends for the Enterprise I/O Highway Mitchell Abbey Product Line Manager Enterprise SSD August 2012 1 Enterprise SSD Market Update One Size Does Not Fit All : Storage solutions will be tiered

More information

Oracle Exadata: Strategy and Roadmap

Oracle Exadata: Strategy and Roadmap Oracle Exadata: Strategy and Roadmap - New Technologies, Cloud, and On-Premises Juan Loaiza Senior Vice President, Database Systems Technologies, Oracle Safe Harbor Statement The following is intended

More information

Dell PowerEdge R730xd Servers with Samsung SM1715 NVMe Drives Powers the Aerospike Fraud Prevention Benchmark

Dell PowerEdge R730xd Servers with Samsung SM1715 NVMe Drives Powers the Aerospike Fraud Prevention Benchmark Dell PowerEdge R730xd Servers with Samsung SM1715 NVMe Drives Powers the Aerospike Fraud Prevention Benchmark Testing validation report prepared under contract with Dell Introduction As innovation drives

More information

HP visoko-performantna OLTP rješenja

HP visoko-performantna OLTP rješenja HP visoko-performantna OLTP rješenja Tomislav Alpeza Presales Consultant, BCS/SD 2011 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Performance

More information

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

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

More information