SlideShare uma empresa Scribd logo
1 de 63
Baixar para ler offline
<Insert Picture Here>




          Getting ready for the new MySQL
          Giuseppe Maxia
          MySQL Community Team Leader


                                                 1006.01
Thursday, 22 July 2010
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.2 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.1 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
MySQL 5.5


                     •   MySQL 5.5.5-m3 released on July 18th
                     •   Default storage engine is now InnoDB
                     •   Lots of goodies




Thursday, 22 July 2010
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.1 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
default engine
select @@version,@@storage_engine;
+-----------+------------------+
| @@version | @@storage_engine |
+-----------+------------------+
| 5.1.48    | MyISAM           |
+-----------+------------------+

select @@version, @@storage_engine;
+-----------+------------------+
| @@version | @@storage_engine |
+-----------+------------------+
| 5.5.5-m3 | InnoDB            |
+-----------+------------------+
Thursday, 22 July 2010
Plugin version
select @@version, @@innodb_version;
+-----------+------------------+
| @@version | @@innodb_version |
+-----------+------------------+
| 5.5.5-m3 | 1.1.1             |
+-----------+------------------+




Thursday, 22 July 2010
InnoDB at a glance

                     •   Performance Improvements
                         ✦   Improved recovery performance
                         ✦   Multiple buffer pool instances
                         ✦   Multiple rollback segments
                         ✦   Native asynchronous I/O for Linux
                         ✦   Extended change buffering

Thursday, 22 July 2010
Faster!

                     •   How fast?
                     •   In my benchmarks, 10% to 50% faster.
                     •   Others have reported much higher gains.
                     •   You decide.
                     •   Test it under your load.



Thursday, 22 July 2010
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.2 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
PERFORMANCE
                              SCHEMA
                     •   PERFORMANCE_SCHEMA presents
                         low level MySQL performance
                         information
                     •   Data can be cleared
                     •   Filters with WHERE are allowed
                     •   Must be enabled with --
                         performance_schema


Thursday, 22 July 2010
performance schema
SELECT EVENT_ID, EVENT_NAME, TIMER_WAIT
FROM EVENTS_WAITS_HISTORY
WHERE THREAD_ID = 13
ORDER BY EVENT_ID;
+----------+-----------------------------------------+------------+
| EVENT_ID | EVENT_NAME                              | TIMER_WAIT |
+----------+-----------------------------------------+------------+
|       86 | wait/synch/mutex/mysys/THR_LOCK::mutex |      686322 |
|       87 | wait/synch/mutex/mysys/THR_LOCK_malloc |      320535 |
|       88 | wait/synch/mutex/mysys/THR_LOCK_malloc |      339390 |
|       89 | wait/synch/mutex/mysys/THR_LOCK_malloc |      377100 |
|       90 | wait/synch/mutex/sql/LOCK_plugin        |     614673 |
|       91 | wait/synch/mutex/sql/LOCK_open          |     659925 |
|       92 | wait/synch/mutex/sql/THD::LOCK_thd_data |     494001 |
|       93 | wait/synch/mutex/mysys/THR_LOCK_malloc |      222489 |
|       94 | wait/synch/mutex/mysys/THR_LOCK_malloc |      214947 |
|       95 | wait/synch/mutex/mysys/LOCK_alarm       |     312993 |
+----------+-----------------------------------------+------------+




Thursday, 22 July 2010
performance schema
mysql> UPDATE SETUP_INSTRUMENTS
       SET ENABLED = 'NO'
       WHERE NAME =
'wait/synch/mutex/myisammrg/MYRG_INFO::mutex';

mysql> UPDATE SETUP_CONSUMERS
       SET ENABLED = 'NO'
       WHERE NAME = 'file_summary_by_instance';




Thursday, 22 July 2010
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.2 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
MySQL 5.5 enhancements
        • PARTITION BY RANGE COLUMNS
        • PARTITION BY LIST COLUMNS
        • TO_SECONDS




                                       15



Thursday, 22 July 2010
MySQL 5.5 enhancements       R E
      CREATE TABLE t (           FO
        dt date
                             B E      5.1
      )
      PARTITION BY RANGE (TO_DAYS(dt))
      (
        PARTITION p01 VALUES LESS THAN
      (TO_DAYS('2007-01-01')),
        PARTITION p02 VALUES LESS THAN
      (TO_DAYS('2008-01-01')),
        PARTITION p03 VALUES LESS THAN
      (TO_DAYS('2009-01-01')),
        PARTITION p04 VALUES LESS THAN
      (MAXVALUE));
                                         16



Thursday, 22 July 2010
MySQL 5.5 enhancements       R E
                                FO
     SHOW CREATE TABLE t G B E      5.1
            Table: t
     Create Table: CREATE TABLE `t` (
       `dt` date DEFAULT NULL
     ) ENGINE=MyISAM DEFAULT CHARSET=latin1
     /*!50100 PARTITION BY RANGE (TO_DAYS
     (dt))
     (PARTITION p01 VALUES LESS THAN (733042)
     ENGINE = MyISAM,
     […]

                                      17



Thursday, 22 July 2010
MySQL 5.5 enhancements
                                   E R
      CREATE TABLE t (
                                 FT
        dt date
                               A       5.5
      )
      PARTITION BY RANGE COLUMNS (dt)
      (
        PARTITION p01 VALUES LESS THAN
      ('2007-01-01'),
        PARTITION p02 VALUES LESS THAN
      ('2008-01-01'),
        PARTITION p03 VALUES LESS THAN
      ('2009-01-01'),
        PARTITION p04 VALUES LESS THAN
      (MAXVALUE));
                                     18



Thursday, 22 July 2010
MySQL 5.5 enhancements
                                   E R
                                 FT
  SHOW CREATE TABLE t
         Table: t              A       5.5
  Create Table: CREATE TABLE `t` (
    `dt` date DEFAULT NULL
  ) ENGINE=MyISAM DEFAULT CHARSET=latin1
  /*!50500 PARTITION BY RANGE COLUMNS
  (dt)
  (PARTITION p01 VALUES LESS THAN
  ('2007-01-01') ENGINE = MyISAM,
  […]

                                    19



Thursday, 22 July 2010
MySQL 5.5 - Multiple columns
      CREATE TABLE t (
        a int,
        b int
      )PARTITION BY RANGE COLUMNS   (a,b)
      (
        PARTITION p01 VALUES LESS   THAN
      (10,1),
        PARTITION p02 VALUES LESS   THAN
      (10,10),
        PARTITION p03 VALUES LESS   THAN
      (10,20),
        PARTITION p04 VALUES LESS   THAN
      (MAXVALUE, MAXVALUE));
                                       20



Thursday, 22 July 2010
partition definition
                                       by range (a,b)
                records    partition          LESS THAN
               a       b     p01            10            10
               1      10     p02            10            20
               10      9     p03            10            30
               10     10     p04            10         MAXVALUE
               10     11     p05      MAXVALUE MAXVALUE




Thursday, 22 July 2010
partition definition
                                               by range (a,b)
            records
                                   partition          LESS THAN
           a       b
                                     p01            10            10
           1      10
                                     p02            10            20
           10      9
                                     p03            10            30
           10     10                 p04            10         MAXVALUE
           10     11                 p05      MAXVALUE MAXVALUE

                           (1,10) < (10,10) ?

                                 (a < 10)
                                   OR
                         ((a = 10) AND (b < 10))

                                  (1 < 10)
                                    OR                     TRUE
                         ((1 = 10) AND (10 < 10))
Thursday, 22 July 2010
partition definition
                                               by range (a,b)
          records                  partition          LESS THAN
         a       b                   p01            10            10
         1      10                   p02            10            20
         10      9                   p03            10            30
         10     10                   p04            10         MAXVALUE
         10     11                   p05      MAXVALUE MAXVALUE

                           (10,9) < (10,10) ?

                                 (a < 10)
                                   OR
                         ((a = 10) AND (b < 10))

                                 (10 < 10)
                                    OR                    TRUE
                         ((10 = 10) AND (9 < 10))
Thursday, 22 July 2010
partition definition
                                               by range (a,b)
          records                  partition          LESS THAN
         a       b                   p01            10            10
         1      10                   p02            10            20
         10      9                   p03            10            30
         10     10                   p04            10         MAXVALUE
         10     11                   p05      MAXVALUE MAXVALUE

                           (10,10) < (10,10) ?

                                  (a < 10)
                                    OR
                          ((a = 10) AND (b < 10))

                                 (10 < 10)
                                    OR                   FALSE
                         ((10 = 10) AND (10 < 10))
Thursday, 22 July 2010
partition definition
                                               by range (a,b)
          records                  partition          LESS THAN
         a       b                   p01            10            10
         1      10                   p02            10            20
         10      9                   p03            10            30
         10     10                   p04            10         MAXVALUE
         10     11                   p05      MAXVALUE MAXVALUE

                           (10,10) < (10,20) ?

                                  (a < 10)
                                    OR
                          ((a = 10) AND (b < 20))

                                 (10 < 10)
                                    OR                    TRUE
                         ((10 = 10) AND (10 < 20))
Thursday, 22 July 2010
CREATE TABLE employees (
  emp_no int(11) NOT NULL,
  birth_date date NOT NULL,
  first_name varchar(14) NOT NULL,
  last_name varchar(16) NOT NULL,
  gender char(1) DEFAULT NULL,
  hire_date date NOT NULL
) ENGINE=MyISAM
PARTITION BY RANGE COLUMNS(gender,hire_date)
(PARTITION p01 VALUES LESS THAN ('F','1990-01-01'),
 PARTITION p02 VALUES LESS THAN ('F','2000-01-01'),
 PARTITION p03 VALUES LESS THAN ('F',MAXVALUE),
 PARTITION p04 VALUES LESS THAN ('M','1990-01-01'),
 PARTITION p05 VALUES LESS THAN ('M','2000-01-01'),
 PARTITION p06 VALUES LESS THAN ('M',MAXVALUE),
 PARTITION p07 VALUES LESS THAN (MAXVALUE,MAXVALUE)

                                           26



Thursday, 22 July 2010
MySQL 5.5 enhancements
        • TRUNCATE PARTITION
        • TO_SECONDS()




                               27



Thursday, 22 July 2010
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.2 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
SIGNAL and RESIGNAL

                     •   Allow error handling in stored routines
                     •   The execution is passed to an error
                         handler
                     •   Accessible error values are SQLSTATE,
                         MESSAGE_TEXT and
                         MYSQL_ERRNO




                                                          O
                     •   RESIGNAL can pass along the original



                                                        EM
                         or a new information

Thursday, 22 July 2010
                                                       D
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.2 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
semi-synchronous replication


                                    semisynch
                         master   master plugin



    semisynch
    slave plugin



                   slave 1                slave 2


Thursday, 22 July 2010
semi-synchronous replication



                         master   COMMIT    client


                                            1

                   slave 1        slave 2


Thursday, 22 July 2010
semi-synchronous replication



                         master             client

    COMMIT
    binary log                              2

                   slave 1        slave 2


Thursday, 22 July 2010
semi-synchronous replication



                         master             client

    COMMIT
    binary log                              3
    relay log

                   slave 1        slave 2


Thursday, 22 July 2010
semi-synchronous replication



                         master                    client

    COMMIT
    binary log
                            confirm log
                                                   4
                            reception
    relay log

                   slave 1               slave 2


Thursday, 22 July 2010
semi-synchronous replication



                         master              client

    COMMIT
    binary log                                5
    relay log




                                               O
                   slave 1        slave 2




                                             EM
                                            D
Thursday, 22 July 2010
Contents
                     •   Future: MySQL 5.5
                         ✦   performance
                             ★   InnoDB plugin 1.2 default engine
                             ★   Performance schema
                         ✦   ease of use (partitioning, SIGNAL)
                         ✦   reliability (semisynch replication)
                     •   Current: MySQL 5.1
                         ✦   performance: InnoDB plugin 1.0.8
Thursday, 22 July 2010
Missed announcement


                     •   A GA release
                     •   As of MySQL 5.1.47
                     •   The InnoDB plugin is GA
                     •   Ready to use for immediate gains




Thursday, 22 July 2010
INNODB 1.0.9
                         5.1




Thursday, 22 July 2010
INNODB 1.0.9
                         5.1




Thursday, 22 July 2010
MySQL                         INFORMATION
                         InnoDB plugin   SCHEMA table plugin
             Server




Thursday, 22 July 2010
Installation (1)
my.cnf

[mysqld]
plugin_dir = /usr/local/mysql/lib/plugin
ignore_builtin_innodb
plugin-load=innodb=ha_innodb_plugin.so
default-storage-engine=InnoDB
innodb_file_per_table=1
innodb_file_format=barracuda
innodb_strict_mode=1



Thursday, 22 July 2010
Installation (1a)
my.cnf

[mysqld]
plugin-load=innodb=ha_innodb_plugin.so;
innodb_trx=ha_innodb_plugin.so;
innodb_locks=ha_innodb_plugin.so;
innodb_lock_waits=ha_innodb_plugin.so;
innodb_cmp=ha_innodb_plugin.so;
innodb_cmp_reset=ha_innodb_plugin.so;
innodb_cmpmem=ha_innodb_plugin.so;
innodb_cmpmem_reset=ha_innodb_plugin.so
#(all in one line with no spaces)

Thursday, 22 July 2010
Installation (2)
SET GLOBAL innodb_fast_shutdown=0;

RESTART the server




Thursday, 22 July 2010
Installation - 2nd method (1)
my.cnf

[mysqld]
ignore_builtin_innodb




Thursday, 22 July 2010
Installation - 2nd method (2)
SET GLOBAL innodb_fast_shutdown=0;

RESTART the server




Thursday, 22 July 2010
Installation - 2nd method (3)
mysql
INSTALL PLUGIN INNODB SONAME 'ha_innodb_plugin.so';
INSTALL PLUGIN INNODB_TRX SONAME
'ha_innodb_plugin.so';
INSTALL PLUGIN INNODB_LOCKS SONAME
'ha_innodb_plugin.so';
INSTALL PLUGIN INNODB_LOCK_WAITS SONAME
'ha_innodb_plugin.so';
INSTALL PLUGIN INNODB_CMP SONAME
'ha_innodb_plugin.so';
INSTALL PLUGIN INNODB_CMP_RESET SONAME
'ha_innodb_plugin.so';
INSTALL PLUGIN INNODB_CMPMEM SONAME
'ha_innodb_plugin.so';
INSTALL PLUGIN INNODB_CMPMEM_RESET SONAME
'ha_innodb_plugin.so';


Thursday, 22 July 2010
Installation - 2nd method (4)
my.cnf

[mysqld]


default-storage-engine=InnoDB
innodb_file_per_table=1
innodb_file_format=barracuda
innodb_strict_mode=1




Thursday, 22 July 2010
Installation - 2nd method (5)
SET GLOBAL innodb_fast_shutdown=0;

RESTART the server




Thursday, 22 July 2010
Installation differences
         •       Method 1 (plugin-load in my.cnf)
               ✦         Only one operation
               ✦         But error prone (one looooong command)
               ✦         plugins not stored in mysql.plugin table
         •       Method 2 (install plugin)
               ✦         plugin info saved to mysql.plugin table
               ✦         Easier to write
               ✦         2 restarts required
Thursday, 22 July 2010
CAVEAT

      •       If you uninstall the InnoDB plugin, remember:
             ✦      The tables are not backward compatible
             ✦      You must uninstall all the
                    INFORMATION_SCHEMA plugin tables
                    BEFORE removing the InnoDB plugin
             ✦      If the plugin is busy, it may not be removed until
                    you restart the server


Thursday, 22 July 2010
hands on




Thursday, 22 July 2010
Checking installation
select @@version, @@innodb_version;
+-----------+------------------+
| @@version | @@innodb_version |
+-----------+------------------+
| 5.1.48    | 1.0.9            |
+-----------+------------------+
                               O
                             EM
                            D




Thursday, 22 July 2010
Detecting locks
session1> select c from t1 for update;
+------+
| c    |
+------+
| aaa |
| bbb |
| ccc |
+------+




Thursday, 22 July 2010
Detecting locks
session2> select c from t1 for update;

[… waiting]




Thursday, 22 July 2010
Detecting locks
session3> select i from t1 for update;

[… waiting]




Thursday, 22 July 2010
getting locks information
SELECT
  r.trx_id waiting_trx_id,
  r.trx_mysql_thread_id waiting_thread,
  r.trx_query waiting_query,
  b.trx_id blocking_trx_id,
  b.trx_mysql_thread_id blocking_thread,
  b.trx_query blocking_query
FROM
  innodb_lock_waits w
  INNER JOIN innodb_trx b
     ON b.trx_id = w.blocking_trx_id
  INNER JOIN innodb_trx r
     ON r.trx_id = w.requesting_trx_id
Thursday, 22 July 2010
getting locks information




Thursday, 22 July 2010
getting locks information
************* 1.         row **************
 waiting_trx_id:         711
 waiting_thread:         3
  waiting_query:         select c from t1 for
update
blocking_trx_id:         710
blocking_thread:         2
 blocking_query:         select i from t1 for
update




Thursday, 22 July 2010
getting locks information
************* 2.         row **************
 waiting_trx_id:         711
 waiting_thread:         3
  waiting_query:         select c from t1 for
update
blocking_trx_id:         70F
blocking_thread:         1
 blocking_query:         NULL




Thursday, 22 July 2010
getting locks information
************* 3.         row **************
 waiting_trx_id:         710
 waiting_thread:         2
  waiting_query:         select i from t1 for
update
blocking_trx_id:         70F
blocking_thread:         1
 blocking_query:         NULL




Thursday, 22 July 2010
The preceding is intended to outline our general
     product direction. It is intended for information
     purposes only, and may not be incorporated
     into any contract. It is not a commitment to
     deliver any material, code, or functionality, and
     should not be relied upon in making purchasing
     decisions.
     The development, release, and timing of any
     features or functionality described for Oracle’s
     products remains at the sole discretion of
     Oracle.
                                             62



Thursday, 22 July 2010
THANKS
                                                                              Let's talk!




This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License. To view a copy of this license, visit http://
creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA.
Thursday, 22 July 2010

Mais conteúdo relacionado

Mais procurados

Lessons Learned: Troubleshooting Replication
Lessons Learned: Troubleshooting ReplicationLessons Learned: Troubleshooting Replication
Lessons Learned: Troubleshooting ReplicationSveta Smirnova
 
介绍 Percona 服务器 XtraDB 和 Xtrabackup
介绍 Percona 服务器 XtraDB 和 Xtrabackup介绍 Percona 服务器 XtraDB 和 Xtrabackup
介绍 Percona 服务器 XtraDB 和 XtrabackupYUCHENG HU
 
Summary tables with flexviews
Summary tables with flexviewsSummary tables with flexviews
Summary tables with flexviewsJustin Swanhart
 
Why MySQL Replication Fails, and How to Get it Back
Why MySQL Replication Fails, and How to Get it BackWhy MySQL Replication Fails, and How to Get it Back
Why MySQL Replication Fails, and How to Get it BackSveta Smirnova
 
Sheepdog Status Report
Sheepdog Status ReportSheepdog Status Report
Sheepdog Status ReportLiu Yuan
 
Performance Schema for MySQL Troubleshooting
Performance Schema for MySQL TroubleshootingPerformance Schema for MySQL Troubleshooting
Performance Schema for MySQL TroubleshootingSveta Smirnova
 
Nexsan E5000 Family / Familia E5000 Nexsan / Enterprise NAS
Nexsan E5000 Family / Familia E5000 Nexsan / Enterprise NASNexsan E5000 Family / Familia E5000 Nexsan / Enterprise NAS
Nexsan E5000 Family / Familia E5000 Nexsan / Enterprise NASSuministros Obras y Sistemas
 
Compute 101 - OpenStack Summit Vancouver 2015
Compute 101 - OpenStack Summit Vancouver 2015Compute 101 - OpenStack Summit Vancouver 2015
Compute 101 - OpenStack Summit Vancouver 2015Stephen Gordon
 
SteelEye 201409 표준 제안서
SteelEye 201409 표준 제안서SteelEye 201409 표준 제안서
SteelEye 201409 표준 제안서Yong-uk Choe
 
Introduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]sIntroduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]sSveta Smirnova
 
OSS Presentation by Kevin Halgren
OSS Presentation by Kevin HalgrenOSS Presentation by Kevin Halgren
OSS Presentation by Kevin HalgrenOpenStorageSummit
 
Gluster volume snapshot
Gluster volume snapshotGluster volume snapshot
Gluster volume snapshotRajesh Joseph
 
MySQL Timeout Variables Explained
MySQL Timeout Variables Explained MySQL Timeout Variables Explained
MySQL Timeout Variables Explained Mydbops
 
Percona Live 2012PPT: introduction-to-mysql-replication
Percona Live 2012PPT: introduction-to-mysql-replicationPercona Live 2012PPT: introduction-to-mysql-replication
Percona Live 2012PPT: introduction-to-mysql-replicationmysqlops
 
Solaris 11 Consolidation Tools
Solaris 11 Consolidation ToolsSolaris 11 Consolidation Tools
Solaris 11 Consolidation ToolsRoman Ivanov
 

Mais procurados (15)

Lessons Learned: Troubleshooting Replication
Lessons Learned: Troubleshooting ReplicationLessons Learned: Troubleshooting Replication
Lessons Learned: Troubleshooting Replication
 
介绍 Percona 服务器 XtraDB 和 Xtrabackup
介绍 Percona 服务器 XtraDB 和 Xtrabackup介绍 Percona 服务器 XtraDB 和 Xtrabackup
介绍 Percona 服务器 XtraDB 和 Xtrabackup
 
Summary tables with flexviews
Summary tables with flexviewsSummary tables with flexviews
Summary tables with flexviews
 
Why MySQL Replication Fails, and How to Get it Back
Why MySQL Replication Fails, and How to Get it BackWhy MySQL Replication Fails, and How to Get it Back
Why MySQL Replication Fails, and How to Get it Back
 
Sheepdog Status Report
Sheepdog Status ReportSheepdog Status Report
Sheepdog Status Report
 
Performance Schema for MySQL Troubleshooting
Performance Schema for MySQL TroubleshootingPerformance Schema for MySQL Troubleshooting
Performance Schema for MySQL Troubleshooting
 
Nexsan E5000 Family / Familia E5000 Nexsan / Enterprise NAS
Nexsan E5000 Family / Familia E5000 Nexsan / Enterprise NASNexsan E5000 Family / Familia E5000 Nexsan / Enterprise NAS
Nexsan E5000 Family / Familia E5000 Nexsan / Enterprise NAS
 
Compute 101 - OpenStack Summit Vancouver 2015
Compute 101 - OpenStack Summit Vancouver 2015Compute 101 - OpenStack Summit Vancouver 2015
Compute 101 - OpenStack Summit Vancouver 2015
 
SteelEye 201409 표준 제안서
SteelEye 201409 표준 제안서SteelEye 201409 표준 제안서
SteelEye 201409 표준 제안서
 
Introduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]sIntroduction to MySQL Query Tuning for Dev[Op]s
Introduction to MySQL Query Tuning for Dev[Op]s
 
OSS Presentation by Kevin Halgren
OSS Presentation by Kevin HalgrenOSS Presentation by Kevin Halgren
OSS Presentation by Kevin Halgren
 
Gluster volume snapshot
Gluster volume snapshotGluster volume snapshot
Gluster volume snapshot
 
MySQL Timeout Variables Explained
MySQL Timeout Variables Explained MySQL Timeout Variables Explained
MySQL Timeout Variables Explained
 
Percona Live 2012PPT: introduction-to-mysql-replication
Percona Live 2012PPT: introduction-to-mysql-replicationPercona Live 2012PPT: introduction-to-mysql-replication
Percona Live 2012PPT: introduction-to-mysql-replication
 
Solaris 11 Consolidation Tools
Solaris 11 Consolidation ToolsSolaris 11 Consolidation Tools
Solaris 11 Consolidation Tools
 

Semelhante a Getting ready for the new MySQL

The Dolphins Leap Again
The Dolphins Leap AgainThe Dolphins Leap Again
The Dolphins Leap AgainIvan Zoratti
 
What's new in MySQL 5.5?
What's new in MySQL 5.5?What's new in MySQL 5.5?
What's new in MySQL 5.5?Lenz Grimmer
 
MySQL Tech Tour 2015 - 5.7 Whats new
MySQL Tech Tour 2015 - 5.7 Whats newMySQL Tech Tour 2015 - 5.7 Whats new
MySQL Tech Tour 2015 - 5.7 Whats newMark Swarbrick
 
My sql 56_roadmap_april2012
My sql 56_roadmap_april2012My sql 56_roadmap_april2012
My sql 56_roadmap_april2012sqlhjalp
 
Upgrade to MySQL 5.7 and latest news planned for MySQL 8
Upgrade to MySQL 5.7 and latest news planned for MySQL 8Upgrade to MySQL 5.7 and latest news planned for MySQL 8
Upgrade to MySQL 5.7 and latest news planned for MySQL 8Ted Wennmark
 
MySQL update SCaLE 2012
MySQL update SCaLE 2012MySQL update SCaLE 2012
MySQL update SCaLE 2012Dave Stokes
 
[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale by ...
[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale  by ...[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale  by ...
[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale by ...Insight Technology, Inc.
 
My sqlstrategyroadmap
My sqlstrategyroadmapMy sqlstrategyroadmap
My sqlstrategyroadmapslidethanks
 
MySQL Strategy&Roadmap
MySQL Strategy&RoadmapMySQL Strategy&Roadmap
MySQL Strategy&Roadmapslidethanks
 
My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2Ivan Tu
 
"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007
"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007
"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007eLiberatica
 
Top-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops Team
Top-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops TeamTop-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops Team
Top-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops TeamMydbops
 
MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)
MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)
MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)Jean-François Gagné
 
Mysql features for the enterprise
Mysql features for the enterpriseMysql features for the enterprise
Mysql features for the enterpriseGiuseppe Maxia
 
MySQL 5.7 - What's new and How to upgrade
MySQL 5.7 - What's new and How to upgradeMySQL 5.7 - What's new and How to upgrade
MySQL 5.7 - What's new and How to upgradeAbel Flórez
 
MySQL 5.6 - Operations and Diagnostics Improvements
MySQL 5.6 - Operations and Diagnostics ImprovementsMySQL 5.6 - Operations and Diagnostics Improvements
MySQL 5.6 - Operations and Diagnostics ImprovementsMorgan Tocker
 
Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...
Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...
Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...Software Park Thailand
 
Percona 服务器与 XtraDB 存储引擎
Percona 服务器与 XtraDB 存储引擎Percona 服务器与 XtraDB 存储引擎
Percona 服务器与 XtraDB 存储引擎YUCHENG HU
 
NoSQL and MySQL: News about JSON
NoSQL and MySQL: News about JSONNoSQL and MySQL: News about JSON
NoSQL and MySQL: News about JSONMario Beck
 

Semelhante a Getting ready for the new MySQL (20)

The Dolphins Leap Again
The Dolphins Leap AgainThe Dolphins Leap Again
The Dolphins Leap Again
 
What's new in MySQL 5.5?
What's new in MySQL 5.5?What's new in MySQL 5.5?
What's new in MySQL 5.5?
 
MySQL Tech Tour 2015 - 5.7 Whats new
MySQL Tech Tour 2015 - 5.7 Whats newMySQL Tech Tour 2015 - 5.7 Whats new
MySQL Tech Tour 2015 - 5.7 Whats new
 
My sql 56_roadmap_april2012
My sql 56_roadmap_april2012My sql 56_roadmap_april2012
My sql 56_roadmap_april2012
 
Upgrade to MySQL 5.7 and latest news planned for MySQL 8
Upgrade to MySQL 5.7 and latest news planned for MySQL 8Upgrade to MySQL 5.7 and latest news planned for MySQL 8
Upgrade to MySQL 5.7 and latest news planned for MySQL 8
 
MySQL update SCaLE 2012
MySQL update SCaLE 2012MySQL update SCaLE 2012
MySQL update SCaLE 2012
 
[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale by ...
[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale  by ...[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale  by ...
[db tech showcase Tokyo 2014] B15: Scalability with MariaDB and MaxScale by ...
 
My sqlstrategyroadmap
My sqlstrategyroadmapMy sqlstrategyroadmap
My sqlstrategyroadmap
 
MySQL Strategy&Roadmap
MySQL Strategy&RoadmapMySQL Strategy&Roadmap
MySQL Strategy&Roadmap
 
My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2
 
"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007
"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007
"Advanced MySQL 5 Tuning" by Michael Monty Widenius @ eLiberatica 2007
 
Top-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops Team
Top-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops TeamTop-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops Team
Top-10-Features-In-MySQL-8.0 - Vinoth Kanna RS - Mydbops Team
 
MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)
MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)
MySQL Parallel Replication: All the 5.7 and 8.0 Details (LOGICAL_CLOCK)
 
Mysql features for the enterprise
Mysql features for the enterpriseMysql features for the enterprise
Mysql features for the enterprise
 
MySQL 5.7 - What's new and How to upgrade
MySQL 5.7 - What's new and How to upgradeMySQL 5.7 - What's new and How to upgrade
MySQL 5.7 - What's new and How to upgrade
 
MySQL 5.6 - Operations and Diagnostics Improvements
MySQL 5.6 - Operations and Diagnostics ImprovementsMySQL 5.6 - Operations and Diagnostics Improvements
MySQL 5.6 - Operations and Diagnostics Improvements
 
Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...
Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...
Seminar : &quot;The Future of MySQL - Roadmap to Success&quot; session MySQL ...
 
MySQL 开发
MySQL 开发MySQL 开发
MySQL 开发
 
Percona 服务器与 XtraDB 存储引擎
Percona 服务器与 XtraDB 存储引擎Percona 服务器与 XtraDB 存储引擎
Percona 服务器与 XtraDB 存储引擎
 
NoSQL and MySQL: News about JSON
NoSQL and MySQL: News about JSONNoSQL and MySQL: News about JSON
NoSQL and MySQL: News about JSON
 

Mais de Giuseppe Maxia

MySQL NDB 8.0 clusters in your laptop with dbdeployer
MySQL NDB 8.0 clusters in your laptop with dbdeployerMySQL NDB 8.0 clusters in your laptop with dbdeployer
MySQL NDB 8.0 clusters in your laptop with dbdeployerGiuseppe Maxia
 
Dbdeployer, the universal installer
Dbdeployer, the universal installerDbdeployer, the universal installer
Dbdeployer, the universal installerGiuseppe Maxia
 
Test complex database systems in your laptop with dbdeployer
Test complex database systems in your laptop with dbdeployerTest complex database systems in your laptop with dbdeployer
Test complex database systems in your laptop with dbdeployerGiuseppe Maxia
 
A quick tour of Mysql 8 roles
A quick tour of Mysql 8 rolesA quick tour of Mysql 8 roles
A quick tour of Mysql 8 rolesGiuseppe Maxia
 
Synchronise your data between MySQL and MongoDB
Synchronise your data between MySQL and MongoDBSynchronise your data between MySQL and MongoDB
Synchronise your data between MySQL and MongoDBGiuseppe Maxia
 
Juggle your data with Tungsten Replicator
Juggle your data with Tungsten ReplicatorJuggle your data with Tungsten Replicator
Juggle your data with Tungsten ReplicatorGiuseppe Maxia
 
Tungsten Replicator tutorial
Tungsten Replicator tutorialTungsten Replicator tutorial
Tungsten Replicator tutorialGiuseppe Maxia
 
Preventing multi master conflicts with tungsten
Preventing multi master conflicts with tungstenPreventing multi master conflicts with tungsten
Preventing multi master conflicts with tungstenGiuseppe Maxia
 
MySQL high availability power and usability
MySQL high availability power and usabilityMySQL high availability power and usability
MySQL high availability power and usabilityGiuseppe Maxia
 
Solving MySQL replication problems with Tungsten
Solving MySQL replication problems with TungstenSolving MySQL replication problems with Tungsten
Solving MySQL replication problems with TungstenGiuseppe Maxia
 
State of the art of MySQL replication and clustering
State of the art of MySQL replication and clusteringState of the art of MySQL replication and clustering
State of the art of MySQL replication and clusteringGiuseppe Maxia
 
Testing mysql creatively in a sandbox
Testing mysql creatively in a sandboxTesting mysql creatively in a sandbox
Testing mysql creatively in a sandboxGiuseppe Maxia
 
Mysql 5.5 and 5.6 replication
Mysql 5.5 and 5.6 replicationMysql 5.5 and 5.6 replication
Mysql 5.5 and 5.6 replicationGiuseppe Maxia
 

Mais de Giuseppe Maxia (20)

MySQL NDB 8.0 clusters in your laptop with dbdeployer
MySQL NDB 8.0 clusters in your laptop with dbdeployerMySQL NDB 8.0 clusters in your laptop with dbdeployer
MySQL NDB 8.0 clusters in your laptop with dbdeployer
 
Test like a_boss
Test like a_bossTest like a_boss
Test like a_boss
 
Dbdeployer, the universal installer
Dbdeployer, the universal installerDbdeployer, the universal installer
Dbdeployer, the universal installer
 
Test complex database systems in your laptop with dbdeployer
Test complex database systems in your laptop with dbdeployerTest complex database systems in your laptop with dbdeployer
Test complex database systems in your laptop with dbdeployer
 
Dbdeployer
DbdeployerDbdeployer
Dbdeployer
 
Dbdeployer
DbdeployerDbdeployer
Dbdeployer
 
A quick tour of Mysql 8 roles
A quick tour of Mysql 8 rolesA quick tour of Mysql 8 roles
A quick tour of Mysql 8 roles
 
MySQL document_store
MySQL document_storeMySQL document_store
MySQL document_store
 
Replication skeptic
Replication skepticReplication skeptic
Replication skeptic
 
Synchronise your data between MySQL and MongoDB
Synchronise your data between MySQL and MongoDBSynchronise your data between MySQL and MongoDB
Synchronise your data between MySQL and MongoDB
 
Juggle your data with Tungsten Replicator
Juggle your data with Tungsten ReplicatorJuggle your data with Tungsten Replicator
Juggle your data with Tungsten Replicator
 
MySQL in your laptop
MySQL in your laptopMySQL in your laptop
MySQL in your laptop
 
Script it
Script itScript it
Script it
 
Tungsten Replicator tutorial
Tungsten Replicator tutorialTungsten Replicator tutorial
Tungsten Replicator tutorial
 
Preventing multi master conflicts with tungsten
Preventing multi master conflicts with tungstenPreventing multi master conflicts with tungsten
Preventing multi master conflicts with tungsten
 
MySQL high availability power and usability
MySQL high availability power and usabilityMySQL high availability power and usability
MySQL high availability power and usability
 
Solving MySQL replication problems with Tungsten
Solving MySQL replication problems with TungstenSolving MySQL replication problems with Tungsten
Solving MySQL replication problems with Tungsten
 
State of the art of MySQL replication and clustering
State of the art of MySQL replication and clusteringState of the art of MySQL replication and clustering
State of the art of MySQL replication and clustering
 
Testing mysql creatively in a sandbox
Testing mysql creatively in a sandboxTesting mysql creatively in a sandbox
Testing mysql creatively in a sandbox
 
Mysql 5.5 and 5.6 replication
Mysql 5.5 and 5.6 replicationMysql 5.5 and 5.6 replication
Mysql 5.5 and 5.6 replication
 

Último

Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
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
 
[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
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdflior mazor
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
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
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
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
 
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
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 

Último (20)

Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
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
 
[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
 
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
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
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
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
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
 
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
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 

Getting ready for the new MySQL

  • 1. <Insert Picture Here> Getting ready for the new MySQL Giuseppe Maxia MySQL Community Team Leader 1006.01 Thursday, 22 July 2010
  • 2. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.2 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 3. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.1 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 4. MySQL 5.5 • MySQL 5.5.5-m3 released on July 18th • Default storage engine is now InnoDB • Lots of goodies Thursday, 22 July 2010
  • 5. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.1 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 6. default engine select @@version,@@storage_engine; +-----------+------------------+ | @@version | @@storage_engine | +-----------+------------------+ | 5.1.48 | MyISAM | +-----------+------------------+ select @@version, @@storage_engine; +-----------+------------------+ | @@version | @@storage_engine | +-----------+------------------+ | 5.5.5-m3 | InnoDB | +-----------+------------------+ Thursday, 22 July 2010
  • 7. Plugin version select @@version, @@innodb_version; +-----------+------------------+ | @@version | @@innodb_version | +-----------+------------------+ | 5.5.5-m3 | 1.1.1 | +-----------+------------------+ Thursday, 22 July 2010
  • 8. InnoDB at a glance • Performance Improvements ✦ Improved recovery performance ✦ Multiple buffer pool instances ✦ Multiple rollback segments ✦ Native asynchronous I/O for Linux ✦ Extended change buffering Thursday, 22 July 2010
  • 9. Faster! • How fast? • In my benchmarks, 10% to 50% faster. • Others have reported much higher gains. • You decide. • Test it under your load. Thursday, 22 July 2010
  • 10. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.2 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 11. PERFORMANCE SCHEMA • PERFORMANCE_SCHEMA presents low level MySQL performance information • Data can be cleared • Filters with WHERE are allowed • Must be enabled with -- performance_schema Thursday, 22 July 2010
  • 12. performance schema SELECT EVENT_ID, EVENT_NAME, TIMER_WAIT FROM EVENTS_WAITS_HISTORY WHERE THREAD_ID = 13 ORDER BY EVENT_ID; +----------+-----------------------------------------+------------+ | EVENT_ID | EVENT_NAME | TIMER_WAIT | +----------+-----------------------------------------+------------+ | 86 | wait/synch/mutex/mysys/THR_LOCK::mutex | 686322 | | 87 | wait/synch/mutex/mysys/THR_LOCK_malloc | 320535 | | 88 | wait/synch/mutex/mysys/THR_LOCK_malloc | 339390 | | 89 | wait/synch/mutex/mysys/THR_LOCK_malloc | 377100 | | 90 | wait/synch/mutex/sql/LOCK_plugin | 614673 | | 91 | wait/synch/mutex/sql/LOCK_open | 659925 | | 92 | wait/synch/mutex/sql/THD::LOCK_thd_data | 494001 | | 93 | wait/synch/mutex/mysys/THR_LOCK_malloc | 222489 | | 94 | wait/synch/mutex/mysys/THR_LOCK_malloc | 214947 | | 95 | wait/synch/mutex/mysys/LOCK_alarm | 312993 | +----------+-----------------------------------------+------------+ Thursday, 22 July 2010
  • 13. performance schema mysql> UPDATE SETUP_INSTRUMENTS SET ENABLED = 'NO' WHERE NAME = 'wait/synch/mutex/myisammrg/MYRG_INFO::mutex'; mysql> UPDATE SETUP_CONSUMERS SET ENABLED = 'NO' WHERE NAME = 'file_summary_by_instance'; Thursday, 22 July 2010
  • 14. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.2 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 15. MySQL 5.5 enhancements • PARTITION BY RANGE COLUMNS • PARTITION BY LIST COLUMNS • TO_SECONDS 15 Thursday, 22 July 2010
  • 16. MySQL 5.5 enhancements R E CREATE TABLE t ( FO dt date B E 5.1 ) PARTITION BY RANGE (TO_DAYS(dt)) ( PARTITION p01 VALUES LESS THAN (TO_DAYS('2007-01-01')), PARTITION p02 VALUES LESS THAN (TO_DAYS('2008-01-01')), PARTITION p03 VALUES LESS THAN (TO_DAYS('2009-01-01')), PARTITION p04 VALUES LESS THAN (MAXVALUE)); 16 Thursday, 22 July 2010
  • 17. MySQL 5.5 enhancements R E FO SHOW CREATE TABLE t G B E 5.1 Table: t Create Table: CREATE TABLE `t` ( `dt` date DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50100 PARTITION BY RANGE (TO_DAYS (dt)) (PARTITION p01 VALUES LESS THAN (733042) ENGINE = MyISAM, […] 17 Thursday, 22 July 2010
  • 18. MySQL 5.5 enhancements E R CREATE TABLE t ( FT dt date A 5.5 ) PARTITION BY RANGE COLUMNS (dt) ( PARTITION p01 VALUES LESS THAN ('2007-01-01'), PARTITION p02 VALUES LESS THAN ('2008-01-01'), PARTITION p03 VALUES LESS THAN ('2009-01-01'), PARTITION p04 VALUES LESS THAN (MAXVALUE)); 18 Thursday, 22 July 2010
  • 19. MySQL 5.5 enhancements E R FT SHOW CREATE TABLE t Table: t A 5.5 Create Table: CREATE TABLE `t` ( `dt` date DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 /*!50500 PARTITION BY RANGE COLUMNS (dt) (PARTITION p01 VALUES LESS THAN ('2007-01-01') ENGINE = MyISAM, […] 19 Thursday, 22 July 2010
  • 20. MySQL 5.5 - Multiple columns CREATE TABLE t ( a int, b int )PARTITION BY RANGE COLUMNS (a,b) ( PARTITION p01 VALUES LESS THAN (10,1), PARTITION p02 VALUES LESS THAN (10,10), PARTITION p03 VALUES LESS THAN (10,20), PARTITION p04 VALUES LESS THAN (MAXVALUE, MAXVALUE)); 20 Thursday, 22 July 2010
  • 21. partition definition by range (a,b) records partition LESS THAN a b p01 10 10 1 10 p02 10 20 10 9 p03 10 30 10 10 p04 10 MAXVALUE 10 11 p05 MAXVALUE MAXVALUE Thursday, 22 July 2010
  • 22. partition definition by range (a,b) records partition LESS THAN a b p01 10 10 1 10 p02 10 20 10 9 p03 10 30 10 10 p04 10 MAXVALUE 10 11 p05 MAXVALUE MAXVALUE (1,10) < (10,10) ? (a < 10) OR ((a = 10) AND (b < 10)) (1 < 10) OR TRUE ((1 = 10) AND (10 < 10)) Thursday, 22 July 2010
  • 23. partition definition by range (a,b) records partition LESS THAN a b p01 10 10 1 10 p02 10 20 10 9 p03 10 30 10 10 p04 10 MAXVALUE 10 11 p05 MAXVALUE MAXVALUE (10,9) < (10,10) ? (a < 10) OR ((a = 10) AND (b < 10)) (10 < 10) OR TRUE ((10 = 10) AND (9 < 10)) Thursday, 22 July 2010
  • 24. partition definition by range (a,b) records partition LESS THAN a b p01 10 10 1 10 p02 10 20 10 9 p03 10 30 10 10 p04 10 MAXVALUE 10 11 p05 MAXVALUE MAXVALUE (10,10) < (10,10) ? (a < 10) OR ((a = 10) AND (b < 10)) (10 < 10) OR FALSE ((10 = 10) AND (10 < 10)) Thursday, 22 July 2010
  • 25. partition definition by range (a,b) records partition LESS THAN a b p01 10 10 1 10 p02 10 20 10 9 p03 10 30 10 10 p04 10 MAXVALUE 10 11 p05 MAXVALUE MAXVALUE (10,10) < (10,20) ? (a < 10) OR ((a = 10) AND (b < 20)) (10 < 10) OR TRUE ((10 = 10) AND (10 < 20)) Thursday, 22 July 2010
  • 26. CREATE TABLE employees ( emp_no int(11) NOT NULL, birth_date date NOT NULL, first_name varchar(14) NOT NULL, last_name varchar(16) NOT NULL, gender char(1) DEFAULT NULL, hire_date date NOT NULL ) ENGINE=MyISAM PARTITION BY RANGE COLUMNS(gender,hire_date) (PARTITION p01 VALUES LESS THAN ('F','1990-01-01'), PARTITION p02 VALUES LESS THAN ('F','2000-01-01'), PARTITION p03 VALUES LESS THAN ('F',MAXVALUE), PARTITION p04 VALUES LESS THAN ('M','1990-01-01'), PARTITION p05 VALUES LESS THAN ('M','2000-01-01'), PARTITION p06 VALUES LESS THAN ('M',MAXVALUE), PARTITION p07 VALUES LESS THAN (MAXVALUE,MAXVALUE) 26 Thursday, 22 July 2010
  • 27. MySQL 5.5 enhancements • TRUNCATE PARTITION • TO_SECONDS() 27 Thursday, 22 July 2010
  • 28. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.2 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 29. SIGNAL and RESIGNAL • Allow error handling in stored routines • The execution is passed to an error handler • Accessible error values are SQLSTATE, MESSAGE_TEXT and MYSQL_ERRNO O • RESIGNAL can pass along the original EM or a new information Thursday, 22 July 2010 D
  • 30. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.2 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 31. semi-synchronous replication semisynch master master plugin semisynch slave plugin slave 1 slave 2 Thursday, 22 July 2010
  • 32. semi-synchronous replication master COMMIT client 1 slave 1 slave 2 Thursday, 22 July 2010
  • 33. semi-synchronous replication master client COMMIT binary log 2 slave 1 slave 2 Thursday, 22 July 2010
  • 34. semi-synchronous replication master client COMMIT binary log 3 relay log slave 1 slave 2 Thursday, 22 July 2010
  • 35. semi-synchronous replication master client COMMIT binary log confirm log 4 reception relay log slave 1 slave 2 Thursday, 22 July 2010
  • 36. semi-synchronous replication master client COMMIT binary log 5 relay log O slave 1 slave 2 EM D Thursday, 22 July 2010
  • 37. Contents • Future: MySQL 5.5 ✦ performance ★ InnoDB plugin 1.2 default engine ★ Performance schema ✦ ease of use (partitioning, SIGNAL) ✦ reliability (semisynch replication) • Current: MySQL 5.1 ✦ performance: InnoDB plugin 1.0.8 Thursday, 22 July 2010
  • 38. Missed announcement • A GA release • As of MySQL 5.1.47 • The InnoDB plugin is GA • Ready to use for immediate gains Thursday, 22 July 2010
  • 39. INNODB 1.0.9 5.1 Thursday, 22 July 2010
  • 40. INNODB 1.0.9 5.1 Thursday, 22 July 2010
  • 41. MySQL INFORMATION InnoDB plugin SCHEMA table plugin Server Thursday, 22 July 2010
  • 42. Installation (1) my.cnf [mysqld] plugin_dir = /usr/local/mysql/lib/plugin ignore_builtin_innodb plugin-load=innodb=ha_innodb_plugin.so default-storage-engine=InnoDB innodb_file_per_table=1 innodb_file_format=barracuda innodb_strict_mode=1 Thursday, 22 July 2010
  • 44. Installation (2) SET GLOBAL innodb_fast_shutdown=0; RESTART the server Thursday, 22 July 2010
  • 45. Installation - 2nd method (1) my.cnf [mysqld] ignore_builtin_innodb Thursday, 22 July 2010
  • 46. Installation - 2nd method (2) SET GLOBAL innodb_fast_shutdown=0; RESTART the server Thursday, 22 July 2010
  • 47. Installation - 2nd method (3) mysql INSTALL PLUGIN INNODB SONAME 'ha_innodb_plugin.so'; INSTALL PLUGIN INNODB_TRX SONAME 'ha_innodb_plugin.so'; INSTALL PLUGIN INNODB_LOCKS SONAME 'ha_innodb_plugin.so'; INSTALL PLUGIN INNODB_LOCK_WAITS SONAME 'ha_innodb_plugin.so'; INSTALL PLUGIN INNODB_CMP SONAME 'ha_innodb_plugin.so'; INSTALL PLUGIN INNODB_CMP_RESET SONAME 'ha_innodb_plugin.so'; INSTALL PLUGIN INNODB_CMPMEM SONAME 'ha_innodb_plugin.so'; INSTALL PLUGIN INNODB_CMPMEM_RESET SONAME 'ha_innodb_plugin.so'; Thursday, 22 July 2010
  • 48. Installation - 2nd method (4) my.cnf [mysqld] default-storage-engine=InnoDB innodb_file_per_table=1 innodb_file_format=barracuda innodb_strict_mode=1 Thursday, 22 July 2010
  • 49. Installation - 2nd method (5) SET GLOBAL innodb_fast_shutdown=0; RESTART the server Thursday, 22 July 2010
  • 50. Installation differences • Method 1 (plugin-load in my.cnf) ✦ Only one operation ✦ But error prone (one looooong command) ✦ plugins not stored in mysql.plugin table • Method 2 (install plugin) ✦ plugin info saved to mysql.plugin table ✦ Easier to write ✦ 2 restarts required Thursday, 22 July 2010
  • 51. CAVEAT • If you uninstall the InnoDB plugin, remember: ✦ The tables are not backward compatible ✦ You must uninstall all the INFORMATION_SCHEMA plugin tables BEFORE removing the InnoDB plugin ✦ If the plugin is busy, it may not be removed until you restart the server Thursday, 22 July 2010
  • 53. Checking installation select @@version, @@innodb_version; +-----------+------------------+ | @@version | @@innodb_version | +-----------+------------------+ | 5.1.48 | 1.0.9 | +-----------+------------------+ O EM D Thursday, 22 July 2010
  • 54. Detecting locks session1> select c from t1 for update; +------+ | c | +------+ | aaa | | bbb | | ccc | +------+ Thursday, 22 July 2010
  • 55. Detecting locks session2> select c from t1 for update; [… waiting] Thursday, 22 July 2010
  • 56. Detecting locks session3> select i from t1 for update; [… waiting] Thursday, 22 July 2010
  • 57. getting locks information SELECT r.trx_id waiting_trx_id, r.trx_mysql_thread_id waiting_thread, r.trx_query waiting_query, b.trx_id blocking_trx_id, b.trx_mysql_thread_id blocking_thread, b.trx_query blocking_query FROM innodb_lock_waits w INNER JOIN innodb_trx b ON b.trx_id = w.blocking_trx_id INNER JOIN innodb_trx r ON r.trx_id = w.requesting_trx_id Thursday, 22 July 2010
  • 59. getting locks information ************* 1. row ************** waiting_trx_id: 711 waiting_thread: 3 waiting_query: select c from t1 for update blocking_trx_id: 710 blocking_thread: 2 blocking_query: select i from t1 for update Thursday, 22 July 2010
  • 60. getting locks information ************* 2. row ************** waiting_trx_id: 711 waiting_thread: 3 waiting_query: select c from t1 for update blocking_trx_id: 70F blocking_thread: 1 blocking_query: NULL Thursday, 22 July 2010
  • 61. getting locks information ************* 3. row ************** waiting_trx_id: 710 waiting_thread: 2 waiting_query: select i from t1 for update blocking_trx_id: 70F blocking_thread: 1 blocking_query: NULL Thursday, 22 July 2010
  • 62. The preceding is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. 62 Thursday, 22 July 2010
  • 63. THANKS Let's talk! This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported License. To view a copy of this license, visit http:// creativecommons.org/licenses/by-sa/3.0/ or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA. Thursday, 22 July 2010