SlideShare a Scribd company logo
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template1
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template2
Insert Picture Here
MySQL Administration and
Monitoring
Mark Leith
Senior Software Development Manager @
Oracle
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template3
Program Agenda
§ Basic Command Line Tools
§ Internal Schemas
§ Backup / Recovery
§ GUI Tools
§ Monitoring
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template4
§ Basic Command Line Tools
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template5
Standard MySQL Client Programs
mysql MySQL command line/shell for SQL statements
mysqladmin Performing administrative operations. You can use it to check the server's
configuration and current status, to create and drop databases, and more
mysqlcheck Performs table maintenance: It checks, repairs, optimizes, or analyzes tables
mysqldump Used to export a database(s) for backup or transfer to another server. The
dump contains SQL statements to create tables, populate it with data, or both.
Can also generate files in CSV, delimited text, or XML format.
mysqlbinlog Replays Binary Logs for Point In Time recovery
mysqlimport Command-line interface to the LOAD DATA INFILE SQL statement.
http://dev.mysql.com/doc/refman/5.5/en/programs-client.html
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template6
Standard MySQL Client Programs Options
--host / -h The host where the MySQL Instance is running.
--port / -P The Port that the MySQL Instance is listening on.
--user / -u The User to connect as.
--password / -p The Password for the user.
--defaults-file The my.cnf/my.ini to use to read options from
http://dev.mysql.com/doc/refman/5.5/en/command-line-options.html
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template7
MySQL Startup Programs
mysqld The MySQL daemon – can be used to start directly (but has
no “keep alive” in this mode
mysqld_safe Recommended way to start on Unix. Starts angel process for
mysqld daemon.
mysql.server Used on systems (Linux and Solaris) that use System V-style
run directories to start and stop system services. Also used
by Mac OS X
mysqld_multi Manage Multiple MySQL Servers running on different ports or
sockets, with different data directories
http://dev.mysql.com/doc/refman/5.6/en/programs-server.html
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template8
§ Internal Schemas
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template9
mysql
§ The main system schema (a kind of Data Dictionary)
§ All user and privilege configuration
§ Stored programs (Procedures, Functions, Events)
§ Time Zone information
§ Also in 5.6
– InnoDB Table Index Statistics
– Replication State
http://dev.mysql.com/doc/refman/5.6/en/grant-table-structure.html
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template10
INFORMATION_SCHEMA
§ ANSI SQL (SQL:2003) – general access to database metadata
– Tables, indexes, constraints, views, triggers, routines, privileges
etc.
§ Also contains various extensions within MySQL
– Many of these are runtime metadata
– Processlist, system / status variables, InnoDB runtime data
§ System Views (not real views, not real tables, generated on the fly)
http://dev.mysql.com/doc/refman/5.6/en/information-schema.html
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template11
Performance Schema
§ MySQL's “Wait Interface”
§ Instruments various wait events
– File IO / Table IO / Network IO
– Mutexes (Semaphores) / R/W Locks / Conditions
– Table Locks
– Statements and Stages (connection states of execution)
http://dev.mysql.com/doc/refman/5.6/en/performance-schema.html
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template12
Performance Schema – Raw Wait Event
mysql> select * from performance_schema.events_waits_history
limit 1G
*************************** 1. row ***************************
THREAD_ID: 3
EVENT_ID: 11
END_EVENT_ID: 11
EVENT_NAME: wait/io/file/innodb/innodb_log_file
SOURCE: os0file.cc:5542
TIMER_START: 2543370511043700
TIMER_END: 2543370535624100
TIMER_WAIT: 24580400
SPINS: NULL
...
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template13
Performance Schema – Raw Wait Event Cont..
mysql> select * from performance_schema.events_waits_history
limit 1G
*************************** 1. row ***************************
...
OBJECT_SCHEMA: NULL
OBJECT_NAME: /Users/mark/sb/msb_5_7_2/data/ib_logfile0
INDEX_NAME: NULL
OBJECT_TYPE: FILE
OBJECT_INSTANCE_BEGIN: 4771328832
NESTING_EVENT_ID: NULL
NESTING_EVENT_TYPE: NULL
OPERATION: write
NUMBER_OF_BYTES: 512
FLAGS: NULL
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template14
Performance Schema – Raw Stage Event
mysql> select * from
performance_schema.events_stages_history_long limit 1G
*************************** 1. row ***************************
THREAD_ID: 25
EVENT_ID: 5199518
END_EVENT_ID: 5199536
EVENT_NAME: stage/sql/System lock
SOURCE: lock.cc:304
TIMER_START: 280557566125986000
TIMER_END: 280557566190403000
TIMER_WAIT: 64417000
NESTING_EVENT_ID: 5199509
NESTING_EVENT_TYPE: STATEMENT
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template15
Performance Schema – Raw Statement Event
mysql> select * from
performance_schema.events_statements_history_long limit 1G
*************************** 1. row ***************************
THREAD_ID: 24
EVENT_ID: 3923
END_EVENT_ID: 4044
EVENT_NAME: statement/sql/insert_select
SOURCE: mysqld.cc:931
TIMER_START: 251016737474892000
TIMER_END: 251016738730372000
TIMER_WAIT: 1255480000
LOCK_TIME: 573000000
...
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template16
Performance Schema – Raw Statement Event
mysql> select * from
performance_schema.events_statements_history_long limit 1G
*************************** 1. row ***************************
...
SQL_TEXT: insert into t2 select * from t1
DIGEST: e6f8db8a3f557ffbb2bf6a7b237cd897
DIGEST_TEXT: INSERT INTO `t2` SELECT * FROM `t1`
CURRENT_SCHEMA: test
OBJECT_TYPE: NULL
OBJECT_SCHEMA: NULL
OBJECT_NAME: NULL
OBJECT_INSTANCE_BEGIN: NULL
...
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template17
Performance Schema – Raw Statement Event
mysql> select * from
performance_schema.events_statements_history_long limit 1G
*************************** 1. row ***************************
...
MYSQL_ERRNO: 0
RETURNED_SQLSTATE: 00000
MESSAGE_TEXT: Records: 5 Duplicates: 0 Warnings: 0
ERRORS: 0
WARNINGS: 0
ROWS_AFFECTED: 5
ROWS_SENT: 0
ROWS_EXAMINED: 5
...
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template18
Performance Schema – Raw Statement Event
mysql> select * from
performance_schema.events_statements_history_long limit 1G
*************************** 1. row ***************************
...
CREATED_TMP_DISK_TABLES: 0
CREATED_TMP_TABLES: 0
SELECT_FULL_JOIN: 0
SELECT_FULL_RANGE_JOIN: 0
SELECT_RANGE: 0
SELECT_RANGE_CHECK: 0
SELECT_SCAN: 1
...
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template19
Performance Schema – Raw Statement Event
mysql> select * from
performance_schema.events_statements_history_long limit 1G
*************************** 1. row ***************************
...
SORT_MERGE_PASSES: 0
SORT_RANGE: 0
SORT_ROWS: 0
SORT_SCAN: 0
NO_INDEX_USED: 1
NO_GOOD_INDEX_USED: 0
NESTING_EVENT_ID: NULL
NESTING_EVENT_TYPE: NULL
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template20
§ Backup / Recovery
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template21
MySQL Backup Tools
§ Cold Backup (Offline, Physical)
– Simple file copy when instance down
§ Warm Backup (Locking, Logical)
– mysqldump
§ Standby Copy (Hot swappable)
– MySQL Replication
§ Hot Backup (Online, Physical)
– MySQL Enterprise Backup, mysqlbackup
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template22
MySQL Backup Tools – Cold Backup
§ Who wants to do this anyway..?
Moving on....
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template23
MySQL Backup Tools – Warm Backup
§ Advantages for mysqldump
– Good for small databases / tables
– Logical, so more flexible and portable
§ Disadvantages for mysqldump
– Single thread for dump and restore, slow for larger instances
– Not online, requires a transaction (for InnoDB) or global lock
(for all other non-transactional tables)
– Not incremental (needs binary logs as well, complex recovery)
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template24
MySQL Backup Tools – Hot Standby
§ Advantages for MySQL Replication
– Rolling snapshot
– Very quick failover
– Standby can be used for other backup types
§ Disadvantages for MySQL Replication
– Only latest point in time (can use delayed replication with 5.6)
– Not incremental (needs binary logs as well, complex recovery)
– Can't archive (offsite, though can have an offsite standby)
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template25
MySQL Backup Tools – Hot Backup
§ Advantages for MySQL Enterprise Backup
– Physical Backup, so very quick (especially restore)
– Ties in natively with Oracle Secure Backup to Tape (SBT)
– Multi-Thread for Performance
– Incremental Backups available
– Compression Built-In
§ Disadvantages for MySQL Enterprise Backup
– No logical option (good to have a periodic mysqldump too)
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template26
§ GUI Tools
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template27
MySQL Workbench
§ General purpose DBA / Developer Tool
– MySQL Instance Administration
– SQL Development
– Data Modeling
§ Commercial Extensions
– Audit Log Inspection
– Hot Backup
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template28
MySQL Workbench – Instance Overview
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template29
MySQL Workbench – Current Connections
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template30
MySQL Workbench – User Management
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template31
MySQL Workbench – Config Management
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template32
MySQL Workbench – Modeling
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template33
MySQL Workbench – Online Backup
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template34
§ Monitoring
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template35
MySQL Enterprise Monitor
§ Distributed Monitoring for
MySQL Environments
§ Intelligent analysis of key
metrics / configuration
§ Historical reporting
§ Query Analysis
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template36
MEM – Overview Dashboard
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template37
MEM - Advisors
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template38
MEM - Advisors
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template39
MEM - Events
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template40
MEM – Event Details
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template41
MEM – Timeseries Graphs
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template42
MEM – Query Analysis Overview
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template43
MEM – Query Analysis Query Details
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template44
§ Questions?
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template45
Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template46

More Related Content

ODP
Performance schema and_ps_helper
PDF
Instrumenting plugins for Performance Schema
PPT
MySQL 5.7: Performance Schema Improvements
PDF
MySQL for Oracle DBAs
PDF
Performance Schema and Sys Schema in MySQL 5.7
ODP
Getting to Know MySQL Enterprise Monitor
ODP
MySQL Monitoring Mechanisms
PPT
Developing Information Schema Plugins
Performance schema and_ps_helper
Instrumenting plugins for Performance Schema
MySQL 5.7: Performance Schema Improvements
MySQL for Oracle DBAs
Performance Schema and Sys Schema in MySQL 5.7
Getting to Know MySQL Enterprise Monitor
MySQL Monitoring Mechanisms
Developing Information Schema Plugins

What's hot (20)

PDF
Performance schema and sys schema
PDF
MySQL sys schema deep dive
ODP
MySQL Monitoring Mechanisms
PDF
MySQL's Performance Schema, SYS Schema and Workbench Integration
PDF
The MySQL SYS Schema
ODP
Introduction to MySQL Enterprise Monitor
PDF
Mysql tech day_paris_ps_and_sys
PDF
MySQL sys schema deep dive
PDF
The MySQL Performance Schema & New SYS Schema
PDF
Extending MySQL Enterprise Monitor
PDF
What's next after Upgrade to 12c
PDF
Basic MySQL Troubleshooting for Oracle DBAs
PDF
Double the Performance of Oracle SOA Suite 11g? Absolutely!
PDF
MySQL Troubleshooting with the Performance Schema
PDF
Performance Schema for MySQL troubleshooting
PDF
Basic MySQL Troubleshooting for Oracle DBAs
PPT
Less11 auditing
PPT
Less18 support
DOCX
Discoverer 11.1.1.7 web logic (10.3.6) & ebs r12 12.1.3) implementation guide...
PDF
MySQL Best Practices - OTN LAD Tour
Performance schema and sys schema
MySQL sys schema deep dive
MySQL Monitoring Mechanisms
MySQL's Performance Schema, SYS Schema and Workbench Integration
The MySQL SYS Schema
Introduction to MySQL Enterprise Monitor
Mysql tech day_paris_ps_and_sys
MySQL sys schema deep dive
The MySQL Performance Schema & New SYS Schema
Extending MySQL Enterprise Monitor
What's next after Upgrade to 12c
Basic MySQL Troubleshooting for Oracle DBAs
Double the Performance of Oracle SOA Suite 11g? Absolutely!
MySQL Troubleshooting with the Performance Schema
Performance Schema for MySQL troubleshooting
Basic MySQL Troubleshooting for Oracle DBAs
Less11 auditing
Less18 support
Discoverer 11.1.1.7 web logic (10.3.6) & ebs r12 12.1.3) implementation guide...
MySQL Best Practices - OTN LAD Tour
Ad

Viewers also liked (14)

PDF
MySQL Monitoring 101
PDF
MySQL Performance Metrics that Matter
PPTX
20100810
PDF
MySQL administration in Amazon RDS
PDF
[INSIGHT OUT 2011] B12 better my sql security and administration(ronald)
ODP
MySQL GUI Administration
PDF
1. Ms Excel Ung Dung Trong Kinh Te (Phan I)
PDF
Percona Toolkit for Effective MySQL Administration
PDF
Iig excel 2010_exercise_vn
PDF
MySQL Workbench for DFW Unix Users Group
ODP
MySQL Monitoring Shoot Out
PDF
Lap+trinh+vba
PDF
Workbench "Always on the Job!"© software-as-a-service for social collaboration
PDF
Mysql administration
MySQL Monitoring 101
MySQL Performance Metrics that Matter
20100810
MySQL administration in Amazon RDS
[INSIGHT OUT 2011] B12 better my sql security and administration(ronald)
MySQL GUI Administration
1. Ms Excel Ung Dung Trong Kinh Te (Phan I)
Percona Toolkit for Effective MySQL Administration
Iig excel 2010_exercise_vn
MySQL Workbench for DFW Unix Users Group
MySQL Monitoring Shoot Out
Lap+trinh+vba
Workbench "Always on the Job!"© software-as-a-service for social collaboration
Mysql administration
Ad

Similar to MySQL Administration and Monitoring (20)

PDF
MySQL Enterprise Monitor
PDF
MySQL for Oracle DBAs
ODP
MySQL Enterprise Portfolio
PDF
MySQL Enterprise Monitor
PDF
My sql crashcourse_intro_kdl
PDF
MySQL Community and Commercial Edition
PPTX
MySQL enterprise edition
PDF
MySQL Webinar Series 3/4 - MySQl Monitoring With Enterprise Monitor + Query A...
PDF
From Nice to Have to Mission Critical: MySQL Enterprise Edition
PDF
Oracle Enterprise Manager for MySQL
PDF
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
PDF
MySQL Enterprise Monitor
PDF
MySQL Enterprise Edition - Complete Guide (2019)
PDF
MySQL Day Paris 2018 - Introduction & The State of the Dolphin
PDF
What's New in MySQL 8.0 @ HKOSC 2017
ODP
MySQL for Oracle DBAs
PDF
Embracing Database Diversity: The New Oracle / MySQL DBA - UKOUG
PPTX
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
PDF
MySQL Enterprise Edition Overview
PDF
01 demystifying mysq-lfororacledbaanddeveloperv1
MySQL Enterprise Monitor
MySQL for Oracle DBAs
MySQL Enterprise Portfolio
MySQL Enterprise Monitor
My sql crashcourse_intro_kdl
MySQL Community and Commercial Edition
MySQL enterprise edition
MySQL Webinar Series 3/4 - MySQl Monitoring With Enterprise Monitor + Query A...
From Nice to Have to Mission Critical: MySQL Enterprise Edition
Oracle Enterprise Manager for MySQL
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
MySQL Enterprise Monitor
MySQL Enterprise Edition - Complete Guide (2019)
MySQL Day Paris 2018 - Introduction & The State of the Dolphin
What's New in MySQL 8.0 @ HKOSC 2017
MySQL for Oracle DBAs
Embracing Database Diversity: The New Oracle / MySQL DBA - UKOUG
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
MySQL Enterprise Edition Overview
01 demystifying mysq-lfororacledbaanddeveloperv1

Recently uploaded (20)

PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
cuic standard and advanced reporting.pdf
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
KodekX | Application Modernization Development
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Electronic commerce courselecture one. Pdf
PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
A Presentation on Artificial Intelligence
PDF
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
PDF
Empathic Computing: Creating Shared Understanding
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Machine learning based COVID-19 study performance prediction
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
20250228 LYD VKU AI Blended-Learning.pptx
cuic standard and advanced reporting.pdf
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Digital-Transformation-Roadmap-for-Companies.pptx
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
KodekX | Application Modernization Development
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Encapsulation_ Review paper, used for researhc scholars
Network Security Unit 5.pdf for BCA BBA.
Electronic commerce courselecture one. Pdf
NewMind AI Monthly Chronicles - July 2025
A Presentation on Artificial Intelligence
Shreyas Phanse Resume: Experienced Backend Engineer | Java • Spring Boot • Ka...
Empathic Computing: Creating Shared Understanding
Review of recent advances in non-invasive hemoglobin estimation
Machine learning based COVID-19 study performance prediction
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
CIFDAQ's Market Insight: SEC Turns Pro Crypto

MySQL Administration and Monitoring

  • 1. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template1
  • 2. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template2 Insert Picture Here MySQL Administration and Monitoring Mark Leith Senior Software Development Manager @ Oracle
  • 3. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template3 Program Agenda § Basic Command Line Tools § Internal Schemas § Backup / Recovery § GUI Tools § Monitoring
  • 4. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template4 § Basic Command Line Tools
  • 5. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template5 Standard MySQL Client Programs mysql MySQL command line/shell for SQL statements mysqladmin Performing administrative operations. You can use it to check the server's configuration and current status, to create and drop databases, and more mysqlcheck Performs table maintenance: It checks, repairs, optimizes, or analyzes tables mysqldump Used to export a database(s) for backup or transfer to another server. The dump contains SQL statements to create tables, populate it with data, or both. Can also generate files in CSV, delimited text, or XML format. mysqlbinlog Replays Binary Logs for Point In Time recovery mysqlimport Command-line interface to the LOAD DATA INFILE SQL statement. http://dev.mysql.com/doc/refman/5.5/en/programs-client.html
  • 6. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template6 Standard MySQL Client Programs Options --host / -h The host where the MySQL Instance is running. --port / -P The Port that the MySQL Instance is listening on. --user / -u The User to connect as. --password / -p The Password for the user. --defaults-file The my.cnf/my.ini to use to read options from http://dev.mysql.com/doc/refman/5.5/en/command-line-options.html
  • 7. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template7 MySQL Startup Programs mysqld The MySQL daemon – can be used to start directly (but has no “keep alive” in this mode mysqld_safe Recommended way to start on Unix. Starts angel process for mysqld daemon. mysql.server Used on systems (Linux and Solaris) that use System V-style run directories to start and stop system services. Also used by Mac OS X mysqld_multi Manage Multiple MySQL Servers running on different ports or sockets, with different data directories http://dev.mysql.com/doc/refman/5.6/en/programs-server.html
  • 8. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template8 § Internal Schemas
  • 9. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template9 mysql § The main system schema (a kind of Data Dictionary) § All user and privilege configuration § Stored programs (Procedures, Functions, Events) § Time Zone information § Also in 5.6 – InnoDB Table Index Statistics – Replication State http://dev.mysql.com/doc/refman/5.6/en/grant-table-structure.html
  • 10. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template10 INFORMATION_SCHEMA § ANSI SQL (SQL:2003) – general access to database metadata – Tables, indexes, constraints, views, triggers, routines, privileges etc. § Also contains various extensions within MySQL – Many of these are runtime metadata – Processlist, system / status variables, InnoDB runtime data § System Views (not real views, not real tables, generated on the fly) http://dev.mysql.com/doc/refman/5.6/en/information-schema.html
  • 11. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template11 Performance Schema § MySQL's “Wait Interface” § Instruments various wait events – File IO / Table IO / Network IO – Mutexes (Semaphores) / R/W Locks / Conditions – Table Locks – Statements and Stages (connection states of execution) http://dev.mysql.com/doc/refman/5.6/en/performance-schema.html
  • 12. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template12 Performance Schema – Raw Wait Event mysql> select * from performance_schema.events_waits_history limit 1G *************************** 1. row *************************** THREAD_ID: 3 EVENT_ID: 11 END_EVENT_ID: 11 EVENT_NAME: wait/io/file/innodb/innodb_log_file SOURCE: os0file.cc:5542 TIMER_START: 2543370511043700 TIMER_END: 2543370535624100 TIMER_WAIT: 24580400 SPINS: NULL ...
  • 13. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template13 Performance Schema – Raw Wait Event Cont.. mysql> select * from performance_schema.events_waits_history limit 1G *************************** 1. row *************************** ... OBJECT_SCHEMA: NULL OBJECT_NAME: /Users/mark/sb/msb_5_7_2/data/ib_logfile0 INDEX_NAME: NULL OBJECT_TYPE: FILE OBJECT_INSTANCE_BEGIN: 4771328832 NESTING_EVENT_ID: NULL NESTING_EVENT_TYPE: NULL OPERATION: write NUMBER_OF_BYTES: 512 FLAGS: NULL
  • 14. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template14 Performance Schema – Raw Stage Event mysql> select * from performance_schema.events_stages_history_long limit 1G *************************** 1. row *************************** THREAD_ID: 25 EVENT_ID: 5199518 END_EVENT_ID: 5199536 EVENT_NAME: stage/sql/System lock SOURCE: lock.cc:304 TIMER_START: 280557566125986000 TIMER_END: 280557566190403000 TIMER_WAIT: 64417000 NESTING_EVENT_ID: 5199509 NESTING_EVENT_TYPE: STATEMENT
  • 15. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template15 Performance Schema – Raw Statement Event mysql> select * from performance_schema.events_statements_history_long limit 1G *************************** 1. row *************************** THREAD_ID: 24 EVENT_ID: 3923 END_EVENT_ID: 4044 EVENT_NAME: statement/sql/insert_select SOURCE: mysqld.cc:931 TIMER_START: 251016737474892000 TIMER_END: 251016738730372000 TIMER_WAIT: 1255480000 LOCK_TIME: 573000000 ...
  • 16. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template16 Performance Schema – Raw Statement Event mysql> select * from performance_schema.events_statements_history_long limit 1G *************************** 1. row *************************** ... SQL_TEXT: insert into t2 select * from t1 DIGEST: e6f8db8a3f557ffbb2bf6a7b237cd897 DIGEST_TEXT: INSERT INTO `t2` SELECT * FROM `t1` CURRENT_SCHEMA: test OBJECT_TYPE: NULL OBJECT_SCHEMA: NULL OBJECT_NAME: NULL OBJECT_INSTANCE_BEGIN: NULL ...
  • 17. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template17 Performance Schema – Raw Statement Event mysql> select * from performance_schema.events_statements_history_long limit 1G *************************** 1. row *************************** ... MYSQL_ERRNO: 0 RETURNED_SQLSTATE: 00000 MESSAGE_TEXT: Records: 5 Duplicates: 0 Warnings: 0 ERRORS: 0 WARNINGS: 0 ROWS_AFFECTED: 5 ROWS_SENT: 0 ROWS_EXAMINED: 5 ...
  • 18. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template18 Performance Schema – Raw Statement Event mysql> select * from performance_schema.events_statements_history_long limit 1G *************************** 1. row *************************** ... CREATED_TMP_DISK_TABLES: 0 CREATED_TMP_TABLES: 0 SELECT_FULL_JOIN: 0 SELECT_FULL_RANGE_JOIN: 0 SELECT_RANGE: 0 SELECT_RANGE_CHECK: 0 SELECT_SCAN: 1 ...
  • 19. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template19 Performance Schema – Raw Statement Event mysql> select * from performance_schema.events_statements_history_long limit 1G *************************** 1. row *************************** ... SORT_MERGE_PASSES: 0 SORT_RANGE: 0 SORT_ROWS: 0 SORT_SCAN: 0 NO_INDEX_USED: 1 NO_GOOD_INDEX_USED: 0 NESTING_EVENT_ID: NULL NESTING_EVENT_TYPE: NULL
  • 20. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template20 § Backup / Recovery
  • 21. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template21 MySQL Backup Tools § Cold Backup (Offline, Physical) – Simple file copy when instance down § Warm Backup (Locking, Logical) – mysqldump § Standby Copy (Hot swappable) – MySQL Replication § Hot Backup (Online, Physical) – MySQL Enterprise Backup, mysqlbackup
  • 22. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template22 MySQL Backup Tools – Cold Backup § Who wants to do this anyway..? Moving on....
  • 23. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template23 MySQL Backup Tools – Warm Backup § Advantages for mysqldump – Good for small databases / tables – Logical, so more flexible and portable § Disadvantages for mysqldump – Single thread for dump and restore, slow for larger instances – Not online, requires a transaction (for InnoDB) or global lock (for all other non-transactional tables) – Not incremental (needs binary logs as well, complex recovery)
  • 24. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template24 MySQL Backup Tools – Hot Standby § Advantages for MySQL Replication – Rolling snapshot – Very quick failover – Standby can be used for other backup types § Disadvantages for MySQL Replication – Only latest point in time (can use delayed replication with 5.6) – Not incremental (needs binary logs as well, complex recovery) – Can't archive (offsite, though can have an offsite standby)
  • 25. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template25 MySQL Backup Tools – Hot Backup § Advantages for MySQL Enterprise Backup – Physical Backup, so very quick (especially restore) – Ties in natively with Oracle Secure Backup to Tape (SBT) – Multi-Thread for Performance – Incremental Backups available – Compression Built-In § Disadvantages for MySQL Enterprise Backup – No logical option (good to have a periodic mysqldump too)
  • 26. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template26 § GUI Tools
  • 27. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template27 MySQL Workbench § General purpose DBA / Developer Tool – MySQL Instance Administration – SQL Development – Data Modeling § Commercial Extensions – Audit Log Inspection – Hot Backup
  • 28. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template28 MySQL Workbench – Instance Overview
  • 29. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template29 MySQL Workbench – Current Connections
  • 30. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template30 MySQL Workbench – User Management
  • 31. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template31 MySQL Workbench – Config Management
  • 32. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template32 MySQL Workbench – Modeling
  • 33. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template33 MySQL Workbench – Online Backup
  • 34. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template34 § Monitoring
  • 35. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template35 MySQL Enterprise Monitor § Distributed Monitoring for MySQL Environments § Intelligent analysis of key metrics / configuration § Historical reporting § Query Analysis
  • 36. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template36 MEM – Overview Dashboard
  • 37. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template37 MEM - Advisors
  • 38. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template38 MEM - Advisors
  • 39. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template39 MEM - Events
  • 40. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template40 MEM – Event Details
  • 41. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template41 MEM – Timeseries Graphs
  • 42. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template42 MEM – Query Analysis Overview
  • 43. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template43 MEM – Query Analysis Query Details
  • 44. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template44 § Questions?
  • 45. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template45
  • 46. Copyright © 2013, Oracle and/or its affiliates. All rights reserved. Insert Information Protection Policy Classification from Slide 12 of the corporate presentation template46