Percona Toolkit Documentation Release 2.2.15

Total Page:16

File Type:pdf, Size:1020Kb

Percona Toolkit Documentation Release 2.2.15 Percona Toolkit Documentation Release 2.2.15 2015, Percona LLC and/or its affiliates August 28, 2015 CONTENTS 1 Getting Percona Toolkit 3 1.1 Installation................................................3 2 Tools 5 2.1 pt-align ..................................................5 2.2 pt-archiver ................................................7 2.3 pt-config-diff ............................................... 26 2.4 pt-deadlock-logger ........................................... 31 2.5 pt-diskstats ............................................... 39 2.6 pt-duplicate-key-checker ........................................ 48 2.7 pt-fifo-split ................................................ 54 2.8 pt-find .................................................. 57 2.9 pt-fingerprint .............................................. 67 2.10 pt-fk-error-logger ............................................ 71 2.11 pt-heartbeat ............................................... 77 2.12 pt-index-usage .............................................. 87 2.13 pt-ioprofile ................................................ 96 2.14 pt-kill ................................................... 99 2.15 pt-mext .................................................. 112 2.16 pt-mysql-summary ........................................... 115 2.17 pt-online-schema-change ........................................ 124 2.18 pt-pmp .................................................. 139 2.19 pt-query-digest ............................................. 142 2.20 pt-show-grants ............................................. 167 2.21 pt-sift ................................................... 172 2.22 pt-slave-delay .............................................. 175 2.23 pt-slave-find ............................................... 181 2.24 pt-slave-restart ............................................. 187 2.25 pt-stalk .................................................. 195 2.26 pt-summary ............................................... 205 2.27 pt-table-checksum ............................................ 211 2.28 pt-table-sync ............................................... 230 2.29 pt-table-usage .............................................. 248 2.30 pt-upgrade ................................................ 255 2.31 pt-variable-advisor ........................................... 266 2.32 pt-visual-explain ............................................ 278 3 Configuration 291 3.1 CONFIGURATION FILES....................................... 291 3.2 DSN (DATA SOURCE NAME) SPECIFICATIONS.......................... 292 3.3 ENVIRONMENT............................................ 295 i 3.4 SYSTEM REQUIREMENTS...................................... 295 4 Miscellaneous 297 4.1 BUGS.................................................. 297 4.2 AUTHORS................................................ 297 4.3 COPYRIGHT, LICENSE, AND WARRANTY............................. 297 4.4 VERSION................................................ 298 4.5 Release Notes.............................................. 298 Index 355 ii Percona Toolkit Documentation, Release 2.2.15 Percona Toolkit is a collection of advanced command-line tools used by Percona (http://www.percona.com/) support staff to perform a variety of MySQL and system tasks that are too difficult or complex to perform manually. These tools are ideal alternatives to private or “one-off” scripts because they are professionally developed, formally tested, and fully documented. They are also fully self-contained, so installation is quick and easy and no libraries are installed. Percona Toolkit is derived from Maatkit and Aspersa, two of the best-known toolkits for MySQL server administration. It is developed and supported by Percona. For more information and other free, open-source software developed by Percona, visit http://www.percona.com/software/. CONTENTS 1 Percona Toolkit Documentation, Release 2.2.15 2 CONTENTS CHAPTER ONE GETTING PERCONA TOOLKIT 1.1 Installation Visit http://www.percona.com/software/percona-toolkit/ to download the latest release of Percona Toolkit. Or, get the latest release from the command line: wget percona.com/get/percona-toolkit.tar.gz wget percona.com/get/percona-toolkit.rpm wget percona.com/get/percona-toolkit.deb You can also get individual tools from the latest release: wget percona.com/get/TOOL Replace TOOL with the name of any tool. 3 Percona Toolkit Documentation, Release 2.2.15 4 Chapter 1. Getting Percona Toolkit CHAPTER TWO TOOLS 2.1 pt-align 2.1.1 NAME pt-align - Align output from other tools to columns. 2.1.2 SYNOPSIS Usage pt-align [FILES] pt-align aligns output from other tools to columns. If no FILES are specified, STDIN is read. If a tool prints the following output, DATABASE TABLE ROWS foo bar 100 long_db_name table 1 another long_name 500 then pt-align reprints the output as, DATABASE TABLE ROWS foo bar 100 long_db_name table 1 another long_name 500 2.1.3 RISKS Percona Toolkit is mature, proven in the real world, and well tested, but all database tools can pose a risk to the system and the database server. Before using this tool, please: • Read the tool’s documentation • Review the tool’s known “BUGS” • Test the tool on a non-production server • Backup your production server and verify the backups 5 Percona Toolkit Documentation, Release 2.2.15 2.1.4 DESCRIPTION pt-align reads lines and splits them into words. It counts how many words each line has, and if there is one number that predominates, it assumes this is the number of words in each line. Then it discards all lines that don’t have that many words, and looks at the 2nd line that does. It assumes this is the first non-header line. Based on whether each word looks numeric or not, it decides on column alignment. Finally, it goes through and decides how wide each column should be, and then prints them out. This is useful for things like aligning the output of vmstat or iostat so it is easier to read. 2.1.5 OPTIONS This tool accepts additional command-line arguments. Refer to the “SYNOPSIS” and usage information for details. --help Show help and exit. --version Show version and exit. 2.1.6 ENVIRONMENT This tool does not use any environment variables. 2.1.7 SYSTEM REQUIREMENTS You need Perl, and some core packages that ought to be installed in any reasonably new version of Perl. 2.1.8 BUGS For a list of known bugs, see http://www.percona.com/bugs/pt-align. Please report bugs at https://bugs.launchpad.net/percona-toolkit. Include the following information in your bug report: • Complete command-line used to run the tool • Tool --version • MySQL version of all servers involved • Output from the tool including STDERR • Input files (log/dump/config files, etc.) If possible, include debugging output by running the tool with PTDEBUG; see “ENVIRONMENT”. 2.1.9 DOWNLOADING Visit http://www.percona.com/software/percona-toolkit/ to download the latest release of Percona Toolkit. Or, get the latest release from the command line: 6 Chapter 2. Tools Percona Toolkit Documentation, Release 2.2.15 wget percona.com/get/percona-toolkit.tar.gz wget percona.com/get/percona-toolkit.rpm wget percona.com/get/percona-toolkit.deb You can also get individual tools from the latest release: wget percona.com/get/TOOL Replace TOOL with the name of any tool. 2.1.10 AUTHORS Baron Schwartz, Brian Fraser, and Daniel Nichter 2.1.11 ABOUT PERCONA TOOLKIT This tool is part of Percona Toolkit, a collection of advanced command-line tools for MySQL developed by Percona. Percona Toolkit was forked from two projects in June, 2011: Maatkit and Aspersa. Those projects were created by Baron Schwartz and primarily developed by him and Daniel Nichter. Visit http://www.percona.com/software/ to learn about other free, open-source software from Percona. 2.1.12 COPYRIGHT, LICENSE, AND WARRANTY This program is copyright 2011-2015 Percona LLC and/or its affiliates, 2010-2011 Baron Schwartz. THIS PROGRAM IS PROVIDED “AS IS” AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, IN- CLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2; OR the Perl Artistic License. On UNIX and similar systems, you can issue ‘man perlgpl’ or ‘man perlartistic’ to read these licenses. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. 2.1.13 VERSION pt-align 2.2.15 2.2 pt-archiver 2.2.1 NAME pt-archiver - Archive rows from a MySQL table into another table or a file. 2.2. pt-archiver 7 Percona Toolkit Documentation, Release 2.2.15 2.2.2 SYNOPSIS Usage pt-archiver [OPTIONS] --source DSN --where WHERE pt-archiver nibbles records from a MySQL table. The –source and –dest arguments use DSN syntax; if COPY is yes, –dest defaults to the key’s value from –source. Examples Archive all rows from oltp_server to olap_server and to a file: pt-archiver --sourceh=oltp_server,D=test,t=tbl --desth=olap_server \ --file '/var/log/archive/%Y-%m-%d-%D.%t' \ --where "1=1" --limit 1000 --commit-each Purge (delete) orphan rows from child table: pt-archiver --sourceh=host,D=db,t=child --purge \ --where 'NOT EXISTS(SELECT * FROM parent WHERE col=child.col)' 2.2.3 RISKS Percona Toolkit is mature, proven in the real world, and well tested, but all database tools can pose a risk to the system and
Recommended publications
  • Percona Xtrabackup Provides
    Percona XtraBackup provides: • Fast and reliable backups • Uninterrupted transaction processing during backups • Savings on disk space and network bandwidth with better compression • Automatic backup Percona XtraBackup verification You’re only as good as the tools you have to use. When it comes to your business, the • Higher uptime due to faster software tools you employ can be the difference between success and failure. restore time Percona’s suite of MySQL and MongoDB software and toolkits are a powerhouse of performance, the backbone of the organization. As a product of the open source Bringing immediate, noticeable community, our software has been tested by fire and proven resilient. and long lasting benefits to Percona XtraBackup is a free, open source, complete online backup solution for all meet your budget and needs. versions of Percona Server for MySQL, MySQL® and MariaDB®. With over 1,800,000 downloads, Percona XtraBackup performs online non-blocking, tightly compressed, highly secure backups on transactional systems so that applications remain fully available during planned maintenance windows. Percona XtraBackup is the world’s only open-source, free MySQL hot backup software that performs non-blocking backups for InnoDB and XtraDB databases. With Percona XtraBackup, you can achieve the following benefits: • Create hot InnoDB backups without pausing your database • Make incremental backups of MySQL • Stream compressed MySQL backups to another server • Move tables between MySQL servers on-line • Create new MySQL replication slaves easily • Backup MySQL without adding load to the server Percona XtraBackup makes MySQL hot backups for all versions of Percona Server for MySQL, MySQL, and MariaDB. It performs streaming, compressed, and incremental MySQL backups.
    [Show full text]
  • In Mysql/Mariadb?
    T h e O W A S P F o u n d a t i o n h t t p : / / w w w . o w a s p . o r g O W A S P E U T o u r B u c h a Do you r e s“GRANT ALL PRIVILEGES” t ... in MySQL/MariaDB? 2 0 1 DevOps Engineer 3 Gabriel PREDA [email protected] @eRadical Co pyr igh t © Th e O W AS P Fo un dat ion Per mi ssi on is gr ant ed to co py, dis tri bu te an d/ or mo dif y thi s do cu me nt un de r the ter ms of the O W AS P Lic en se. 2 DevOps = new BORG DevOps Engineer ??? ● Development – Web Applications (“Certified MySQL Associate”, “Zend Certified Engineer”) – Real Time Analytics ● Operations – MySQL DBA (15+ instances) – Sysadmin (<25 virtual & physical servers) 3 My MySQL● Over 15 MariaDB / TokuDBMariaDB(s) instances ● Statistics in MariaDB – < 1TB from Oct 2012 – < 12G raw data daily – < 12,000,000 events processed daily – < 90,000,000 rows added daily BigData? NO!!! ● I can copy all of that to my laptop ● “Working data set” - less than 1G & less than 7,500,000 rows 4 MySQL History ● 1983 – first version of MySQL created by Monty Wideniuns ● 1994 – MySQL is released OpenSource ● 2004 Oct – MySQL 4.1 GA ● 2005 Oct – InnoDB (Innobase) is bought by Oracle – Black Friday ● 2008 Ian – MySQL AB is bought by Sun (1bn $) ● 2008 Nov – MySQL 5.1 GA ● 2009 Apr – Sun is bought by Oracle (7,4 bn $) ● 2010 Dec – MySQL 5.5 GA ● 2012 Apr – MariaDB 5.5 GA ● 2013 Feb – MySQL 5.6 – first version made by Oracle ● 2013 Feb – MySQL will be replaced by MariaDB in Fedora & OpenSuSE * Max Mether – SkySQL “MySQL and MariaDB: Past, Present and Future” 5 Where are we NOW()? Drizzle MySQL TokuDB (Oracle) (Tokutek) Percona Server (Percona) MariaDB (Monty Program, Brighthouse MariaDB Foundation) (Infobright) Replication: ● Asynchronous InfiniDB ● Semi-synchronous (Calpont) ● Galera Synchronous (Codership) ● Tungsten Replication (Continuent) 6 Elementary..
    [Show full text]
  • Mariadb Viable Mysql Replacement Scale12x.Pdf
    MariaDB: Viable MySQL replacement Colin Charles, Team MariaDB, SkySQL Ab [email protected] | [email protected] http://mariadb.org/ http://bytebot.net/blog/ | @bytebot on Twitter SCALE12x, Los Angeles, California, USA 22 February 2014 Sunday, 23 February 14 whoami • Work on MariaDB at SkySQL Ab • Merged with Monty Program Ab, makers of MariaDB • Formerly MySQL AB (exit: Sun Microsystems) • Past lives include Fedora Project (FESCO), OpenOffice.org • MHA experience • since November 2011 (MHA 0.52, 0.53) • NRE work to make it run in a Solaris 10 environment... with no Internet access! • Continued deployment advice + work for data centre use • Much thanks to SkySQL for the experience Sunday, 23 February 14 MySQL? Percona Server? MariaDB? Sunday, 23 February 14 Agenda • 4 years: major server releases (5.1, 5.2, 5.3, 5.5, 5.5+TokuDB, Galera Cluster) and 10.0 series • Delving into history of previous releases • MariaDB 10.0 • Client libraries, Galera Cluster • Roadmap Sunday, 23 February 14 What isn’t covered • MariaDB Enterprise • Galera Cluster + GUI + API • mariadb.com • SkySQL • trademarks... Sunday, 23 February 14 What is MariaDB? • Community developed branch of MySQL • Feature enhanced • Fully compatible & feature complete with MySQL Sunday, 23 February 14 Backed by MariaDB Foundation • Driver of the MariaDB project • Foundation not controlled by single entity/ person; has a Board • Ensure MariaDB is compatible with MySQL, maintain mariadb.org, keep community voice • Major sponsors: SkySQL, Parallels, Booking.com, Automattic, OpenQuery, Percona,
    [Show full text]
  • SQL) I Nerelacijskih (Nosql) Baza Podataka S Primjerima U Mysql-U I Mongodb-U
    Usporedba relacijskih (SQL) i nerelacijskih (NoSQL) baza podataka s primjerima u MySQL-u i MongoDB-u 3.5.2019., Zagreb, Nenad Crnko Sadržaj Uvod Osnovne karakteristike relacijskih (SQL) i nerelacijskih (NoSQL) baza podataka i prikaz njihovih razlika na primjerima baza MySQL i MongoDB Izvođenje osnovnih operacija kao što su čitanje, upisivanje, ažuriranje i brisanje zapisa u bazi podataka Naprednije operacije poput optimizacije tablica, indeksa, upita i ostalo Primjeri korištenja uz pomoć nekoliko programskih jezika (PHP, Python i Visual Studio) SQL vs NoSQL Trenutno stanje na tržištu SQL vs NoSQL Kriteriji za vrednovanje popularnosti (https://db-engines.com ) • Broj upita o pojedinom sustavu na nekoliko najpoznatijih tražilica (Google, Bing i Yandex) • Opće zanimanje za neki sustav na temelju podataka prikupljenih preko alata Google Trends • Učestalost tehničkih diskusija o nekom proizvodu koje se provode na web-adresama https://stackoverflow.com/ i https://dba.stackexchange.com/ • Broj dostupnih IT poslova povezanih s nekim od sustava na adresama za online pretraživanje ponuđenih poslova https://www.indeed.com/ i https://www.simplyhired.com/ • Učestalost pozivanja na pojedini sustav na društvenim mrežama namijenjenim profesionalcima https://www.linkedin.com/ i https://www.upwork.com/ • Broj pojavljivanja u porukama na https://twitter.com/ SQL vs NoSQL SQL vs NoSQL Usporedba relacijskih (SQL) i nerelacijskih (NoSQL) baza podataka (brzi pregled) SQL vs NoSQL Osnovne karakteristike relacijskih (SQL) i nerelacijskih (NoSQL) baza podataka Relacijske baze - Edgar F. Cood: A Relational Model of Data for Large Shared Data Banks (Communications of the ACM, 1970). Na temelju rada u istraživačkom centru San Jose IBM stručnjaci razvili su sustav System R. U Systemu R sve operacije su se izvodile pomoću posebnog jezika Structured English Query Language (SEQUEL).
    [Show full text]
  • Mysql Performance Monitoring with Zabbix an Alternative
    MySQL Performance Monitoring with Zabbix An alternative to the MySQL Enterprise Monitor? by Oli Sennhauser [email protected] http://www.fromdual.com www.fromdual.com 1 How many of you ... ● ¼ monitor their database servers? ● ¼ monitor their (MySQL) databases? ● ¼ monitor performance metrics? ● ¼ all the others: Why not? www.fromdual.com 2 Linux monitoring ● Question: What is your favourite Linux monitoring application? ● 1187 votes, April 2010 ● Manipulated? ● Lit: Linux Journal, [1] www.fromdual.com 3 What to monitor? ● Devices / Software ● Server, Router, Switches, I/O systems etc. ● Operating System, Networks, Applications, etc. ● Incidents ● DB down, Replication stopped, Server not reachable, etc. ● Critical Events ● Disk more than n% full or less than m Gbyte free, Replication more than n seconds lagging, Data node down, 100% CPU utilization, etc. → Alert, immediate intervention, fire fighting www.fromdual.com 4 What to monitor? ● Trends (includes time!) → Graphs ● How long does it take until ¼ ● ¼ my disk is full? ● ¼ my Index Memory is filled up? ● When does it happen? ● Peak? Backup? ● How often does it happen? Does it happen periodically? ● Once a day? Always at Sunday night? ● How does it correlate to other informations? ● I/O problems during our backup window? ● Reading the patterns! → this can help us to find the root cause of problems¼ www.fromdual.com 5 How to monitor? ● Basic solutions: ● top, vmstat, iostat, mytop, innotop, SHOW GLOBAL STATUS, SHOW INNODB STATUS ● CLI!, no graphs, no log term information, but good for adhoc analysis! ● Graphical solutions ● Nagios, Cactii, Zabbix, ¼ ● Typically NOT specialised in DB monitoring... www.fromdual.com 6 Focus ● Database + Server ● Trends Not the other stuff..
    [Show full text]
  • Galera Cluster Documentation Releases 3.X and 4.X Codership Oy
    Galera Cluster Documentation Releases 3.x and 4.x Codership Oy Sep 02, 2021 CONTENTS 1 Overview of Galera Cluster 3 2 Technical Description 7 2.1 Database Replication...........................................9 2.2 Certification-Based Replication..................................... 12 2.3 Replication API............................................. 14 2.4 Isolation Levels.............................................. 17 2.5 State Transfers.............................................. 19 2.6 Flow Control............................................... 22 2.7 Node Failure & Recovery........................................ 26 2.8 Quorum Components........................................... 28 2.9 Streaming Replication.......................................... 33 3 Installing Galera Cluster 37 3.1 Galera Cluster for MySQL—Binary Installation............................ 39 3.2 Galera Cluster for MySQL - Source Installation............................. 44 3.3 MariaDB Galera Cluster - Binary Installation.............................. 48 3.4 MariaDB Galera Cluster - Source Installation.............................. 51 3.5 Percona XtraDB Cluster - Binary Installation.............................. 55 3.6 Percona XtraDB Cluster - Source Installation.............................. 57 4 Galera Cluster Administration 63 4.1 Node Provisioning............................................ 66 4.2 State Snapshot Transfers......................................... 68 4.2.1 Logical State Snapshot..................................... 69 4.2.2 Physical State Snapshot....................................
    [Show full text]
  • Verdant-Docs Documentation 发发发布布布 0.1
    verdant-docs Documentation 发发发布布布 0.1 Verdant Yang 4月月月 02, 2017 Contents 1 说说说明明明 1 1.1 *º说明 .................................................1 2 目目目UUU 3 2.1 pn库 ..................................................3 2.2 LinuxÍ\ ................................................ 14 2.3 'pn .................................................. 14 2.4 v他 ................................................... 17 Bibliography 27 i ii CHAPTER 1 说明 这/*ºt理的f`笔记 ***ººº说说说明明明 èèèããã: • \者: • Z¢: • Github0@:https://github.com/verdantyang 1 verdant-docs Documentation, 发发发布布布 0.1 2 Chapter 1. 说说说明明明 CHAPTER 2 目U pppnnn库库库 sssûûûpppnnn库库库:Mysql、Oracle、SQLite KVpppnnn库库库:Memcached、Redis、Raik(Amazon) lll盘盘盘KVpppnnn库库库:SSDB(LevelDb) • LevelDB/U:X¨引Î 列列列bbbpppnnn库库库:HBase、BigTable、Cassandra、Hypertable • Cassandra/P2P的(无-á理节¹) 文文文cccpppnnn库库库:MongoDB、CouchDB 图图图pppnnn库库库:Neo4j 图pn库/持ACIDÄ则以Êê¨"引 fM¨P: 高'能MySQL 工w¨P: DBeaver MySQL官Q: http://dev.mysql.com/doc/ pn库内8月¥: http://mysql.taobao.org/monthly/ sssûûû型型型pppnnn库库库-XXX¨¨¨引引引ÎÎÎ pppnnn库库库事事事¡¡¡ ACIDhhh::: • 原P'(atomicity) • 一致'(consistency) 3 verdant-docs Documentation, 发发发布布布 0.1 • 隔»'(isolation) • 持E'(durability) 事事事¡¡¡§§§+++ 脏脏脏ûûû(((dirty read))): 1. 事¡T1更新了一L记U的内¹,F/v¡有Ф@Z的修9 2. 事¡T2û取更新后的L,6后T1gL回滚Í\,取消了刚M@Z的修9 3. 现(T2@û取的L1无效了 不不不可可可ÍÍÍ复复复ûûû(((nonrepeatable read))): 1. 事¡T1û取一L记U,'¥@事¡T2修9了T1刚Mû取的£一L记U 2. 6后T1È再!û取这L记U,发现与刚Mû取的结果不同 {{{ÏÏÏûûû(((phantom read))): 1. 事¡T1û取一a指定的WHEREP句@返回的结果Æ 2. 6后事¡T2新插e一L记U,这L记Up}á³T1@使(的查询a件 3. 6后T1È使(ø同的查询再!ùh进L检",d时t看0了事¡T2刚M插e的新L InnoDB和XtraDBX¨引Î通ÇMVCCã³了{Ïû的问题 MVCC(Multiversion
    [Show full text]
  • Percona Xtrabackup 2.4 Documentation Release 2.4.20
    Percona XtraBackup 2.4 Documentation Release 2.4.20 Percona LLC and/or its affiliates Apr 14, 2020 CONTENTS I Introduction2 II Installation8 III Prerequisites 16 IV Backup Scenarios 20 V User’s Manual 33 VI Advanced Features 91 VII Tutorials, Recipes, How-tos 100 VIII References 122 IX Indices and tables 149 i Percona XtraBackup 2.4 Documentation, Release 2.4.20 Percona XtraBackup is an open-source hot backup utility for MySQL - based servers that doesn’t lock your database during the backup. It can back up data from InnoDB, XtraDB, and MyISAM tables on MySQL 5.11, 5.5, 5.6 and 5.7 servers, as well as Percona Server for MySQL with XtraDB. For a high-level overview of many of its advanced features, including a feature comparison, please see About Percona XtraBackup. Whether it is a 24x7 highly loaded server or a low-transaction-volume environment, Percona XtraBackup is designed to make backups a seamless procedure without disrupting the performance of the server in a production environment. Commercial support contracts are available. Important: Percona XtraBackup 2.4 does not support making backups of databases created in MySQL 8.0, Percona Server for MySQL 8.0 or Percona XtraDB Cluster 8.0. 1 Support for InnoDB 5.1 builtin has been removed in Percona XtraBackup 2.1 CONTENTS 1 Part I Introduction 2 CHAPTER ONE ABOUT PERCONA XTRABACKUP Percona XtraBackup is the world’s only open-source, free MySQL hot backup software that performs non-blocking backups for InnoDB and XtraDB databases. With Percona XtraBackup, you can achieve the following benefits: • Backups that complete quickly and reliably • Uninterrupted transaction processing during backups • Savings on disk space and network bandwidth • Automatic backup verification • Higher uptime due to faster restore time Percona XtraBackup makes MySQL hot backups for all versions of Percona Server for MySQL, MySQL, and MariaDB.
    [Show full text]
  • Mysql Storage Engine Comparison Guide June 2009
    MySQL Storage Engine Comparison Guide June 2009 Copyright 2009, Sun Microsystems Page: 1 Table of Contents Introduction...................................................................................................................................... 3 Key Storage Engine Differentiation Points ...................................................................................... 3 MySQL/Sun Developed Engines.....................................................................................................4 Archive ......................................................................................................................................... 4 Blackhole...................................................................................................................................... 5 CSV.............................................................................................................................................. 6 Falcon .......................................................................................................................................... 7 Federated..................................................................................................................................... 8 Memory ........................................................................................................................................ 9 Merge ......................................................................................................................................... 10 MyISAM.....................................................................................................................................
    [Show full text]
  • Mysql Performance & Scalability
    MySQL Performance & Scalability Dimitri KRAVTCHUK Benchmark Team Paris Sun Solution Center Before we start... •Few words about SSC :-) •Paris <=== 10Mbit, 20ms latency ===> LLG 2 SSC Locations • North America >USA: Hillsboro, Broomfield, McLean, Menlo Park • Latin America >Sao Paulo, Brazil; Ft. Lauderdale, Florida; Mexico City, Mexico • Europe >Edinburgh, Frankfurt, Madrid, Manchester, Milan, Munich, Paris, Walldorf • Asia >Bangalore, India; Beijing, China; Hong Kong; Seoul, Korea; Singapore; Taïpei, Taiwan; Tokyo, Japan; • Pacific >Sydney, Australia 3 Sun Solution Center Is Near You ASSCs in BLUE SSCs in BLACK go to www.sun.com/ssc for contact information United States Europe / Middle East / Africa Asia Pacific •San Francisco Bay Area, CA Edinburgh, Scotland, UK Bangalore, India •Hillsboro, OR Manchester, UK Bangalore, India - Wipro •Broomfield, CO Warrington, UK - Avnet Beijing, China •Mc Lean, VA Paris, France Hong Kong, China •Chicago, IL – Diamond Management Frankfurt, Germany Shenyang, China - Neusoft •Plano, TX - EDS Munich, Germany Seoul, Korea •College Park, MD - Univ of Maryland Walldorf, Germany Singapore Singapore - Ingram Micro •Pittsburgh, PA – Deloitte Consulting Milan, Italy Madrid, Spain Sydney, Australia Götegorg, Sweden – Inserve Technology Sydney, Australia – Express Data Latin America Helsinki, Finland – ArrowECS Tokyo, Japan Ft. Lauderdale, FL, USA Tallin, Estonia - Microlink Mexico City, Mexico UAE - Tech Access Sao Paulo, Brazil Sun Solution Center Benchmark and Performance Characterization •Architecture design •High-end performance and scalability (servers, storage) •Performance characterization •Competitive benchmarks •Internal product BU benchmarks •Performance tuning •Customer/Partner benchmarks •Customer briefings Sun Solution Center Partner Solution Center •Architecture design and validation •Portfolio management and solutions offerings •Customer/Partner Proof-of-Concepts •End-to-end software development for live customers •Industry solutions development and showcase •Building of horizontal/biz solutions (eg: IdM, Security ..
    [Show full text]
  • The Mysql-Mariadb Story
    Michael Widenius, Entrepreneur The MySQL-MariaDB story Haaga-Helia, September 4, 2013 Michael “Monty” Widenius Entrepreneur, MariaDB hacker [email protected] http://mariadb.org/ Notice: MySQL is a registered trademark of Sun Microsystems, Inc. Questions addressed in talk 1) Brief MySQL & MariaDB history 2) What challenges did you face in the beginning and how did you overcome them? Eg Convincing early employees to join you, raising seed & venture capital etc. 3) How did you handle the growth of your venture? 4) Liquidity event. 5) End of story (or is it?) 6)Where is MariaDB today 7)Features of the different MariaDB releases 8)Challenges faced while creating MariaDB 9)Reasons for the success Notice: MySQL is a registered trademark of Sun Microsystems, Inc. The origin of My (SQL) At start: Lots of traveling and meeting interesting people Notice: MySQL is a registered trademark of Sun Microsystems, Inc. The origin of My (SQL) Combined with working from home Notice: MySQL is a registered trademark of Sun Microsystems, Inc. The origin of My (SQL) Things were good Notice: MySQL is a registered trademark of Sun Microsystems, Inc. The origin of Max (DB) We also made a MaxDB (based on SAP DB) and MySQL-max Notice: MySQL is a registered trademark of Sun Microsystems, Inc. The origin of My (SQL) Even if there were some growing pains Notice: MySQL is a registered trademark of Sun Microsystems, Inc. The origin of My (SQL) Then we came into strange company Notice: MySQL is a registered trademark of Sun Microsystems, Inc. The origin of My (SQL) Which scared some of us a bit..
    [Show full text]
  • Technical Support Policies
    MariaDB Support Services MariaDB Corporation delivers technical support services including Problem Resolution Support, Engineering Support, and Consultative Support for MariaDB Server, MariaDB ColumnStore, MariaDB MaxScale, MySQL Server, and related products via the Customer Support Portal. ​ ​ Each designated technical contact will receive a Customer Support Portal login (based on the associated email address) that can be used to report new support issues, monitor ongoing issues, or review historical issues. Information regarding making changes to technical contacts can be found in the "Welcome Letter" provided after signup, and is also available in the Help section of the Customer Support Portal. All support services are delivered in English. MariaDB will use reasonable efforts to provide technical support in languages other than English using MariaDB’s available personnel, but may not have such resources available or available at the time of the support request. Problem Resolution Support The focus of Problem Resolution Support is helping to restore service (due to outages caused by crashes, replication failures, table corruption, etc.), and assisting with command syntax, installation, configuration, upgrades, and other general product usage topics. Engineering Support Engineering Support can include bug fixes, patches, hot fixes, and topics that require communication with the product engineering team. Hot fixes are provided to address critical failures and may not receive the full QA and regression testing performed on regular maintenance releases due to the urgent nature of the situation. Custom feature development (Non-Recurring Engineering) is a separate service and is not included in Engineering Support. Consultative Support Consultative Support covers issues that are specific to a customer’s deployment, such as performance tuning, best practice recommendations, and code reviews, rather than general product usage, service failures, or software defects.
    [Show full text]