SlideShare a Scribd company logo
Tuning Storage
Subsystem for
Databases
Angelo Rajadurai
Agenda

Performance issues in Storage
Hybrid Storage (Disks, SSDs, Memory)
ZFS - Not Just Another File System
Tuning for databases (General principles)
Tuning for MySQL
Tuning for PostgreSQL
Tuning for Oracle
Why?
• Some very practical advice based on
  > recent test results
     > Improved pgbench results from 70 tps for pure disk to 5003 tps with
       SSD and tuning
     > Improved sysbench results from 425 tps to 1811 tps with SSD and
       tuning for read/write.
     > Improved sysbench results from 786 tps to 3085 tps with SSD and
       tuning for read.
  > collection of tuning knowledge from Sun performance
    engineers and the community
• Some very good resources at the end of the talk for
  further study
Storage Performance

                                                                    Cache

                                                              Memory




                                             0,0 00 X       t ial
                                          10              en
                                                      fer
                                               e  dif
                                            nc
                           Disk         rma
                   High   Cache
                                   e rfo
            Performance Disks     P

  Large Capacity
      Disks
Latency Comparison
Bridging the DRAM to HDD Gap




     1S

  100mS

    10m
      S
    1mS

   100uS

    10uS                                      TAPE

      1u                                HDD
       S
   100nS                       FLASH/
                                SSD
    10nS
                   DRAM
      1n
       S   CPU
Storage Technology
                Price, Performance & Capacity


                Capacity     Latency             Cost/IOPS    Cost/GB
Technologies                            IOPs
                 (GB)       (microS)                ($)         ($)

   Cloud
  Storage
                Unlimited   60,000       20       17c/GB     0.15/month

 Capacity
  HDDs           2,500      12,000      250        1.67         0.15

Performance
   HDDs           300        7,000      500        1.52         1.30

   SSDs
  (write)          64         300       5000       0.20          13

    SSDs
 (read only)       64         45       30,000      0.03          13

  DRAM             8         0.005     500,000    0.001         52
Incorporating Flash
     Storage Hierarchy
Hybrid Storage
                 Flash as Cache


                   Application


         DRAM
       Level 1 Cache




                                                  Write
Read




                                    Flash
                                 Write side Log
         Flash
       Level 2 Cache




              Disk Primary Storage
ZFS - Last Word in Filesystem
     Pooled Storage Vs Traditional Volumes
Data Management Unit
  Smarts Built Right Into the Filesystem
Administering ZFS in two slides
                            As easy as pie


• zpool commands
 > create a single disk pool:
        # zpool create newpool diskname
 > create a pool with a mirror
        # zpool create newpool mirror disk1name disk2name
 > Add device to a pool:
        # zpool add poolname diskname
 > Replace a bad disk
        # zpool replace poolname baddiskname newdiskname
 > History of commands on the pool:
        # zpool history poolname
 > How is my pool performing:
        # zpool iostat poolname
 No format command, No fdisk partitions, No volumes
Administering ZFS in two slides
                            As easy as pie


• zfs commands
 > create a filesystem:
          # zfs create poolname/fs-name
 > set filesystem property:
          # zfs set quota=size poolname/fs-name
          # zfs set compression=on poolname/fs-name
          # zfs set nfsshare=on poolname/fs-name
          # zfs set recordsize=16k poolname/fs-name
 > get filesystem property:
          # zfs get compressratio poolname/fs-name
          # zfs get all poolname/fs-name
 > snapshot the filesystem:
          # zfs snapshot poolname/fs-name@snapshotname
 No newfs, No mkfs, No /etc/vfstab, No fsck
ZFS and Hybrid Storage
                          As easy as pie


• Read side
  > Add ssd as a read side cache
  > # zpool add poolname cache ssd-device
• Write side
  > Add SSD as a ZFS Intent Log device
  > # zpool add poolname log ssd-device
ZFS Performance Features
• Copy-on-write
  > Turns Random writes to Sequential writes
• Dynamic Striping across all devices
  > Maximize throughput
• Multiple Block Sizes
  > Automatically chosen to match workload
• IO Pipelining
  > Priority/Deadline scheduling, sorting, aggregation
• Intelligent prefetch
• Compression - Improves performance & Capacity
• Can safely use write cache on disks
Databases
                      Not Just Another Application
• Most Databases do their own buffering
  > Filesystem caching can get in the way
  > “double buffer” problem
• Most Databases do “prefetch”
  > Filesystems prefetch can cause extra IO
  > “directio” gets filesystem out of the way
• Have their own “log” mechanism.
  > Interesting interaction with a transaction based filesystem
• Multiple blocks sizes
  > Database & Transaction log, block sizes are normally different
Tuning ZFS for Databases
                        Tuning is Evil - Long live Tuning


• In general tuning is evil. Let ZFS do it for you.
• A few fine tuning tips for databases
  > Get to the latest update of OS
  > Set the recordsize to match database
      block size
  >   Separate Transaction logs and data
      onto separate zpools
  >   [Note: This will be addressed with the ZIL bypass property fix]
  >   Reduce the impact of double buffering by changing the caching
      method to “metadata only”
  >   Use separate ZIL (ZFS Intent Log) preferably SSD
  >   Use SSD as secondary cache - L2ARC (Level 2. Adaptive
      Replacement Cache)
ZFS tuning for MySQL
• Many tuning depends on storage engine
• For Innodb
  > Prefer to cache in Innodb rather than ARC
     zfs set primarycache=metadata poolname/database
  > Set recordsize to 16k for data and 128k for log
     zfs set recordsize=16k poolname/database
     (Note: do this before you load any data)
  > Turn off prefetch
     set zfs:zfs_prefetch_disable = 1 (in /etc/system)
     (File level prefetch not triggered if you change record size to 16k)
  > Use raid0 or mirror over raidz
     raidz is no suitable for random IO
  > Add SSDs for either read side or write side based on workload
     zpool add datapool cache ssd-disk
     zpool create logpool ssd-disk3
        In my.cnf set innodb_data_home_dir & innodb_log_group_home_dir
ZFS tuning for MySQL

• More tuning for Innodb
  > Some device vendors flush cache even
    when not needed. (eg. battery backed cache)
    set zfs:zfs_nocacheflush = 1
  > Turn on compression
    zfs set compression=on poolname/database
     ZFS does not turn on compression if less than 12.5% saving.
     IO reduction may offset the extra cpu cost
  > Disable double writes
    innodb_doublewrite=0 (in my.cnf)
    ZFS does not allow any partial writes so no need to guard against it.
ZFS tuning for PostgreSQL

• Postgres tuning hints
  > Set recordsize to 8k
     zfs set recordsize=8k poolname/database
  > Turn down ARC cache.
     set zfs:zfs_arc_max in /etc/system
  > Add SSDs for either read side or write side based on workload
     zpool add poolname cache ssd-name
     zpool add poolname log ssd-name
  > Use separate pool for log (preferably one with SSD) & data
     initdb -X log_directory_name
     create tablespace datatbs location 'database_directory_name'
     create database mydb with  tablespace datatbs
  > Don’t forget to basic Postgres tuning on Solaris - (huge gains)
     Set shared_buffers, temp_buffers, work_mem, maintenance_work_mem,
     wal_sync_method, synchronous_commits etc
      see: http://blogs.sun.com/jkshah/entry/best_practices_with_postgresql_8
ZFS tuning for Oracle

• Oracle tuning hints
  > Set recordsize to match db_block_size (default 8k)
     zfs set recordsize=8k poolname/database
  > Use separate pool for Oracle logs
     make sure record size of the log filesystem is left to the 128k default
  > Add SSDs for either read side or write side based on workload
     zpool add poolname cache ssd-name
     zpool add poolname log ssd-name
Benchmark results

• Hardware
  > Sun x4150 2 x Quad core 2.3 GHz Xeon
     12 GB ram
      3 x 10000 rpm drives
      3 x 32 GB SSDs
• Software
  > OpenSolaris 2009.06
  > Postgres 8.3.7
  > MySQL 5.4 beta
Benchmark results

• pgbench & Postgres
  > command line: pgbench -c 10 -s 10 -t 10000 pgbench
                Description              TPS
 Single disk ZFS                          72 tps
 2 Raid 0 disk + SSD as level 2 cache    241 tps
 Above + general postgres optimization   2026 tps
 + all the data on SSD                   2603 tps
 + data on hdd & log on SSD              4372 tps
 + primarycache=metadata                 5003 tps
Benchmark results

• sysbench & mysql 5.4
  > read/write test: sysbench --max-time=300 --max-requests=0 --test=oltp --
     oltp-dist-type=special --oltp-table-size=10000000 --num-threads=20 run


                 Description                        TPS
 Single disk ZFS                                    425 tps
 raid0 ZFS                                          670 tps
   + SSD cache                                      788 tps
   + Separate intent log                            1352 tps
   + With optimization                              1809 tps
Benchmark results

• sysbench & mysql 5.4
  > read test: sysbench --max-time=300 --max-requests=0 --test=oltp --oltp-
     dist-type=special --oltp-table-size=10000000 --num-threads=20 --oltp-read-
     only=on run

                  Description                         TPS
  Single disk ZFS                                     786 tps
  2 disk raid0 ZFS                                   1501 tps
    + SSD cache                                      1981 tps
    + Separate intent log on SSD                     2567 tps
    + optimization                                   3065 tps
!"#$!%&'()*$'&(+,(-$.//012.$


Sun Unified Storage
                        *#%'345*6*5$!%(#+(5&#*
         :$;<$=*='&-$>$?@A9BB;<$!6!$1)CDC

                                               78)74+*#!8%3$!9(5(:5*
                      E($+'$F@;<$=*='&-G$142A?H<$!6H6$1)CDC
                           E($+'$IA?:$;< write-optimized SSDs
                                                                        *#%'345*6*5$95"!%*'49(-(:5*
                                                         E($+'$F@;<$=*='&-G$ZFA?H<$!6H6$1)CDC
                                                        E($+'$FA?BB;<$&*,1.?FA?:;<$J&)+*$!!5C
                                                                  6K+)L*M6K+)L*$/2"C+*&)#N$0'&$O.6
                                                                                                                   !9(5(:5*$95"!%*'49(-(:5*
          !%(#+('+$@*(%"'*!$>(55$,&+*5!?
  622$5,+,$%&'+'K'2C$,#1$5,+,$!*&L)K*C$V#K2"1*1                                                     E($+'$?I:;<$=*='&-G$I::A?H<$!6H6$1)CDC
S6#,2-+)KCG$!#,(CR'+CG$7*(2)K,+)'#G$/'=(&*CC)'#G$4U!G$/VU!G$)!/!VWT                                  E($+'$FA?BB;<$&*,1.?FA?:;<$J&)+*$!!5C
           <")2+M)#$@A?$;P$Q+R*&#*+$('&+C                                                                      6K+)L*M6K+)L*$/2"C+*&)#N$0'&$O.6
         7*='+*$/'#C'2*$S!*&),2$'&$Q+R*&#*+T
              X)NR+CM'"+$Y,#,N*=*#+

                                          &-%8&#(5$#*%;&'<8#)$=$9&##*9%868%3$>(55$,&+*5!?
                                                      IA?B$;P$Q+R*&#*+$S'(+)K,2T
                                           @A?$;P$Q+R*&#*+$SK'((*&T$>$IA?;P$Q+R*&#*+$S'(+)K,2T
                                                   U/$'&$!/!V$O<6$0'&$+,(*$P,KD"(


                                                         !"#$ %&'(&)*+,&-./'#0)1*#+),23$ 456$ 7*8")&*1                                            9
Getting these systems at a discount
Sun Startup Essentials
                         •   Exclusive program for startups
                         •   Eligibility <6 yrs. Old, <150
 sun.com/startup             employees
                         •   Co-marketing opportunities
                         •   Funding assistance
                         •   Deeply discounted storage and
                             servers certified for Linux,
                             Windows, and Solaris
                         •   Hosting starting at $40
                         •   Open source software, and
                             discounted MySQL
                         •   Free email based tech support
                         •   Free and discounted training on
                             Sun technologies
                         •   Member-only webinars
Resources
• ZFS info: http://www.opensolaris.org/os/community/zfs/
• ZFS Best Practices Guide:
  http://www.solarisinternals.com/wiki/index.php/ZFS_Best_Practices_Guide
• ZFS Evil Tuning Guide:
  http://www.solarisinternals.com/wiki/index.php/ZFS_Evil_Tuning_Guide
• Blogs of note:
   > All things performance tuning:
     http://blogs.sun.com/realneel
     http://blogs.sun.com/roch
   > Postgres tuning - Jignesh’s Blog
     http://blogs.sun.com/jkshah
   > Angelo’s blog
     http://blogs.sun.com/angelo
Tuning Storage
Subsystem for
Databases
Angelo Rajadurai
angelo@sun.com
http://blogs.sun.com/angelo
twitter: rajadurai

More Related Content

What's hot (20)

PPT
JetStor 8 series 16G FC 12G SAS units
Gene Leyzarovich
 
PPTX
Ceph Day KL - Ceph on All-Flash Storage
Ceph Community
 
PDF
Disrupt the Storage & Memory Hierarchy
Intel® Software
 
PDF
Ceph Day Beijing - Ceph RDMA Update
Danielle Womboldt
 
PPTX
ZFS for Databases
ahl0003
 
PPTX
openSUSE storage workshop 2016
Alex Lau
 
PDF
Ceph Day Beijing - Ceph All-Flash Array Design Based on NUMA Architecture
Danielle Womboldt
 
PPT
JetStor X Storage Products 2017! New HOT products!
Gene Leyzarovich
 
PDF
NoSQL атакует: JSON функции в MySQL сервере.
Sveta Smirnova
 
PPTX
Bluestore
Patrick McGarry
 
PPTX
Build an affordable Cloud Stroage
Alex Lau
 
PPTX
Ceph Day KL - Delivering cost-effective, high performance Ceph cluster
Ceph Community
 
PPT
Raid designs in Qsan Storage
qsantechnology
 
PDF
ZFS Workshop
APNIC
 
PDF
ZFS Talk Part 1
Steven Burgess
 
PDF
Linux performance tuning & stabilization tips (mysqlconf2010)
Yoshinori Matsunobu
 
PDF
More mastering the art of indexing
Yoshinori Matsunobu
 
PPTX
Introduction to TrioNAS LX U300
qsantechnology
 
PPTX
SUSE Enterprise Storage on ThunderX
Alex Lau
 
PPTX
了解Cpu
Feng Yu
 
JetStor 8 series 16G FC 12G SAS units
Gene Leyzarovich
 
Ceph Day KL - Ceph on All-Flash Storage
Ceph Community
 
Disrupt the Storage & Memory Hierarchy
Intel® Software
 
Ceph Day Beijing - Ceph RDMA Update
Danielle Womboldt
 
ZFS for Databases
ahl0003
 
openSUSE storage workshop 2016
Alex Lau
 
Ceph Day Beijing - Ceph All-Flash Array Design Based on NUMA Architecture
Danielle Womboldt
 
JetStor X Storage Products 2017! New HOT products!
Gene Leyzarovich
 
NoSQL атакует: JSON функции в MySQL сервере.
Sveta Smirnova
 
Bluestore
Patrick McGarry
 
Build an affordable Cloud Stroage
Alex Lau
 
Ceph Day KL - Delivering cost-effective, high performance Ceph cluster
Ceph Community
 
Raid designs in Qsan Storage
qsantechnology
 
ZFS Workshop
APNIC
 
ZFS Talk Part 1
Steven Burgess
 
Linux performance tuning & stabilization tips (mysqlconf2010)
Yoshinori Matsunobu
 
More mastering the art of indexing
Yoshinori Matsunobu
 
Introduction to TrioNAS LX U300
qsantechnology
 
SUSE Enterprise Storage on ThunderX
Alex Lau
 
了解Cpu
Feng Yu
 

Viewers also liked (20)

PDF
SSD: Ready for Enterprise and Cloud?
IMEX Research
 
PDF
eBook: Commercial vs Industrial SSD Storage - Advantech
Advantech Europe E-IOT Business Group
 
PDF
2013 SSD Adoption Trends
IT Brand Pulse
 
PPTX
Innodisk at aditech customer meet 2015
Vilas Fulsundar
 
PDF
Xenadrine Review
soifhkr589
 
PPTX
Fleetmanagement 27 mei
KPN IoT
 
PDF
The Wealth Report 2016
Alastair Nicholson
 
PPTX
Nand flasheco swb
Sam Beal
 
PPT
Presentación redes sociales
TIC Hoteles
 
PDF
Wie Visualisierungen uns die Augen Öffnen OOP 2016
Olaf Lewitz
 
PPT
CCIM Review: 2013 Industrial Market Overview
southpace
 
PDF
Ficha de aportaciones de contenido tpc (3.0)
Nacho Jáuregui
 
PDF
Casa Brasil - Revista Eletrônica
salaodesign
 
PDF
Viaje centro-tierra
tiboneitor
 
PDF
My sql ssd-mysqluc-2012
james tong
 
PPSX
Lesson4 Protect and maintain databases
Abdullatif Tarakji
 
PPSX
Lesson11 Create Query
Abdullatif Tarakji
 
PDF
Trabalho fitos digitais
Guilherme Matias de Medeiros
 
PPTX
التحدى 6 الإستعلام بطريقة المعالج
bosy sadek
 
PPSX
Lesson8 Manage Records
Abdullatif Tarakji
 
SSD: Ready for Enterprise and Cloud?
IMEX Research
 
eBook: Commercial vs Industrial SSD Storage - Advantech
Advantech Europe E-IOT Business Group
 
2013 SSD Adoption Trends
IT Brand Pulse
 
Innodisk at aditech customer meet 2015
Vilas Fulsundar
 
Xenadrine Review
soifhkr589
 
Fleetmanagement 27 mei
KPN IoT
 
The Wealth Report 2016
Alastair Nicholson
 
Nand flasheco swb
Sam Beal
 
Presentación redes sociales
TIC Hoteles
 
Wie Visualisierungen uns die Augen Öffnen OOP 2016
Olaf Lewitz
 
CCIM Review: 2013 Industrial Market Overview
southpace
 
Ficha de aportaciones de contenido tpc (3.0)
Nacho Jáuregui
 
Casa Brasil - Revista Eletrônica
salaodesign
 
Viaje centro-tierra
tiboneitor
 
My sql ssd-mysqluc-2012
james tong
 
Lesson4 Protect and maintain databases
Abdullatif Tarakji
 
Lesson11 Create Query
Abdullatif Tarakji
 
Trabalho fitos digitais
Guilherme Matias de Medeiros
 
التحدى 6 الإستعلام بطريقة المعالج
bosy sadek
 
Lesson8 Manage Records
Abdullatif Tarakji
 
Ad

Similar to Database performance tuning for SSD based storage (20)

PPTX
Deploying ssd in the data center 2014
Howard Marks
 
PDF
Database & Technology 1 _ Guy Harrison _ Making the most of SSD in Oracle11g.pdf
InSync2011
 
PDF
Application acceleration from the data storage perspective
Interop
 
PDF
Dumb Simple PostgreSQL Performance (NYCPUG)
Joshua Drake
 
PDF
Arc Storage Intro Pdf
arcstorage
 
PDF
OSS Presentation by Kevin Halgren
OpenStorageSummit
 
PDF
CLFS 2010
bergwolf
 
PDF
Using Storage Class Memory
PerconaPerformance
 
PDF
"The Open Source effect in the Storage world" by George Mitropoulos @ eLibera...
eLiberatica
 
ODP
Apache con 2013-hadoop
Steve Watt
 
ODP
Exploiting Your File System to Build Robust & Efficient Workflows
jasonajohnson
 
DOCX
What is the average rotational latency of this disk drive What seek.docx
ajoy21
 
PDF
5 Steps to PostgreSQL Performance
Command Prompt., Inc
 
PDF
Five steps perform_2009 (1)
PostgreSQL Experts, Inc.
 
PDF
Faster Than A Speeding Disk
Andrey Klyachkin
 
PPTX
2015 deploying flash in the data center
Howard Marks
 
PPTX
2015 deploying flash in the data center
Howard Marks
 
PDF
Practical experiences and best practices for SSD and IBM i
COMMON Europe
 
PPT
Ssd And Enteprise Storage
Frank Zhao
 
PDF
Overview and current topics in solid state storage
Interop
 
Deploying ssd in the data center 2014
Howard Marks
 
Database & Technology 1 _ Guy Harrison _ Making the most of SSD in Oracle11g.pdf
InSync2011
 
Application acceleration from the data storage perspective
Interop
 
Dumb Simple PostgreSQL Performance (NYCPUG)
Joshua Drake
 
Arc Storage Intro Pdf
arcstorage
 
OSS Presentation by Kevin Halgren
OpenStorageSummit
 
CLFS 2010
bergwolf
 
Using Storage Class Memory
PerconaPerformance
 
"The Open Source effect in the Storage world" by George Mitropoulos @ eLibera...
eLiberatica
 
Apache con 2013-hadoop
Steve Watt
 
Exploiting Your File System to Build Robust & Efficient Workflows
jasonajohnson
 
What is the average rotational latency of this disk drive What seek.docx
ajoy21
 
5 Steps to PostgreSQL Performance
Command Prompt., Inc
 
Five steps perform_2009 (1)
PostgreSQL Experts, Inc.
 
Faster Than A Speeding Disk
Andrey Klyachkin
 
2015 deploying flash in the data center
Howard Marks
 
2015 deploying flash in the data center
Howard Marks
 
Practical experiences and best practices for SSD and IBM i
COMMON Europe
 
Ssd And Enteprise Storage
Frank Zhao
 
Overview and current topics in solid state storage
Interop
 
Ad

Recently uploaded (20)

PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
PDF
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
AI Agents in the Cloud: The Rise of Agentic Cloud Architecture
Lilly Gracia
 
SIZING YOUR AIR CONDITIONER---A PRACTICAL GUIDE.pdf
Muhammad Rizwan Akram
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 

Database performance tuning for SSD based storage

  • 2. Agenda Performance issues in Storage Hybrid Storage (Disks, SSDs, Memory) ZFS - Not Just Another File System Tuning for databases (General principles) Tuning for MySQL Tuning for PostgreSQL Tuning for Oracle
  • 3. Why? • Some very practical advice based on > recent test results > Improved pgbench results from 70 tps for pure disk to 5003 tps with SSD and tuning > Improved sysbench results from 425 tps to 1811 tps with SSD and tuning for read/write. > Improved sysbench results from 786 tps to 3085 tps with SSD and tuning for read. > collection of tuning knowledge from Sun performance engineers and the community • Some very good resources at the end of the talk for further study
  • 4. Storage Performance Cache Memory 0,0 00 X t ial 10 en fer e dif nc Disk rma High Cache e rfo Performance Disks P Large Capacity Disks
  • 5. Latency Comparison Bridging the DRAM to HDD Gap 1S 100mS 10m S 1mS 100uS 10uS TAPE 1u HDD S 100nS FLASH/ SSD 10nS DRAM 1n S CPU
  • 6. Storage Technology Price, Performance & Capacity Capacity Latency Cost/IOPS Cost/GB Technologies IOPs (GB) (microS) ($) ($) Cloud Storage Unlimited 60,000 20 17c/GB 0.15/month Capacity HDDs 2,500 12,000 250 1.67 0.15 Performance HDDs 300 7,000 500 1.52 1.30 SSDs (write) 64 300 5000 0.20 13 SSDs (read only) 64 45 30,000 0.03 13 DRAM 8 0.005 500,000 0.001 52
  • 7. Incorporating Flash Storage Hierarchy
  • 8. Hybrid Storage Flash as Cache Application DRAM Level 1 Cache Write Read Flash Write side Log Flash Level 2 Cache Disk Primary Storage
  • 9. ZFS - Last Word in Filesystem Pooled Storage Vs Traditional Volumes
  • 10. Data Management Unit Smarts Built Right Into the Filesystem
  • 11. Administering ZFS in two slides As easy as pie • zpool commands > create a single disk pool: # zpool create newpool diskname > create a pool with a mirror # zpool create newpool mirror disk1name disk2name > Add device to a pool: # zpool add poolname diskname > Replace a bad disk # zpool replace poolname baddiskname newdiskname > History of commands on the pool: # zpool history poolname > How is my pool performing: # zpool iostat poolname No format command, No fdisk partitions, No volumes
  • 12. Administering ZFS in two slides As easy as pie • zfs commands > create a filesystem: # zfs create poolname/fs-name > set filesystem property: # zfs set quota=size poolname/fs-name # zfs set compression=on poolname/fs-name # zfs set nfsshare=on poolname/fs-name # zfs set recordsize=16k poolname/fs-name > get filesystem property: # zfs get compressratio poolname/fs-name # zfs get all poolname/fs-name > snapshot the filesystem: # zfs snapshot poolname/fs-name@snapshotname No newfs, No mkfs, No /etc/vfstab, No fsck
  • 13. ZFS and Hybrid Storage As easy as pie • Read side > Add ssd as a read side cache > # zpool add poolname cache ssd-device • Write side > Add SSD as a ZFS Intent Log device > # zpool add poolname log ssd-device
  • 14. ZFS Performance Features • Copy-on-write > Turns Random writes to Sequential writes • Dynamic Striping across all devices > Maximize throughput • Multiple Block Sizes > Automatically chosen to match workload • IO Pipelining > Priority/Deadline scheduling, sorting, aggregation • Intelligent prefetch • Compression - Improves performance & Capacity • Can safely use write cache on disks
  • 15. Databases Not Just Another Application • Most Databases do their own buffering > Filesystem caching can get in the way > “double buffer” problem • Most Databases do “prefetch” > Filesystems prefetch can cause extra IO > “directio” gets filesystem out of the way • Have their own “log” mechanism. > Interesting interaction with a transaction based filesystem • Multiple blocks sizes > Database & Transaction log, block sizes are normally different
  • 16. Tuning ZFS for Databases Tuning is Evil - Long live Tuning • In general tuning is evil. Let ZFS do it for you. • A few fine tuning tips for databases > Get to the latest update of OS > Set the recordsize to match database block size > Separate Transaction logs and data onto separate zpools > [Note: This will be addressed with the ZIL bypass property fix] > Reduce the impact of double buffering by changing the caching method to “metadata only” > Use separate ZIL (ZFS Intent Log) preferably SSD > Use SSD as secondary cache - L2ARC (Level 2. Adaptive Replacement Cache)
  • 17. ZFS tuning for MySQL • Many tuning depends on storage engine • For Innodb > Prefer to cache in Innodb rather than ARC zfs set primarycache=metadata poolname/database > Set recordsize to 16k for data and 128k for log zfs set recordsize=16k poolname/database (Note: do this before you load any data) > Turn off prefetch set zfs:zfs_prefetch_disable = 1 (in /etc/system) (File level prefetch not triggered if you change record size to 16k) > Use raid0 or mirror over raidz raidz is no suitable for random IO > Add SSDs for either read side or write side based on workload zpool add datapool cache ssd-disk zpool create logpool ssd-disk3 In my.cnf set innodb_data_home_dir & innodb_log_group_home_dir
  • 18. ZFS tuning for MySQL • More tuning for Innodb > Some device vendors flush cache even when not needed. (eg. battery backed cache) set zfs:zfs_nocacheflush = 1 > Turn on compression zfs set compression=on poolname/database ZFS does not turn on compression if less than 12.5% saving. IO reduction may offset the extra cpu cost > Disable double writes innodb_doublewrite=0 (in my.cnf) ZFS does not allow any partial writes so no need to guard against it.
  • 19. ZFS tuning for PostgreSQL • Postgres tuning hints > Set recordsize to 8k zfs set recordsize=8k poolname/database > Turn down ARC cache. set zfs:zfs_arc_max in /etc/system > Add SSDs for either read side or write side based on workload zpool add poolname cache ssd-name zpool add poolname log ssd-name > Use separate pool for log (preferably one with SSD) & data initdb -X log_directory_name create tablespace datatbs location 'database_directory_name' create database mydb with  tablespace datatbs > Don’t forget to basic Postgres tuning on Solaris - (huge gains) Set shared_buffers, temp_buffers, work_mem, maintenance_work_mem, wal_sync_method, synchronous_commits etc see: http://blogs.sun.com/jkshah/entry/best_practices_with_postgresql_8
  • 20. ZFS tuning for Oracle • Oracle tuning hints > Set recordsize to match db_block_size (default 8k) zfs set recordsize=8k poolname/database > Use separate pool for Oracle logs make sure record size of the log filesystem is left to the 128k default > Add SSDs for either read side or write side based on workload zpool add poolname cache ssd-name zpool add poolname log ssd-name
  • 21. Benchmark results • Hardware > Sun x4150 2 x Quad core 2.3 GHz Xeon 12 GB ram 3 x 10000 rpm drives 3 x 32 GB SSDs • Software > OpenSolaris 2009.06 > Postgres 8.3.7 > MySQL 5.4 beta
  • 22. Benchmark results • pgbench & Postgres > command line: pgbench -c 10 -s 10 -t 10000 pgbench Description TPS Single disk ZFS 72 tps 2 Raid 0 disk + SSD as level 2 cache 241 tps Above + general postgres optimization 2026 tps + all the data on SSD 2603 tps + data on hdd & log on SSD 4372 tps + primarycache=metadata 5003 tps
  • 23. Benchmark results • sysbench & mysql 5.4 > read/write test: sysbench --max-time=300 --max-requests=0 --test=oltp -- oltp-dist-type=special --oltp-table-size=10000000 --num-threads=20 run Description TPS Single disk ZFS 425 tps raid0 ZFS 670 tps + SSD cache 788 tps + Separate intent log 1352 tps + With optimization 1809 tps
  • 24. Benchmark results • sysbench & mysql 5.4 > read test: sysbench --max-time=300 --max-requests=0 --test=oltp --oltp- dist-type=special --oltp-table-size=10000000 --num-threads=20 --oltp-read- only=on run Description TPS Single disk ZFS 786 tps 2 disk raid0 ZFS 1501 tps + SSD cache 1981 tps + Separate intent log on SSD 2567 tps + optimization 3065 tps
  • 25. !"#$!%&'()*$'&(+,(-$.//012.$ Sun Unified Storage *#%'345*6*5$!%(#+(5&#* :$;<$=*='&-$>$?@A9BB;<$!6!$1)CDC 78)74+*#!8%3$!9(5(:5* E($+'$F@;<$=*='&-G$142A?H<$!6H6$1)CDC E($+'$IA?:$;< write-optimized SSDs *#%'345*6*5$95"!%*'49(-(:5* E($+'$F@;<$=*='&-G$ZFA?H<$!6H6$1)CDC E($+'$FA?BB;<$&*,1.?FA?:;<$J&)+*$!!5C 6K+)L*M6K+)L*$/2"C+*&)#N$0'&$O.6 !9(5(:5*$95"!%*'49(-(:5* !%(#+('+$@*(%"'*!$>(55$,&+*5!? 622$5,+,$%&'+'K'2C$,#1$5,+,$!*&L)K*C$V#K2"1*1 E($+'$?I:;<$=*='&-G$I::A?H<$!6H6$1)CDC S6#,2-+)KCG$!#,(CR'+CG$7*(2)K,+)'#G$/'=(&*CC)'#G$4U!G$/VU!G$)!/!VWT E($+'$FA?BB;<$&*,1.?FA?:;<$J&)+*$!!5C <")2+M)#$@A?$;P$Q+R*&#*+$('&+C 6K+)L*M6K+)L*$/2"C+*&)#N$0'&$O.6 7*='+*$/'#C'2*$S!*&),2$'&$Q+R*&#*+T X)NR+CM'"+$Y,#,N*=*#+ &-%8&#(5$#*%;&'<8#)$=$9&##*9%868%3$>(55$,&+*5!? IA?B$;P$Q+R*&#*+$S'(+)K,2T @A?$;P$Q+R*&#*+$SK'((*&T$>$IA?;P$Q+R*&#*+$S'(+)K,2T U/$'&$!/!V$O<6$0'&$+,(*$P,KD"( !"#$ %&'(&)*+,&-./'#0)1*#+),23$ 456$ 7*8")&*1 9
  • 26. Getting these systems at a discount Sun Startup Essentials • Exclusive program for startups • Eligibility <6 yrs. Old, <150 sun.com/startup employees • Co-marketing opportunities • Funding assistance • Deeply discounted storage and servers certified for Linux, Windows, and Solaris • Hosting starting at $40 • Open source software, and discounted MySQL • Free email based tech support • Free and discounted training on Sun technologies • Member-only webinars
  • 27. Resources • ZFS info: http://www.opensolaris.org/os/community/zfs/ • ZFS Best Practices Guide: http://www.solarisinternals.com/wiki/index.php/ZFS_Best_Practices_Guide • ZFS Evil Tuning Guide: http://www.solarisinternals.com/wiki/index.php/ZFS_Evil_Tuning_Guide • Blogs of note: > All things performance tuning: http://blogs.sun.com/realneel http://blogs.sun.com/roch > Postgres tuning - Jignesh’s Blog http://blogs.sun.com/jkshah > Angelo’s blog http://blogs.sun.com/angelo
  • 28. Tuning Storage Subsystem for Databases Angelo Rajadurai [email protected] http://blogs.sun.com/angelo twitter: rajadurai