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

What's hot (20)

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

Viewers also liked (14)

PDF
MySQL Monitoring 101
Ronald Bradford
 
PDF
MySQL Performance Metrics that Matter
Morgan Tocker
 
PPTX
20100810
guanqoo
 
PDF
MySQL administration in Amazon RDS
Pythian
 
PDF
[INSIGHT OUT 2011] B12 better my sql security and administration(ronald)
Insight Technology, Inc.
 
ODP
MySQL GUI Administration
Jaime Crespo
 
PDF
1. Ms Excel Ung Dung Trong Kinh Te (Phan I)
Công ty cổ phần thương mại và xây dựng Đức Huy
 
PDF
Percona Toolkit for Effective MySQL Administration
Mydbops
 
PDF
Iig excel 2010_exercise_vn
Chi Lê Yến
 
PDF
MySQL Workbench for DFW Unix Users Group
Dave Stokes
 
ODP
MySQL Monitoring Shoot Out
Kris Buytaert
 
PDF
Lap+trinh+vba
xitrumball
 
PDF
Workbench "Always on the Job!"© software-as-a-service for social collaboration
tom termini
 
PDF
Mysql administration
beben benzy
 
MySQL Monitoring 101
Ronald Bradford
 
MySQL Performance Metrics that Matter
Morgan Tocker
 
20100810
guanqoo
 
MySQL administration in Amazon RDS
Pythian
 
[INSIGHT OUT 2011] B12 better my sql security and administration(ronald)
Insight Technology, Inc.
 
MySQL GUI Administration
Jaime Crespo
 
1. Ms Excel Ung Dung Trong Kinh Te (Phan I)
Công ty cổ phần thương mại và xây dựng Đức Huy
 
Percona Toolkit for Effective MySQL Administration
Mydbops
 
Iig excel 2010_exercise_vn
Chi Lê Yến
 
MySQL Workbench for DFW Unix Users Group
Dave Stokes
 
MySQL Monitoring Shoot Out
Kris Buytaert
 
Lap+trinh+vba
xitrumball
 
Workbench "Always on the Job!"© software-as-a-service for social collaboration
tom termini
 
Mysql administration
beben benzy
 
Ad

Similar to MySQL Administration and Monitoring (20)

PDF
MySQL Enterprise Monitor
Mark Swarbrick
 
PDF
MySQL for Oracle DBAs
Mario Beck
 
ODP
MySQL Enterprise Portfolio
Abel Flórez
 
PDF
MySQL Enterprise Monitor
Ted Wennmark
 
PDF
My sql crashcourse_intro_kdl
sqlhjalp
 
PDF
MySQL Community and Commercial Edition
Mario Beck
 
PPTX
MySQL enterprise edition
Mark Swarbrick
 
PDF
MySQL Webinar Series 3/4 - MySQl Monitoring With Enterprise Monitor + Query A...
Mark Swarbrick
 
PDF
From Nice to Have to Mission Critical: MySQL Enterprise Edition
郁萍 王
 
PDF
Oracle Enterprise Manager for MySQL
Mario Beck
 
PDF
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
GeneXus
 
PDF
MySQL Enterprise Monitor
Mario Beck
 
PDF
MySQL Enterprise Edition - Complete Guide (2019)
Keith Hollman
 
PDF
MySQL Day Paris 2018 - Introduction & The State of the Dolphin
Olivier DASINI
 
PDF
What's New in MySQL 8.0 @ HKOSC 2017
Ivan Ma
 
ODP
MySQL for Oracle DBAs
Ben Krug
 
PDF
Embracing Database Diversity: The New Oracle / MySQL DBA - UKOUG
Keith Hollman
 
PPTX
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
OracleMySQL
 
PDF
MySQL Enterprise Edition Overview
Mario Beck
 
PDF
01 demystifying mysq-lfororacledbaanddeveloperv1
Ivan Ma
 
MySQL Enterprise Monitor
Mark Swarbrick
 
MySQL for Oracle DBAs
Mario Beck
 
MySQL Enterprise Portfolio
Abel Flórez
 
MySQL Enterprise Monitor
Ted Wennmark
 
My sql crashcourse_intro_kdl
sqlhjalp
 
MySQL Community and Commercial Edition
Mario Beck
 
MySQL enterprise edition
Mark Swarbrick
 
MySQL Webinar Series 3/4 - MySQl Monitoring With Enterprise Monitor + Query A...
Mark Swarbrick
 
From Nice to Have to Mission Critical: MySQL Enterprise Edition
郁萍 王
 
Oracle Enterprise Manager for MySQL
Mario Beck
 
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
GeneXus
 
MySQL Enterprise Monitor
Mario Beck
 
MySQL Enterprise Edition - Complete Guide (2019)
Keith Hollman
 
MySQL Day Paris 2018 - Introduction & The State of the Dolphin
Olivier DASINI
 
What's New in MySQL 8.0 @ HKOSC 2017
Ivan Ma
 
MySQL for Oracle DBAs
Ben Krug
 
Embracing Database Diversity: The New Oracle / MySQL DBA - UKOUG
Keith Hollman
 
MySQL in oracle_environments(Part 2): MySQL Enterprise Monitor & Oracle Enter...
OracleMySQL
 
MySQL Enterprise Edition Overview
Mario Beck
 
01 demystifying mysq-lfororacledbaanddeveloperv1
Ivan Ma
 
Ad

Recently uploaded (20)

PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PDF
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
Biography of Daniel Podor.pdf
Daniel Podor
 
PDF
Advancing WebDriver BiDi support in WebKit
Igalia
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
What Makes Contify’s News API Stand Out: Key Features at a Glance
Contify
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Biography of Daniel Podor.pdf
Daniel Podor
 
Advancing WebDriver BiDi support in WebKit
Igalia
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Transcript: New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 

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