SlideShare una empresa de Scribd logo
1 de 47
Descargar para leer sin conexión
common_schema 2.2
DBA's framework for MySQL

Shlomi Noach
http://openark.org
common_schema 2.2
DBA's framework for MySQL


About



Views & eval()



Routines



QueryScript



Introducing rdebug

Copyright © 2013, Shlomi Noach
About myself


Shlomi Noach, geek



Software engineer, DBA





Author of open source tools
common_schema, openark kit,
mycheckpoint, others.
Blog on all things MySQL
http://openark.org



Employed by
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
About common_schema




common_schema is an open source
project, licensed under the GPL License.
Authored by Shlomi Noach
http://openark.org



Major contributions by Roland Bouman
http://rpbouman.blogspot.com



Several contributions & suggestions by the
community
(Thanks!)

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
About common_schema


common_schema is a framework which
includes:
–

Views: analytics, security, action-taking, ...

–

Routines: text, temporal, process, security, ...

–

QueryScript: an SQL oriented scripting
language & interpreter

–

rdebug: debugger and debugging API for
MySQL stored routines (alpha).

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
About common_schema




It is a schema that lies next to
INFORMATION_SCHEMA.
It lies completely within the MySQL server,
and does not require external packages or
dependencies. No Perl scripts nor UDFs or
plugins.

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Getting & Installing


common_schema distribution is a SQL file.



Currently hosted on Google Code:
http://code.google.com/p/common-schema/



Install by importing SQL file into MySQL:
bash$ mysql < /tmp/common_schema-2.2.sql
complete
- Base components: installed
- InnoDB Plugin components: installed
- Percona Server components: not installed
- TokuDB components: partial install: 1/2
Installation complete. Thank you for using
common_schema!
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views






Views providing non-trivial information
about your table design, keys, grants,
processes, transactions, locks, ...
While INFORMATION_SCHEMA provides
with complete info, it is ofter difficult to
aggregate. It is sometimes too normalized,
and at other times too de-normalized.
Some metadata is simply not available in
INFORMATION_SCHEMA.
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views






common_schema's views will present with
valuable knowledge
And will typically offer recommendations
or possible actions based on that
knowledge.
common_schema also provides the
mechanism to apply those
recommendations.
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views: redundant_keys


Find duplicate/redundant keys in your
schema. Recommend DROP statements.
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/redundant_keys.html

–

Similar to pt-duplicate-key-checker

mysql> select * from redundant_keys
where table_schema='sakila'G
table_schema: sakila
table_name: rental
redundant_index_name: rental_date_2
redundant_index_columns: rental_date
redundant_index_non_unique: 1
dominant_index_name: rental_date
dominant_index_columns: rental_date, inventory_id,
customer_id
dominant_index_non_unique: 0
sql_drop_index: ALTER TABLE `sakila`.`rental`
DROP INDEX `rental_date_2`

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views: sql_range_partitions


Analyze your range partitioned tables.
Offers the ADD/REORGANIZE PARTITION
statements to roll partitions:
mysql> create table test.report …

partition by range (…) ;

mysql> select * from sql_range_partitions where
table_name='report' G
table_schema: test
table_name: report
count_partitions: 7
sql_drop_first_partition: alter table `test`.`report`
drop partition `p0`
sql_add_next_partition: alter table `test`.`report`
reorganize partition `p6` into (
partition `p_20090701000000` values less than
(1246395600) /* 2009-07-01 00:00:00 */ ,
partition p_maxvalue values less than MAXVALUE
)

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views: sql grants




Provide SQL based access to user accounts
and their grants.
Offers the relevant GRANT, REVOKE and
DROP statements for such grants:
GRANTEE:
user:
host:
priv_level:
priv_level_name:
current_privileges:
sql_grant:

'world_user'@'localhost'
world_user
localhost
`world`.*
schema
INSERT, SELECT, UPDATE
GRANT INSERT, SELECT, UPDATE ON
`world`.* TO 'world_user'@'%'
sql_revoke: REVOKE INSERT, SELECT, UPDATE ON
`world`.* FROM 'world_user'@'%'

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
SQL generation & eval()






Views above present with “SQL columns”,
offering a statement to execute.
This is at the heart of common_schema's
views, and is part of the server-side
mechanism the framework strongly
supports.
The eval() routine accepts such SQL
columns and executes (evaluates) them.
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
eval()


Accepts a query returning a text column.
Column data is expected to be SQL
statements to be executed.
mysql> call eval("
SELECT sql_add_next_partition
FROM sql_range_partitions
WHERE table_schema='webprod'");
Query OK, 0 rows affected
-- A new partition has just been added on
-- all range-partitioned tables in `webprod`

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
eval()
KILL QUERY 123
KILL QUERY 129
KILL QUERY 598

Execute query

KILL QUERY 620
KILL QUERY 702

eval()
Query
common_schema

DBA's framework for MySQL

Execute statements

Copyright © 2013, Shlomi Noach
Views: innodb_transactions


Which transactions are running?
–
–

How long are they being idle? Locked?

–


For how long?
What queries are they issuing?

Recommend KILL, apply with eval()
mysql> call eval("
SELECT sql_kill_query
FROM innodb_transactions
WHERE trx_idle_seconds >= 30
");

-- All idle transactions have just been killed
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views: others








processlist_grantees: identifies the user
connection with its associated account
(missing info in MySQL)
auto_increment_columns: find “free space”
or “usage” for AUTO_INCREMENT values
slave_status: get Seconds_behind_master
via real SQL query
last_query_profiling :aggregated profile for
last executed query
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views: processlist_grantees
mysql> select * from processlist_granteesG
ID: 41165491
USER: dbuser
HOST: web00.myapp:40049
DB: profile
COMMAND: Query
TIME: 0
STATE: updating
INFO: DELETE FROM locks WHERE id =
'helper' AND dt < '2013-04-17 15:09:50'
GRANTEE: 'dbuser'@'%.myapp'
grantee_user: dbuser
grantee_host: %.myapp
is_super: 0
is_repl: 0
is_current: 0
sql_kill_query: KILL QUERY 41165491
sql_kill_connection: KILL 41165491

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Views: others


sql_accounts: block/release accounts



similar_grants: detect security roles







global_status_diff_nonzero: detect status
change
innodb_locked_transactions: who locks
who, on which query? Recommend KILL
more...
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/process_views.html
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/innodb_plugin_views.html
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/security_views.html
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/schema_analysis_views.html

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Routines




common_schema offers more than 60
useful stored routines, part of the
framework's function library.
From text parsing & manipulation,
through process diagnostics, query
analysis & dynamic execution, to security
routines, the function library extends and
complements MySQL's own functions.
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/execution_routines.html
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/text_routines.html
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/security_routines.html
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/process_routines.html

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Routines: security






killall() kills connections by matching text
with user, host or grantee.
security_audit() audits server's privileges
tables and configuration to detect such
threats as empty or duplicate passwords,
excessive privileges, permissive hosts etc.
duplicate_grantee(): duplicates an account
mysql> call killall('analytics');
mysql> call killall('localhost');
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Routines: text






extract_json_value(): Extract value from
JSON notation via Xpath.
replace_sections(): Search and replace text
appearing between section.
get_num_tokens(): Return number of
tokens in delimited text.
mysql> select
'the
=> 4
mysql> select
'the
=> 'brown'

common_schema.get_num_tokens(
quick brown fox', ' ');
common_schema.split_token(
quick brown fox', ' ', 3);

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Routines: text
mysql> set @json := '{
"menu": {
"id": "file",
"value": "File",
"popup": {
"menuitem": [
{"value": "New", "onclick": "create()"},
{"value": "Open", "onclick": "open()"},
{"value": "Close", "onclick": "close()"}
]
}
}
}';
mysql> select extract_json_value(@json, '//id') AS result;
+--------+
| result |
+--------+
| file
|
+--------+

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Routines: general






query_checksum(): Checksum the result
set of a query.
crc64(): Return a 64 bit CRC of given input,
as unsigned big integer.
random_hash(): Return a 64 bit CRC of
given input, as unsigned big integer.
mysql> call query_checksum(
'select code, name from world.Country order by code');
+----------------------------------+
| checksum
|
+----------------------------------+
| 79221e8d040e33cd3262f1680b4c8e54 |
+----------------------------------+

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Routines: SQL & execution






eval() evaluates the queries generated by a
given query.
exec(), exec_file() dynamically executes a
given query or semicolon delimited list of
queries.
run(), run_file() execute QueryScript code.
mysql> call exec('
CREATE TABLE test.t(id INT);
INSERT INTO test.t VALUES (2),(3),(5);
');
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript






A SQL oriented scripting language, offering
tight integration with SQL commands, easy
and familiar control flow syntax and high
level abstraction of complex tasks.
common_schema implements QueryScript
via interpreter, based on stored routines.
This makes QueryScript suitable for
administration and bulk tasks, not for
OLTP tasks.
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/query_script.html

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Why QueryScript?


Stored routine programming is a pain:
–

Requires one to actually store the routine
within the schema: can't just run something.

–

Syntax is cumbersome (ANSI:SQL).

–

Does not offer deeper insight into MySQL's
limitations and bottlenecks.

–

Does not provide with syntax for oh-socommon tasks

–

Verbose. Can't see the forest for the trees.

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Compare: stored routine
DELIMITER $$
DROP PROCEDURE IF EXISTS some_proc $$
CREATE PROCEDURE some_proc()
READS SQL DATA
SQL SECURITY INVOKER
begin
declare some_id bigint unsigned default null;
declare done tinyint default 0;
declare my_cursor cursor for SELECT some_id FROM some_table;
declare continue handler for NOT FOUND set done = 1;
open my_cursor;
read_loop: loop
fetch my_cursor into some_id;
if done then
leave read_loop;
end if;
-- do something with some_id
end loop;
close my_cursor;
end $$
DELIMITER ;

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Compare: QueryScript
set @script := '
foreach ($some_id: select some_id from some_table)
{
-- do something with $some_id
}
';
call run(@script);


Significantly less overhead



Familiar C-family syntax



No need to store the code in schema



Can execute script directly from file
call run('/path/to/script.qs');
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: variables




Create variables which are known to
initialize as NULL and are known to clean
up as they exit scope.
Can be expanded and used where MySQL
does not allow variables.
var $count := 20;
var $pop
:= 1000000;
var $tbl
:= 'City';
select * from world.:${tbl}
where population >= $pop limit :${count};
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: conditions




Familiar if, while or loop-while statements.
But conditions are also tightly integrated
with SQL, and so queries make for valid
conditions.
if (@val > 3) {
pass;
}
while (delete from world.Country
where Continent = 'Asia' limit 10)
{
throttle 2;
}
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: foreach






A sophisticated looping device, allowing
iteration over queries, sets, numbers
range, databases, tables...
But also acknowledges MySQL limitations
and provides with a safer access method.
Table iteration uses INFORMATION_SCHEMA
optimizations to avoid excessive locks:
foreach($tbl, $scm: table like wp_posts)
alter table :${scm}.:${tbl} add column
post_geo_location VARCHAR(128);
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: foreach
foreach($year: 2001:2009)
delete from sakila.rental where
rental_date >= CONCAT($year, '-07-01')
and rental_date < CONCAT($year, '-09-01');

foreach($shard: {US, GB, Japan, FRA})
create database dbshard_:${shard};
foreach($scm: schema like wp%) {
create table :$scm.wp_likes(
id int, data VARCHAR(128));
}
foreach ($some_id: select some_id
from some_table) {...
}
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: split






Automagically breaks a bulk operation into
smaller chunks.
Supports DELETE, UPDATE,
INSERT...SELECT, REPLACE...SELECT
Supports single and multi table statements
split (delete from sakila.rental where
rental_date < NOW() - interval 5 year);
split (insert into world.City_duplicate
select * from world.City) {
throttle 1;
}
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: split
split(update sakila.film_actor
set last_update=now() where actor_id != 4)
{

}

select $split_columns
$split_range_start
$split_range_end
$split_total_rowcount

as
as
as
as

columns,
range_start,
range_end,
total;

+----------------------+-------------+------------+-------+
| columns
| range_start | range_end | total |
+----------------------+-------------+------------+-------+
| `actor_id`,`film_id` | '1','1'
| '39','293' |
978 |
+----------------------+-------------+------------+-------+
+----------------------+-------------+------------+-------+
| columns
| range_start | range_end | total |
+----------------------+-------------+------------+-------+
| `actor_id`,`film_id` | '39','293' | '76','234' | 1978 |
+----------------------+-------------+------------+-------+
+----------------------+-------------+-------------+-------+
| columns
| range_start | range_end
| total |
+----------------------+-------------+-------------+-------+
| `actor_id`,`film_id` | '76','234' | '110','513' | 2978 |
+----------------------+-------------+-------------+-------+

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: split, example


Real world use case: need to copy
120,000,000 rows belonging to a specific
partition from range-partitioned table
2013-02
2013-03
2013-04
2013-05

2013-05

2013-06

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: split, example




We provide hints to the split statement:
choosing index, start position, chunk size.
Terminate when out of range.
split (
{ index: PRIMARY, start: '2013-05-01',
step: 20000 } :
insert into one_month_sample
select * from
table_with_many_month_partitions
where entry_date < DATE('2013-05-01')
) {
if ($split_range_start >= DATE('2013-05-01'))
Break;
throttle 1;
}

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: example


Create shards & tables, and copy row data:
-- iterate shards
foreach ($shard: {US, GB, Japan, FRA}) {
create database dbshard_:${shard};
-- iterate tables
foreach ($tbl: table in original_shard) {
create table dbshard_:${shard}.:${tbl}
like original_shard.:$tbl;
-- copy table data
split (insert into dbshard_:${shard}.:${tbl}
select * from original_shard.:$tbl) {
-- show progress
select $shard, $tbl, $split_total_rowcount;
throttle 1;
}
}
}

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
QueryScript: more goodies








throttle statement controls script
execution time, reduces server load
Local variables auto-cleanup, can be used
(expanded) in statements where variables
not allowed (table names, LIMIT value etc.)
try-catch statement is available: easy error
handling mechanism
echo, eval, throw statements make for
easy development
common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
rdebug








common_schema introduces rdebug:
debugger and debugging API for MySQL
stored routines.
A server side solution, based in itself on
stored routines.
Provides routine API calls to manage
debugging sessions of other routines.
At this time (April 2013) in alpha stage
http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/rdebug.html

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
rdebug


Uses code injection; one must “compile”
her routine with/out debug code.
–



Does not emulate code; retains logic of one's
routines, with some limitations.

Supports:
–

Step into/over/out

–

Watch variables, modify variables

–

Set breakpoint, run to breakpoint

–

Watch stack state, statements

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
rdebug


common_schema provides with stored
routine API.
–

–



One may debug on command line using
mysql client
Or one may wrap with GUI tool to call upon
routine API

Awaiting GUI client implementations!

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
rdebug
mysql [debugger]> call rdebug_step_into();
+-------------+----------------+---------------+--------------+---------------------+
| stack_level | routine_schema | routine_name | statement_id | entry_time
|
+-------------+----------------+---------------+--------------+---------------------+
|
1 | test
| review_colors |
145 | 2013-04-08 15:41:28 |
+-------------+----------------+---------------+--------------+---------------------+
+----------------+---------------+---------------+---------------+----------------+
| routine_schema | routine_name | variable_name | variable_type | variable_value |
+----------------+---------------+---------------+---------------+----------------+
| test
| review_colors | current_color | local
| white
|
| test
| review_colors | current_count | local
| 10
|
| test
| review_colors | done
| local
| 0
|
+----------------+---------------+---------------+---------------+----------------+
+----------------+---------------+--------------+-----------------------------------------+
| routine_schema | routine_name | statement_id | statement
|
+----------------+---------------+--------------+-----------------------------------------+
| test
| review_colors |
145 | call review_single_color(current_color) |
+----------------+---------------+--------------+-----------------------------------------+

mysql [debugger]> call rdebug_set_variable('current_color', 'orange');
mysql [debugger]> call rdebug_step_over();

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
call for help()


common_schema documentation is
available in these formats:
–

Online documentation (directly in code
repository)

–

Bundled HTML download

–

Inline: Just call for help():

call help('split');
+--------------------------------------------------------------------------------+
| help
|
+--------------------------------------------------------------------------------+
| QueryScript Flow Control: split statement
|
|
|
| SYNOPSIS
|
|
|
| Single table operations, autodetect mode:

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Roadmap & future plans


Everything is developed by demand. There
are a lot of pending ideas.



Priority given to solutions I need today.



Nevertheless:
–

QueryScript will evolve. Already pending
release are functions()

–

QueryScript debugging on roadmap

–

Other ideas

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Support common_schema


Download and try it out



Report issues
http://code.google.com/p/common-schema/issues/list



Happy to receive ideas and contributions
http://bit.ly/UPC3vh
http://code.google.com/p/common-schema/issues/entry?
template=Request%20for%20new%20component



Above all else: spread the word!

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach
Thank you!




Visit http://openark.org for news &
updates.
Other open source projects:
–

openark kit
http://openarkkit.googlecode.com/svn/trunk/openarkkit/doc/html/introduction.html

–

mycheckpoint
http://code.openark.org/forge/mycheckpoint

common_schema

DBA's framework for MySQL

Copyright © 2013, Shlomi Noach

Más contenido relacionado

Último

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 

Último (20)

Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 

Destacado

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destacado (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

common_schema 2.2 DBA's framework for MySQL

  • 1. common_schema 2.2 DBA's framework for MySQL Shlomi Noach http://openark.org
  • 2. common_schema 2.2 DBA's framework for MySQL  About  Views & eval()  Routines  QueryScript  Introducing rdebug Copyright © 2013, Shlomi Noach
  • 3. About myself  Shlomi Noach, geek  Software engineer, DBA   Author of open source tools common_schema, openark kit, mycheckpoint, others. Blog on all things MySQL http://openark.org  Employed by common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 4. About common_schema   common_schema is an open source project, licensed under the GPL License. Authored by Shlomi Noach http://openark.org  Major contributions by Roland Bouman http://rpbouman.blogspot.com  Several contributions & suggestions by the community (Thanks!) common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 5. About common_schema  common_schema is a framework which includes: – Views: analytics, security, action-taking, ... – Routines: text, temporal, process, security, ... – QueryScript: an SQL oriented scripting language & interpreter – rdebug: debugger and debugging API for MySQL stored routines (alpha). common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 6. About common_schema   It is a schema that lies next to INFORMATION_SCHEMA. It lies completely within the MySQL server, and does not require external packages or dependencies. No Perl scripts nor UDFs or plugins. common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 7. Getting & Installing  common_schema distribution is a SQL file.  Currently hosted on Google Code: http://code.google.com/p/common-schema/  Install by importing SQL file into MySQL: bash$ mysql < /tmp/common_schema-2.2.sql complete - Base components: installed - InnoDB Plugin components: installed - Percona Server components: not installed - TokuDB components: partial install: 1/2 Installation complete. Thank you for using common_schema! common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 8. Views    Views providing non-trivial information about your table design, keys, grants, processes, transactions, locks, ... While INFORMATION_SCHEMA provides with complete info, it is ofter difficult to aggregate. It is sometimes too normalized, and at other times too de-normalized. Some metadata is simply not available in INFORMATION_SCHEMA. common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 9. Views    common_schema's views will present with valuable knowledge And will typically offer recommendations or possible actions based on that knowledge. common_schema also provides the mechanism to apply those recommendations. common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 10. Views: redundant_keys  Find duplicate/redundant keys in your schema. Recommend DROP statements. http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/redundant_keys.html – Similar to pt-duplicate-key-checker mysql> select * from redundant_keys where table_schema='sakila'G table_schema: sakila table_name: rental redundant_index_name: rental_date_2 redundant_index_columns: rental_date redundant_index_non_unique: 1 dominant_index_name: rental_date dominant_index_columns: rental_date, inventory_id, customer_id dominant_index_non_unique: 0 sql_drop_index: ALTER TABLE `sakila`.`rental` DROP INDEX `rental_date_2` common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 11. Views: sql_range_partitions  Analyze your range partitioned tables. Offers the ADD/REORGANIZE PARTITION statements to roll partitions: mysql> create table test.report … partition by range (…) ; mysql> select * from sql_range_partitions where table_name='report' G table_schema: test table_name: report count_partitions: 7 sql_drop_first_partition: alter table `test`.`report` drop partition `p0` sql_add_next_partition: alter table `test`.`report` reorganize partition `p6` into ( partition `p_20090701000000` values less than (1246395600) /* 2009-07-01 00:00:00 */ , partition p_maxvalue values less than MAXVALUE ) common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 12. Views: sql grants   Provide SQL based access to user accounts and their grants. Offers the relevant GRANT, REVOKE and DROP statements for such grants: GRANTEE: user: host: priv_level: priv_level_name: current_privileges: sql_grant: 'world_user'@'localhost' world_user localhost `world`.* schema INSERT, SELECT, UPDATE GRANT INSERT, SELECT, UPDATE ON `world`.* TO 'world_user'@'%' sql_revoke: REVOKE INSERT, SELECT, UPDATE ON `world`.* FROM 'world_user'@'%' common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 13. SQL generation & eval()    Views above present with “SQL columns”, offering a statement to execute. This is at the heart of common_schema's views, and is part of the server-side mechanism the framework strongly supports. The eval() routine accepts such SQL columns and executes (evaluates) them. common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 14. eval()  Accepts a query returning a text column. Column data is expected to be SQL statements to be executed. mysql> call eval(" SELECT sql_add_next_partition FROM sql_range_partitions WHERE table_schema='webprod'"); Query OK, 0 rows affected -- A new partition has just been added on -- all range-partitioned tables in `webprod` common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 15. eval() KILL QUERY 123 KILL QUERY 129 KILL QUERY 598 Execute query KILL QUERY 620 KILL QUERY 702 eval() Query common_schema DBA's framework for MySQL Execute statements Copyright © 2013, Shlomi Noach
  • 16. Views: innodb_transactions  Which transactions are running? – – How long are they being idle? Locked? –  For how long? What queries are they issuing? Recommend KILL, apply with eval() mysql> call eval(" SELECT sql_kill_query FROM innodb_transactions WHERE trx_idle_seconds >= 30 "); -- All idle transactions have just been killed common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 17. Views: others     processlist_grantees: identifies the user connection with its associated account (missing info in MySQL) auto_increment_columns: find “free space” or “usage” for AUTO_INCREMENT values slave_status: get Seconds_behind_master via real SQL query last_query_profiling :aggregated profile for last executed query common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 18. Views: processlist_grantees mysql> select * from processlist_granteesG ID: 41165491 USER: dbuser HOST: web00.myapp:40049 DB: profile COMMAND: Query TIME: 0 STATE: updating INFO: DELETE FROM locks WHERE id = 'helper' AND dt < '2013-04-17 15:09:50' GRANTEE: 'dbuser'@'%.myapp' grantee_user: dbuser grantee_host: %.myapp is_super: 0 is_repl: 0 is_current: 0 sql_kill_query: KILL QUERY 41165491 sql_kill_connection: KILL 41165491 common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 19. Views: others  sql_accounts: block/release accounts  similar_grants: detect security roles    global_status_diff_nonzero: detect status change innodb_locked_transactions: who locks who, on which query? Recommend KILL more... http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/process_views.html http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/innodb_plugin_views.html http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/security_views.html http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/schema_analysis_views.html common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 20. Routines   common_schema offers more than 60 useful stored routines, part of the framework's function library. From text parsing & manipulation, through process diagnostics, query analysis & dynamic execution, to security routines, the function library extends and complements MySQL's own functions. http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/execution_routines.html http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/text_routines.html http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/security_routines.html http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/process_routines.html common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 21. Routines: security    killall() kills connections by matching text with user, host or grantee. security_audit() audits server's privileges tables and configuration to detect such threats as empty or duplicate passwords, excessive privileges, permissive hosts etc. duplicate_grantee(): duplicates an account mysql> call killall('analytics'); mysql> call killall('localhost'); common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 22. Routines: text    extract_json_value(): Extract value from JSON notation via Xpath. replace_sections(): Search and replace text appearing between section. get_num_tokens(): Return number of tokens in delimited text. mysql> select 'the => 4 mysql> select 'the => 'brown' common_schema.get_num_tokens( quick brown fox', ' '); common_schema.split_token( quick brown fox', ' ', 3); common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 23. Routines: text mysql> set @json := '{ "menu": { "id": "file", "value": "File", "popup": { "menuitem": [ {"value": "New", "onclick": "create()"}, {"value": "Open", "onclick": "open()"}, {"value": "Close", "onclick": "close()"} ] } } }'; mysql> select extract_json_value(@json, '//id') AS result; +--------+ | result | +--------+ | file | +--------+ common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 24. Routines: general    query_checksum(): Checksum the result set of a query. crc64(): Return a 64 bit CRC of given input, as unsigned big integer. random_hash(): Return a 64 bit CRC of given input, as unsigned big integer. mysql> call query_checksum( 'select code, name from world.Country order by code'); +----------------------------------+ | checksum | +----------------------------------+ | 79221e8d040e33cd3262f1680b4c8e54 | +----------------------------------+ common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 25. Routines: SQL & execution    eval() evaluates the queries generated by a given query. exec(), exec_file() dynamically executes a given query or semicolon delimited list of queries. run(), run_file() execute QueryScript code. mysql> call exec(' CREATE TABLE test.t(id INT); INSERT INTO test.t VALUES (2),(3),(5); '); common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 26. QueryScript    A SQL oriented scripting language, offering tight integration with SQL commands, easy and familiar control flow syntax and high level abstraction of complex tasks. common_schema implements QueryScript via interpreter, based on stored routines. This makes QueryScript suitable for administration and bulk tasks, not for OLTP tasks. http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/query_script.html common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 27. Why QueryScript?  Stored routine programming is a pain: – Requires one to actually store the routine within the schema: can't just run something. – Syntax is cumbersome (ANSI:SQL). – Does not offer deeper insight into MySQL's limitations and bottlenecks. – Does not provide with syntax for oh-socommon tasks – Verbose. Can't see the forest for the trees. common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 28. Compare: stored routine DELIMITER $$ DROP PROCEDURE IF EXISTS some_proc $$ CREATE PROCEDURE some_proc() READS SQL DATA SQL SECURITY INVOKER begin declare some_id bigint unsigned default null; declare done tinyint default 0; declare my_cursor cursor for SELECT some_id FROM some_table; declare continue handler for NOT FOUND set done = 1; open my_cursor; read_loop: loop fetch my_cursor into some_id; if done then leave read_loop; end if; -- do something with some_id end loop; close my_cursor; end $$ DELIMITER ; common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 29. Compare: QueryScript set @script := ' foreach ($some_id: select some_id from some_table) { -- do something with $some_id } '; call run(@script);  Significantly less overhead  Familiar C-family syntax  No need to store the code in schema  Can execute script directly from file call run('/path/to/script.qs'); common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 30. QueryScript: variables   Create variables which are known to initialize as NULL and are known to clean up as they exit scope. Can be expanded and used where MySQL does not allow variables. var $count := 20; var $pop := 1000000; var $tbl := 'City'; select * from world.:${tbl} where population >= $pop limit :${count}; common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 31. QueryScript: conditions   Familiar if, while or loop-while statements. But conditions are also tightly integrated with SQL, and so queries make for valid conditions. if (@val > 3) { pass; } while (delete from world.Country where Continent = 'Asia' limit 10) { throttle 2; } common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 32. QueryScript: foreach    A sophisticated looping device, allowing iteration over queries, sets, numbers range, databases, tables... But also acknowledges MySQL limitations and provides with a safer access method. Table iteration uses INFORMATION_SCHEMA optimizations to avoid excessive locks: foreach($tbl, $scm: table like wp_posts) alter table :${scm}.:${tbl} add column post_geo_location VARCHAR(128); common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 33. QueryScript: foreach foreach($year: 2001:2009) delete from sakila.rental where rental_date >= CONCAT($year, '-07-01') and rental_date < CONCAT($year, '-09-01'); foreach($shard: {US, GB, Japan, FRA}) create database dbshard_:${shard}; foreach($scm: schema like wp%) { create table :$scm.wp_likes( id int, data VARCHAR(128)); } foreach ($some_id: select some_id from some_table) {... } common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 34. QueryScript: split    Automagically breaks a bulk operation into smaller chunks. Supports DELETE, UPDATE, INSERT...SELECT, REPLACE...SELECT Supports single and multi table statements split (delete from sakila.rental where rental_date < NOW() - interval 5 year); split (insert into world.City_duplicate select * from world.City) { throttle 1; } common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 35. QueryScript: split split(update sakila.film_actor set last_update=now() where actor_id != 4) { } select $split_columns $split_range_start $split_range_end $split_total_rowcount as as as as columns, range_start, range_end, total; +----------------------+-------------+------------+-------+ | columns | range_start | range_end | total | +----------------------+-------------+------------+-------+ | `actor_id`,`film_id` | '1','1' | '39','293' | 978 | +----------------------+-------------+------------+-------+ +----------------------+-------------+------------+-------+ | columns | range_start | range_end | total | +----------------------+-------------+------------+-------+ | `actor_id`,`film_id` | '39','293' | '76','234' | 1978 | +----------------------+-------------+------------+-------+ +----------------------+-------------+-------------+-------+ | columns | range_start | range_end | total | +----------------------+-------------+-------------+-------+ | `actor_id`,`film_id` | '76','234' | '110','513' | 2978 | +----------------------+-------------+-------------+-------+ common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 36. QueryScript: split, example  Real world use case: need to copy 120,000,000 rows belonging to a specific partition from range-partitioned table 2013-02 2013-03 2013-04 2013-05 2013-05 2013-06 common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 37. QueryScript: split, example   We provide hints to the split statement: choosing index, start position, chunk size. Terminate when out of range. split ( { index: PRIMARY, start: '2013-05-01', step: 20000 } : insert into one_month_sample select * from table_with_many_month_partitions where entry_date < DATE('2013-05-01') ) { if ($split_range_start >= DATE('2013-05-01')) Break; throttle 1; } common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 38. QueryScript: example  Create shards & tables, and copy row data: -- iterate shards foreach ($shard: {US, GB, Japan, FRA}) { create database dbshard_:${shard}; -- iterate tables foreach ($tbl: table in original_shard) { create table dbshard_:${shard}.:${tbl} like original_shard.:$tbl; -- copy table data split (insert into dbshard_:${shard}.:${tbl} select * from original_shard.:$tbl) { -- show progress select $shard, $tbl, $split_total_rowcount; throttle 1; } } } common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 39. QueryScript: more goodies     throttle statement controls script execution time, reduces server load Local variables auto-cleanup, can be used (expanded) in statements where variables not allowed (table names, LIMIT value etc.) try-catch statement is available: easy error handling mechanism echo, eval, throw statements make for easy development common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 40. rdebug     common_schema introduces rdebug: debugger and debugging API for MySQL stored routines. A server side solution, based in itself on stored routines. Provides routine API calls to manage debugging sessions of other routines. At this time (April 2013) in alpha stage http://common-schema.googlecode.com/svn/trunk/common_schema/doc/html/rdebug.html common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 41. rdebug  Uses code injection; one must “compile” her routine with/out debug code. –  Does not emulate code; retains logic of one's routines, with some limitations. Supports: – Step into/over/out – Watch variables, modify variables – Set breakpoint, run to breakpoint – Watch stack state, statements common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 42. rdebug  common_schema provides with stored routine API. – –  One may debug on command line using mysql client Or one may wrap with GUI tool to call upon routine API Awaiting GUI client implementations! common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 43. rdebug mysql [debugger]> call rdebug_step_into(); +-------------+----------------+---------------+--------------+---------------------+ | stack_level | routine_schema | routine_name | statement_id | entry_time | +-------------+----------------+---------------+--------------+---------------------+ | 1 | test | review_colors | 145 | 2013-04-08 15:41:28 | +-------------+----------------+---------------+--------------+---------------------+ +----------------+---------------+---------------+---------------+----------------+ | routine_schema | routine_name | variable_name | variable_type | variable_value | +----------------+---------------+---------------+---------------+----------------+ | test | review_colors | current_color | local | white | | test | review_colors | current_count | local | 10 | | test | review_colors | done | local | 0 | +----------------+---------------+---------------+---------------+----------------+ +----------------+---------------+--------------+-----------------------------------------+ | routine_schema | routine_name | statement_id | statement | +----------------+---------------+--------------+-----------------------------------------+ | test | review_colors | 145 | call review_single_color(current_color) | +----------------+---------------+--------------+-----------------------------------------+ mysql [debugger]> call rdebug_set_variable('current_color', 'orange'); mysql [debugger]> call rdebug_step_over(); common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 44. call for help()  common_schema documentation is available in these formats: – Online documentation (directly in code repository) – Bundled HTML download – Inline: Just call for help(): call help('split'); +--------------------------------------------------------------------------------+ | help | +--------------------------------------------------------------------------------+ | QueryScript Flow Control: split statement | | | | SYNOPSIS | | | | Single table operations, autodetect mode: common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 45. Roadmap & future plans  Everything is developed by demand. There are a lot of pending ideas.  Priority given to solutions I need today.  Nevertheless: – QueryScript will evolve. Already pending release are functions() – QueryScript debugging on roadmap – Other ideas common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 46. Support common_schema  Download and try it out  Report issues http://code.google.com/p/common-schema/issues/list  Happy to receive ideas and contributions http://bit.ly/UPC3vh http://code.google.com/p/common-schema/issues/entry? template=Request%20for%20new%20component  Above all else: spread the word! common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach
  • 47. Thank you!   Visit http://openark.org for news & updates. Other open source projects: – openark kit http://openarkkit.googlecode.com/svn/trunk/openarkkit/doc/html/introduction.html – mycheckpoint http://code.openark.org/forge/mycheckpoint common_schema DBA's framework for MySQL Copyright © 2013, Shlomi Noach