Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production •...

34
© 2017 Percona 1 Daniel Kowalewski — Senior Technical Operations Engineer, Percona [email protected] Deploying MySQL in Production

Transcript of Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production •...

Page 1: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona1

DanielKowalewski—SeniorTechnicalOperationsEngineer,[email protected]

DeployingMySQLinProduction

Page 2: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona2

DeployingMySQLinProduction• Installation• Configuration(OSandMySQL)• Backups• Monitoring• Beforeyougolive...

Page 3: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona3

Installation

Page 4: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona4

MySQLInstallation• Thisisnotyourjob!• Don'treinventthewheel• Useapackagemanager• Oracle,Percona,MariaDBallhaverepos

• Staycurrent

Page 5: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona5

Configmanagement• Ansible,Puppet,Chef,SaltStack,etc.• Usewhattherestofyourcompanyusesifpossible

• Infrastructureascode(revisioncontrol!)• Consistency

Page 6: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona6

Useconfigmanagementfor:• Packageinstallation• Volumeanddirectorycreation• Permissions• Firewalls• InitialMySQLaccounts• deletedefaultaccounts

Page 7: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona7

OSConfiguration

Page 8: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona8

Storage• CanyouaffordSSDs?• RAID10👍,RAID5/6👎,RAID0👎👎(*)• LVMforflexibility• Filesystem–XFSorext4• XFS:inode64,nobarrier,noatime,logbufs=8• ext4:noatime,nodiratime,barrier=0

• IOScheduler–noopordeadline

Page 9: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona9

CPU• SetCPUgovernorto"performance"

Page 10: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona10

LifeGoal:Don'trunoutofmemory• Setvm.swappiness=1• Don'tdisableswap,it'syourreserveparachute• Usejemalloc• DisableTransparentHugePages

Page 11: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona11

MySQLConfiguration

Page 12: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona12

MySQLConfiguration• Don'tusethedefaultfiles• PerconaConfigWizardisn'tabadstart

Page 13: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona13

Basicsettings• innodb_buffer_pool_size(stilldefaultsto128MiB!)• max_connections(stilldefaultsto151!)• innodb_log_file_size• query_cache_sizeandquery_cache_type• innodb_thread_concurrency• innodb_buffer_pool_instances

Page 14: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona14

Alsoconsider• innodb_flush_log_at_transaction_commit• sync_binlog

Page 15: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona15

Setnow,orregretlater• character_set(utf8orutf8mb4)• innodb_file_per_table• log-bin• expire_logs_days• innodb_numa_interleave

Page 16: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona16

Backups

Page 17: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona17

Thingsthatarenotbackups• RAID• SAN• mirroredSAN

• MySQLreplicas• evendelayedreplicas

• Untestedbackups• BackupsstoredontheDBhost

Page 18: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona18

Type Size TimetoBackup

TimetoRestore

PartialRestores

Tools

Physical larger faster faster hard xtrabackup,MySQLEnterpriseBackup

Logical smaller slower slower easy mysqldump,mydumper,mysqlpump

Page 19: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona19

Incremental/differentialbackups• Storechangessincethelastbackup• Onlypossiblewithphysicalbackups• Morecomplicatedrestores• Don'tgotoolongwithoutafullbackup!

Page 20: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona20

Binarylogbackups• Essentialforpoint-in-timerecovery• Streamwithmysqlbinlog--read-from-remote-server• Playbackbypipingtomysql• Youdidturnonlog_bin,right?

Page 21: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona21

Testyourbackups• Automaterestores• Watchforerrors(especiallywithlogicalbackups)• Replicatefromproduction• pt-table-checksum• Compareschemas

Page 22: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona22

Monitoring

Page 23: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona23

Alerting• Nagios,Icinga,Sensu,VividCortex,NewRelic,etc• Usewhatyoualreadyhave

• Alerton:• Thingsthatmattertotheapplication• Thingsthatarehardtorecoverfrom

• Don'tover-alert

Page 24: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona24

Metricsthataffecttheapplication:• Servicestatus(connectioncheck)• asrealisticaspossible• Update/selectfromtable

• Averageexecutiontime• threads_running• Maybereplicationdelay

Page 25: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona25

Disasterswaitingtohappen:• Diskspace• Historylistsize• Auto-incrementkeys• threads_connected(percentageofmax_connections)• Checksumdifferences• Swapusage

Page 26: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona26

Maybenotsoimportant• Longtransactions(checkhistorylistinstead)• threads_connected• CPUusage• Deadlocks

Page 27: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona27

Trending• Don'tover-alert,buttrendeverythingyoucan!• PMM,VividCortex,Sensu,etc.

Page 28: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona28

Queryanalyzer• Removesguesswork• "ThisqueryisresponsibleforOOM"• "Thisisourworstquery"• "3%ofquerieswouldbenefitfromthisindex"• PMM,VividCortex,NewRelic

Page 29: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona29

Beforeyougolive...LEEEEEEROOOOOYJENKINS!

Page 30: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona30

Benchmarkeverything• sysbenchforthehardwareandOS• sysbenchOLTPortpcc-mysql• Loadtestfromapplication• Savetheresultstoreferencelater

Page 31: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona31

Dataretention• Don'tcountonverticalscalingforever• Everyproblembecomesharderwithmoredata

Page 32: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona32

References

https://git.io/v9UMe

Page 33: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

©2017Percona33

Questions?

Page 34: Deploying MySQL in Production - Percona...2 © 2017 Percona Deploying MySQL in Production • Installation • Configuration (OS and MySQL) • Backups • Monitoring • Before you

DATABASE PERFORMANCE MATTERSDatabasePerformanceMattersDatabasePerformanceMattersDatabasePerformanceMattersDatabasePerformanceMattersDatabasePerformanceMatters