SlideShare ist ein Scribd-Unternehmen logo
1 von 49
Downloaden Sie, um offline zu lesen
What’s New in MySQL 5.6


Dave Stokes
MySQL Community Manager

David.Stokes@oracle.com                                                    @Stoker

1   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Safe Harbor Statement
        The following 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
        decision. The development, release, and timing of any features or
        functionality described for Oracle’s products remains at the sole
        discretion of Oracle.


2   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6 is GA!


               The Best MySQL Release Ever


               All New Features and enhancements Available to all in the
               MySQL Community Edition

               Designed to Meet Your Most Demanding Web, Cloud and
               Embedded Application Requirements



4   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
World’s Most Popular Open Source Database

• Over 15 million estimated installations
• Used by 9 of top 10 web sites in the world
• Embedded by 8 of the top 10 ISVs
• #1 database in the Cloud
• Integrated w/Hadoop in 80% of Big Data platforms
• Facebook: 182K fans, +35% YoY Growth
• Twitter: 29K followers, +67% YoY Growth
• Numerous Awards: Linux Journal, CRN, PHP Architect...

5   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Industry Leaders Rely on MySQL




                            Web & Enterprise                                       OEM & ISVs



                                                                           Cloud

7   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Cluster 7.2
                                                                            MySQL Enterprise Backup 3.7
DRIVING MySQL                                                               Oracle VM Template for MySQL
                                                                                                               MySQL Cluster Manager 1.4
                                                                            Enterprise Edition                 MySQL Utilities 1.0.6
INNOVATION                                                                  MySQL Enterprise Oracle            MySQL Migration Wizard
MySQL Enterprise Monitor 2.2                                                Certifications                     MySQL Enterprise Backup 3.8
MySQL Cluster 7.1                                                           MySQL Windows Installer            MySQL Enterprise Audit
MySQL Cluster Manager 1.0                                                   MySQL Enterprise Security          MySQL Database 5.6
MySQL Workbench 5.2                                                         MySQL Enterprise Scalability
MySQL Database 5.5                                                                                                     All GA!
MySQL Enterprise Backup 3.5                                                           All GA!
                                                                                                               MySQL Cluster 7.3 DMR
MySQL Enterprise Monitor 2.3
                                                                            MySQL Database 5.6 DMR*                  Available Now!
MySQL Cluster Manager 1.1
                                                                            MySQL Cluster 7.2 DMR
              All GA!                                                               MySQL Labs!
                                                                                                                   A BETTER
                                                                                (“early and often”)                 MySQL
                      2010                                                                 2011                           2012-13

                                                                              *Development Milestone Release
 9   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Oracle’s Investment in MySQL Community
              Available to download and use under the GPL
            MySQL Database (Community Edition)
            MySQL Cluster
            MySQL Workbench
            MySQL Migration Wizard
            MySQL Utilities (in Python)
            MySQL Connectors
            MySQL Proxy
            Forums

                                                                            mysql.com/downloads/
10   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Best Release Ever!




11   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Scalability




                                               Users can fully utilize latest generations of hardware and OS
                                               Scales as data volumes and users grow
12   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6 SysBench Benchmarks


                                                                                MySQL 5.6




                                                                                MySQL 5.5




14
                                                  Up to 151% Performance Gain
     Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6 SysBench Benchmarks


                                                                                MySQL 5.6




                                                                                MySQL 5.5




15
                                                  Up to 234% Performance Gain
     Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB




16   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB
              Better Performance, Scalability
        Several internal improvements (e.g. Split kernel mutex, efficient Buffer
        Pool Flushing, more...)
        Optimized for Read Only workloads
        Persistent Optimizer Statistics
                 - Increased plan stability, accurate statistics
                 - Better user control, automatic/manual
          SSD Optimizations
                 - 4, 8k page sizes
                 - .ibd files outside of MySQL data dir
                 - separate tablespaces for undo log

17   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB
              Optimized for Read Only Workloads
                      Ideal for highly concurrent, read intensive web apps
                      Enables developer control of read only transactional overhead

                                  SET autocommit = 1;
                                  SELECT c FROM sbtest WHERE id=N;           On by default

                                  SET autocommit = 0;
                                  START TRANSACTION READ ONLY;
                                                                            Developer controlled
                                  SELECT c FROM sbtest WHERE id=N;
                                  COMMIT;


                                    Less complexity, more apps can be standardized on InnoDB

18   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB
              Online DDL Operations
                         CREATE INDEX
                         DROP INDEX
                         Change AUTO_INCREMENT value for a column
                         ADD/DROP FOREIGN KEY
                         Rename COLUMN
                         Change ROW FORMAT, KEY_BLOCK_SIZE for a table
                         Change COLUMN NULL, NOT_NULL
                         Add, drop, reorder COLUMN
                                             Adds flexible schemas, online changes, no downtime
                                             No need to consider NoSQL options
19   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB
              Dump and Restore/Warm Buffer Pool
                       Shortens warm up times after restart (from hours to minutes)
                       At shutdown/startup or manually at any time
                       Small footprint on disk - stores tablespace and page IDs only
                 Dump current state of Buffer Pool at shutdown:
                 mysql> SET innodb_buffer_pool_dump_at_shutdown=ON;

                 Load Buffer Pool from dump at startup:
                 mysql> SET innodb_buffer_pool_load_at_startup=ON;


                              Better Elasticity - Quickly spin up new instances to meet demand
                              Great for Cloud, Hosted, SaaS, On-premise deployments

20   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB
              Full Text Search                                              create table quotes
                                                                            ( id int unsigned
 FULLTEXT indexes on InnoDB tables                                          auto_increment primary
 Keys on text-based content                                                 key
 Speeds up searches for words, phrases                                      ,author varchar(64)
                                                                            , quote varchar(4000)
 Fully transactional, fast look up                                          , source varchar(64)
 Natural language/Boolean modes, proximity                                  , fulltext(quote)
search, relevance ranking                                                   ) engine=innodb;


     select author as “Apple" from quotes
         where match(quote) against (‘apple' in natural language mode);


                                    Less complexity, more apps can be standardized on InnoDB
21   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB
                 Transportable Tablespaces
                         Enables export/import of tables between running MySQL instances
Export: CREATE TABLE t(c1 INT) engine=InnoDB;
               FLUSH TABLE t FOR EXPORT; -- quiesce the table and create the meta data file
               $innodb_data_home_dir/test/t.cfg
               UNLOCK TABLES;

Import:
               CREATE TABLE t(c1 INT) engine=InnoDB; -- if it doesn't already exist
               ALTER TABLE t DISCARD TABLESPACE;
               -- The user must stop all updates on the tables, prior to the IMPORT
               ALTER TABLE t IMPORT TABLESPACE;


                                          Better Elasticity - Quickly spin up new instances to meet demand
                                          Great for Cloud, Hosted, SaaS, On-premise deployments
   22   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: InnoDB
               NoSQL Key Value Access to InnoDB
Same app can leverage:
 Key-value access to InnoDB
 via familiar Memcached API
 SQL for rich queries, JOINs,
 FKs, etc.
 Fully transactional
        Up to 9x performance boost for
        updates
        Great for fast data ingestion in Big
        Data pipeline

 23   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Performance




                                                                            Customized Java-based App Test Harness
                                                                            Oracle Linux 6
                                                                            Intel(R) Xeon(R) 2.0 x86_64
                                                                            MySQL leveraging:
                                                                            - 8 available CPU threads
                                                                            - 2 GHz, 16GB RAM



                             Up to 9x Higher “SET / INSERT” Throughput
              blogs.oracle.com/mysqlinnodb/entry/new_enhancements_for_innodb_memcached
24   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Optimizer




25   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Optimizer
              Subquery Optimizations

         SELECT title FROM film WHERE film_id IN
                   (SELECT film_id FROM film_actor
                                       GROUP BY film_id HAVING count(*) > 12);


         For Developers
           - No more re-writing legacy application or packaged subqueries into joins
         Performance
                  - DBT 3 Query #13 benchmark:
                  - Execution time drops from DAYS to seconds


27   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Optimizer
              Postpone Materialization of views/subqueries in
              FROM
              EXPLAIN SELECT * FROM (SELECT * FROM a_big_table);
              SELECT … FROM derived_table AS dt
                       join table AS t WHERE dt.fld = t.dlf

              Late materialization
                       - Allows fast EXPLAINs for views/subqueries
                       - Avoid materialization when possible, faster bail out
                       - A key can be generated for derived tables
                             240x better execution time (drops from ~8 min to ~2 sec)

28   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Optimizer
              File Sort Optimizations with Small Limit

                             CREATE TABLE products(
                                productid int auto_increment PRIMARY KEY,
                                productname varchar(200)
                             );                       Web use case – list top 100 products sorted by name
                             SELECT * FROM products ORDER BY productname LIMIT 100;

       Use sort_buffer_size to sort all in memory, avoid creating
     intermediate sorted files
       Produce ordered result set using a single table scan
       Example above: 20 million rows, using default sort_buffer_size
                   - 4x better execution time (drops from 40s to 10s)
29   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Optimizer
               Index Condition Pushdown (ICP)

CREATE TABLE person (                                                          With ICP Disabled
      personid INTEGER PRIMARY KEY,                                          - 15 s (buffer pool 128 Mb)
      pe test
      firstname CHAR(20),
                                                                             - 1.4 s (buffer pool 1.5 Gb)
      lastname CHAR(20),
      r
      postalcode INTEGER,                                                      With ICP Enabled
      age INTEGER,
      address CHAR(50),                                                      - Execution time drops to 90 ms for
      KEY k1 (postalcode,age)                                                  both
   ) ENGINE=InnoDB;                                                            Controlled by optimizer_switch
                                                                             index_condition_pushdown flag
SELECT lastname, firstname FROM person
   WHERE postalcode BETWEEN 5000 AND 5500 AND age BETWEEN 21 AND 22;


 30   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
"records_estimation": [
                MySQL 5.6: Optimizer                                            {
                                                                                  "database": "test",
                Better Diagnostics                                                "table": "t6",
                                                                                  "range_analysis": {
                                                                                     "table_scan": {
           EXPLAIN                                                                     "records": 2,
                                                                                       "cost": 4.5034
       - INSERT, UPDATE, and DELETE                                               },
       - Structured EXPLAIN output                                                "potential_range_indices": [
                                                                                     {
          Optimizer Traces                                                             "index": "d",
                                                                                       "usable": true,
SET SESSION OPTIMIZER_TRACE=‘enabled=on’;                                              "key_parts": [
                                                                                         "d"
SELECT (SELECT 1 FROM t6 WHERE d = c)                                                  ]
AS RESULT FROM t5;                                                                   }
                                                                                  ],
SELECT * FROM information_schema.OPTIMIZER_TRACE;                                 "best_covering_index_scan": {
                                                                                     "index": "d",
                                                                                     "cost": 1.4233,
                                                                                     "chosen": true
                                                                                  },

  32   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Customer Requirements for Replication




33   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Best Replication Features Ever




34   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Replication
                 Global Transaction Ids

  Simple to track & compare replication across the cluster
       - Unique identifier for each transaction written to the Binlog
  Automatically identify the most up-to-date slave for failover
  Deploy n-tier replication hierarchies
                                                                               Master
                                                                                             GTID=123456
Eliminates the need for complex
       3rd party solutions
                                                                               GTID=123456

                                                                                             GTID=123456   GTID=123456
  35    Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Replication HA Utilities (Python)
                                                                            Enabling self-healing replication topologies
                                                                            Automated failover & recovery
      Failed                                                                - mysqlfailover Utility
      Master                                                                Switchover & administration
                                                                            - mysqlrpladmin Utility
                                                               Promoted      Monitoring                   HA Utilities
                                                               Master

                                                                            Delivers HA within the core MySQL
                                                                            distribution
                                                                             - Eliminates the need for 3rd party solutions
                                                                             - Allows extensibility to support variety of
                                     Slaves
                                                                               HA mechanisms
36   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Replication
              Multi-Threaded Slaves

 Increases slave throughput,
 reducing lag
 Applies events to different
 databases in parallel using
 concurrent SQL threads
 5x performance gain
                                                                            SysBench, running across 10 x schemas
                                                                            Oracle Linux 6.1, Oracle Sun Fire x4150 m2 Server


                                Great for systems which isolate application data using databases
                                         - Cloud, SaaS, Hosting, other multi-tenant deployments
37   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Replication
              Binary Log Group Commit                                                              Binary
                                                                                                    Log

                                                                                         T1   T2
                                                                               Session
Increases replication throughput by                                                      T3   T4
increasing performance of the
master
                                                                                           Group
Commits multiple transactions as a                                                        commit
group to Binlog on disk
                                                                             Master
Finer grained locking; reducing lock                                        Database
wait times

                     Better transactional throughput, less slave lag when coupled with MTS
                     MySQL Consultative Support provides guidance on configuration
38   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Binary Log Group Commit Performance
              Binlog=1

                                                                                       MySQL 5.6




                                                                                       MySQL 5.5

                                                                                       Oracle Linux 6
                                                                                       Intel(R) Xeon(R) E7540 x86_64
                                                                                       MySQL leveraging:
                                                                                       - 48 of 96 available CPU threads
                                                                                       - 2 GHz, 512GB RAM




39
                                                               180% Performance Gain
     Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Replication
              Optimized Row Base Replication




                                  Primary Key                               Changed Columns
               New option: binlog-row-image=minimal
               Increases throughput for master and slave
                    - Reduces Binlog size, memory & network bandwidth
               Only replicates elements of the Row image that have changed
40   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Crash safe Slaves
Atomic                                      Data                                      Automatic recovery of a slave after a failure
        CRASH!                                                                         - Binlog and table data are transactionally
                                       Position Info                           Time
Before:                                                                                   consistent
–Transaction Data:                                         in tables                  Resumes replication without Dev/Op
–Replication Info: in files                                                           intervention
                                                                                       - Automatically rolling back replication to
Atomic                                      Data                                          last committed event
                                       Position Info
                                                                               Time     Eliminates risk of data loss or corruption
MySQL 5.6
–Transaction Data:      in tables
–Replication Info: in tables
   41   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Replication Event Checksums
                                                                                    Ensures replicated data is correct,
Master                                                                      Slave   consistent and accessible
                                                                                    Detects corrupt replication events before
                                                                                    they’re applied
                                                                                     – Returns an error
                                                                                    Protects entire replication path
          #                                                                   #      – Memory
                                                                                     – Disk
                                                                                                  Eliminates risk of data loss or
                                                                                     – Network
                                                                                                            corruption
                                                                                     – Bugs


42   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Performance Schema
           New Instrumentation                                              New Features
                Statements/Stages                                           Show contents of Host cache
                Table and Index I/O                                         New Summary tables
                Table locks                                                 Easier configuration
                Users/Hosts/Accounts                                          - Start up defaults in my.cnf
                Network I/O                                                   - Auto tune
     [mysqld]                                                               Reduced overhead
     performance_schema=on
                                                                            On by default

                      Provides user/session level stats on resource usage for Cloud-based
                                      consumption/reporting/charge back
43   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6 Performance Schema
         Statements/Stages
                - What are my most resource intensive queries? Where do they spend time?
         Table/Index I/O, Table Locks
                - Which application tables/indexes cause the most load or contention?
         Users/Hosts/Accounts
                - Which application users, hosts, accounts are consuming the most
                      resources?
         Network I/O
                - What is the network load like? How long do sessions idle?
         Summaries
                - Aggregated statistics grouped by thread, user, host, account or object
44   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Security
           Major overhaul of password handling
              Provide alternatives to showing passwords in plain text
              Assess/Enforce password strength policies
              Enforce new password at next login
              Stronger password hashing


                       Aligns MySQL user security/password policies with Oracle guidelines
                                       and most common industry SOPs


45   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Data Types
 TIME/TIMESTAMP/DATETIME - fractional second precision
CREATE TABLE t1 (t TIME(3), dt DATETIME(6));


 TIMESTAMP/DATETIME – default /auto update = CURRENT_TIMESTAMP
CREATE TABLE t1 (
ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
dt DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP );


 TIMESTAMP – now nullable by default

                                                            Improves ease of use for developers

 46   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Better Condition Handling
        GET DIAGNOSTICS
         - Provides standard interface to MySQL Diagnostics Area
              mysql> DROP TABLE test.no_such_table;
              ERROR 1051 (42S02): Unknown table 'test.no_such_table'
              mysql> GET DIAGNOSTICS CONDITION 1
              -> @p1 = RETURNED_SQLSTATE, @p2 = MESSAGE_TEXT;
              mysql> SELECT @p1, @p2;
              +-------+------------------------------------+
              | @p1   | @p2                                |
              +-------+------------------------------------+
              | 42S02 | Unknown table 'test.no_such_table' |
              +-------+------------------------------------+

                                                           Improves ease of use for developers

48   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: Improved Partitioning
 Up to 8k partitions/sub-partitions per table
 Explicit partition selection in queries, DML (SELECT, INSERT, UPDATE,
DELETE, REPLACE, LOAD DATA, LOAD XML)
SELECT * FROM t PARTITION (p0, p1) WHERE c < 5

      Import/export partitions to/from partitioned tables to/from non-partitioned tables
mysql> ALTER TABLE t EXCHANGE PARTITION p0 WITH TABLE t2;
Query OK, 0 rows affected (0.28 sec)


                                                           Better scalability for all applications
                                                           Improves ease of use for developers
49   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: New Default Settings
 Better out-of-the-box performance on modern architectures
 New fixed defaults and auto-tuning based on related parameters,
host configuration
 Can be modified after installation (my.cnf or my.ini)
 All new defaults and auto-tuned settings detailed in 5.6 docs




                                              Provides better default performance/scale for
                                                         most MySQL use cases


50   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL 5.6: In Summary




51   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Database Development Priorities
                Optimized for Web, Cloud-based, Embedded use cases
                Simplified, Pluggable architecture
                      - Maintainability, more extensible
                      - More NoSQL options (HTTP, JSON, JavaScript, etc.)
                Refactoring
                      - Data Dictionary in InnoDB
                      - Optimizer/Parser/Protocol
                InnoDB
                      - Optimized for SSD
                      - GIS
                Easy HA, Replication and Sharding
52   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Learn More
                  mysql.com
                         - MySQL Products, Editions, Training, Consulting
                         - TCO calculator
                         - Customer use cases and success stories
                  dev.mysql.com
                    - Downloads, Documentation
                    - Forums
                   - PlanetMySQL
                  eDelivery.oracle.com
                   - Download and evaluate all MySQL products

53   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
New MySQL 5.6 Training
            Learn about the world’s most popular open-source database

 Learn MySQL From Oracle
          • Expert-led training to help you install,
            configure, and administer MySQL
            5.6.
          • Extensive hands-on practices guide
            you through each concept
          • Explore real-world problems and
            discover best practices as you work
            with the tools and techniques used by
            professional MySQL database
            administrators
          • Content developed in collaboration
            with product engineering.
 •        Available in traditional or virtual
          classroom as well as self-study formats.
 •        Custom training solutions to match your
          organization’s specific business needs
 •        Backed by Oracle University’s 100%
          Satisfaction Program



oracle.com/education/mysql
     54     Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
MySQL Connect


                September 21st – 23rd
                San Francisco Union Square Hotel
                Learn from the best
                     – MySQL Engineers
                     – Customers
                Tutorials on Advanced Subjects




55   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
Developer and DBA Guide to
What’s New in MySQL 5.6

                          David.Stokes@Oracle.com
                          @stoker
                          slideshare.net/davestokes

Questions?


57   Copyright © 2013, Oracle and/or its affiliates. All rights reserved.

Weitere ähnliche Inhalte

Was ist angesagt?

MySQL Performance Best Practices
MySQL Performance Best PracticesMySQL Performance Best Practices
MySQL Performance Best PracticesOlivier DASINI
 
Introduction to MySQL
Introduction to MySQLIntroduction to MySQL
Introduction to MySQLTed Wennmark
 
MySQL 5.6, news in 5.7 and our HA options
MySQL 5.6, news in 5.7 and our HA optionsMySQL 5.6, news in 5.7 and our HA options
MySQL 5.6, news in 5.7 and our HA optionsTed Wennmark
 
New awesome features in MySQL 5.7
New awesome features in MySQL 5.7New awesome features in MySQL 5.7
New awesome features in MySQL 5.7Zhaoyang Wang
 
MySQL Enterprise Backup - BnR Scenarios
MySQL Enterprise Backup - BnR ScenariosMySQL Enterprise Backup - BnR Scenarios
MySQL Enterprise Backup - BnR ScenariosKeith Hollman
 
MySQL 5.7 Replication News
MySQL 5.7 Replication News MySQL 5.7 Replication News
MySQL 5.7 Replication News Ted Wennmark
 
MySQL Document Store for Modern Applications
MySQL Document Store for Modern ApplicationsMySQL Document Store for Modern Applications
MySQL Document Store for Modern ApplicationsOlivier DASINI
 
Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...
Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...
Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...Keith Hollman
 
MySQL Enterprise Monitor
MySQL Enterprise MonitorMySQL Enterprise Monitor
MySQL Enterprise MonitorTed Wennmark
 
MySQL InnoDB Cluster HA Overview & Demo
MySQL InnoDB Cluster HA Overview & DemoMySQL InnoDB Cluster HA Overview & Demo
MySQL InnoDB Cluster HA Overview & DemoKeith Hollman
 
What's new in my sql smug
What's new in my sql smugWhat's new in my sql smug
What's new in my sql smugTed Wennmark
 
MySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and DevelopersMySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and DevelopersRonald Bradford
 
Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0Olivier DASINI
 
MySQL Database Architectures - 2020-10
MySQL Database Architectures -  2020-10MySQL Database Architectures -  2020-10
MySQL Database Architectures - 2020-10Kenny Gryp
 
MySQL 8.0 InnoDB Cluster demo
MySQL 8.0 InnoDB Cluster demoMySQL 8.0 InnoDB Cluster demo
MySQL 8.0 InnoDB Cluster demoKeith Hollman
 
MySQL 5.7 in a Nutshell
MySQL 5.7 in a NutshellMySQL 5.7 in a Nutshell
MySQL 5.7 in a NutshellEmily Ikuta
 
Welcome to MySQL
Welcome to MySQLWelcome to MySQL
Welcome to MySQLGrigale LTD
 
MySQL High Availability -- InnoDB Clusters
MySQL High Availability -- InnoDB ClustersMySQL High Availability -- InnoDB Clusters
MySQL High Availability -- InnoDB ClustersMatt Lord
 

Was ist angesagt? (20)

MySQL Performance Best Practices
MySQL Performance Best PracticesMySQL Performance Best Practices
MySQL Performance Best Practices
 
Introduction to MySQL
Introduction to MySQLIntroduction to MySQL
Introduction to MySQL
 
MySQL 5.6, news in 5.7 and our HA options
MySQL 5.6, news in 5.7 and our HA optionsMySQL 5.6, news in 5.7 and our HA options
MySQL 5.6, news in 5.7 and our HA options
 
New awesome features in MySQL 5.7
New awesome features in MySQL 5.7New awesome features in MySQL 5.7
New awesome features in MySQL 5.7
 
MySQL Enterprise Backup - BnR Scenarios
MySQL Enterprise Backup - BnR ScenariosMySQL Enterprise Backup - BnR Scenarios
MySQL Enterprise Backup - BnR Scenarios
 
MySQL 5.7 Replication News
MySQL 5.7 Replication News MySQL 5.7 Replication News
MySQL 5.7 Replication News
 
MySQL Document Store for Modern Applications
MySQL Document Store for Modern ApplicationsMySQL Document Store for Modern Applications
MySQL Document Store for Modern Applications
 
Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...
Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...
Moodle Moot Spain: Moodle Available and Scalable with MySQL HA - InnoDB Clust...
 
My sql
My sqlMy sql
My sql
 
MySQL Enterprise Monitor
MySQL Enterprise MonitorMySQL Enterprise Monitor
MySQL Enterprise Monitor
 
MySQL InnoDB Cluster HA Overview & Demo
MySQL InnoDB Cluster HA Overview & DemoMySQL InnoDB Cluster HA Overview & Demo
MySQL InnoDB Cluster HA Overview & Demo
 
What's new in my sql smug
What's new in my sql smugWhat's new in my sql smug
What's new in my sql smug
 
MySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and DevelopersMySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and Developers
 
MySQL Security
MySQL SecurityMySQL Security
MySQL Security
 
Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0Upgrade from MySQL 5.7 to MySQL 8.0
Upgrade from MySQL 5.7 to MySQL 8.0
 
MySQL Database Architectures - 2020-10
MySQL Database Architectures -  2020-10MySQL Database Architectures -  2020-10
MySQL Database Architectures - 2020-10
 
MySQL 8.0 InnoDB Cluster demo
MySQL 8.0 InnoDB Cluster demoMySQL 8.0 InnoDB Cluster demo
MySQL 8.0 InnoDB Cluster demo
 
MySQL 5.7 in a Nutshell
MySQL 5.7 in a NutshellMySQL 5.7 in a Nutshell
MySQL 5.7 in a Nutshell
 
Welcome to MySQL
Welcome to MySQLWelcome to MySQL
Welcome to MySQL
 
MySQL High Availability -- InnoDB Clusters
MySQL High Availability -- InnoDB ClustersMySQL High Availability -- InnoDB Clusters
MySQL High Availability -- InnoDB Clusters
 

Ähnlich wie MySQL 5.6: What's New and Enhanced in the Best Release Ever

What is new in MySQL? (Lars Thalmann)
What is new in MySQL? (Lars Thalmann)What is new in MySQL? (Lars Thalmann)
What is new in MySQL? (Lars Thalmann)Ontico
 
MySQL Community and Commercial Edition
MySQL Community and Commercial EditionMySQL Community and Commercial Edition
MySQL Community and Commercial EditionMario Beck
 
What's New in MySQL 5.6
What's New in MySQL 5.6What's New in MySQL 5.6
What's New in MySQL 5.6Santo Leto
 
MySQL update SCaLE 2012
MySQL update SCaLE 2012MySQL update SCaLE 2012
MySQL update SCaLE 2012Dave Stokes
 
MySQL - powering the web economy v1.0
MySQL - powering the web economy v1.0MySQL - powering the web economy v1.0
MySQL - powering the web economy v1.0IDG Romania
 
Tutorial MySQL com Java
Tutorial MySQL com JavaTutorial MySQL com Java
Tutorial MySQL com JavaMySQL Brasil
 
Mysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New FeaturesMysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New FeaturesTarique Saleem
 
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
 Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL SupportMysql User Camp
 
Oracle mysql comparison
Oracle mysql comparisonOracle mysql comparison
Oracle mysql comparisonArun Sharma
 
MySQL Tech Tour 2015 - Alt Intro
MySQL Tech Tour 2015 - Alt IntroMySQL Tech Tour 2015 - Alt Intro
MySQL Tech Tour 2015 - Alt IntroMark Swarbrick
 
MySQL para Desenvolvedores
MySQL para DesenvolvedoresMySQL para Desenvolvedores
MySQL para DesenvolvedoresMySQL Brasil
 
Keith Larson Replication
Keith Larson ReplicationKeith Larson Replication
Keith Larson ReplicationDave Stokes
 
MySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime TimeMySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime TimeArnab Ray
 
My sql crashcourse_intro_kdl
My sql crashcourse_intro_kdlMy sql crashcourse_intro_kdl
My sql crashcourse_intro_kdlsqlhjalp
 

Ähnlich wie MySQL 5.6: What's New and Enhanced in the Best Release Ever (20)

What is new in MySQL? (Lars Thalmann)
What is new in MySQL? (Lars Thalmann)What is new in MySQL? (Lars Thalmann)
What is new in MySQL? (Lars Thalmann)
 
My sql indo_comm
My sql indo_commMy sql indo_comm
My sql indo_comm
 
MySQL Community and Commercial Edition
MySQL Community and Commercial EditionMySQL Community and Commercial Edition
MySQL Community and Commercial Edition
 
MySQL
MySQLMySQL
MySQL
 
What's New in MySQL 5.6
What's New in MySQL 5.6What's New in MySQL 5.6
What's New in MySQL 5.6
 
20111121 osi keynote
20111121 osi keynote20111121 osi keynote
20111121 osi keynote
 
MySQL update SCaLE 2012
MySQL update SCaLE 2012MySQL update SCaLE 2012
MySQL update SCaLE 2012
 
MySQL - powering the web economy v1.0
MySQL - powering the web economy v1.0MySQL - powering the web economy v1.0
MySQL - powering the web economy v1.0
 
Tutorial MySQL com Java
Tutorial MySQL com JavaTutorial MySQL com Java
Tutorial MySQL com Java
 
Mysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New FeaturesMysql User Camp : 20th June - Mysql New Features
Mysql User Camp : 20th June - Mysql New Features
 
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
 Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
Mysql User Camp : 20-June-14 : Mysql New features and NoSQL Support
 
Oracle mysql comparison
Oracle mysql comparisonOracle mysql comparison
Oracle mysql comparison
 
MySQL Tech Tour 2015 - Alt Intro
MySQL Tech Tour 2015 - Alt IntroMySQL Tech Tour 2015 - Alt Intro
MySQL Tech Tour 2015 - Alt Intro
 
MySQL Latest News
MySQL Latest NewsMySQL Latest News
MySQL Latest News
 
MySQL para Desenvolvedores
MySQL para DesenvolvedoresMySQL para Desenvolvedores
MySQL para Desenvolvedores
 
MySQL Tech Tour Nov, 2013
MySQL Tech Tour Nov, 2013MySQL Tech Tour Nov, 2013
MySQL Tech Tour Nov, 2013
 
MySQL Spatial
MySQL SpatialMySQL Spatial
MySQL Spatial
 
Keith Larson Replication
Keith Larson ReplicationKeith Larson Replication
Keith Larson Replication
 
MySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime TimeMySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime Time
 
My sql crashcourse_intro_kdl
My sql crashcourse_intro_kdlMy sql crashcourse_intro_kdl
My sql crashcourse_intro_kdl
 

Mehr von Dave Stokes

Json within a relational database
Json within a relational databaseJson within a relational database
Json within a relational databaseDave Stokes
 
Database basics for new-ish developers -- All Things Open October 18th 2021
Database basics for new-ish developers  -- All Things Open October 18th 2021Database basics for new-ish developers  -- All Things Open October 18th 2021
Database basics for new-ish developers -- All Things Open October 18th 2021Dave Stokes
 
Php &amp; my sql - how do pdo, mysq-li, and x devapi do what they do
Php &amp; my sql  - how do pdo, mysq-li, and x devapi do what they doPhp &amp; my sql  - how do pdo, mysq-li, and x devapi do what they do
Php &amp; my sql - how do pdo, mysq-li, and x devapi do what they doDave Stokes
 
Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...
Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...
Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...Dave Stokes
 
MySQL 8.0 New Features -- September 27th presentation for Open Source Summit
MySQL 8.0 New Features -- September 27th presentation for Open Source SummitMySQL 8.0 New Features -- September 27th presentation for Open Source Summit
MySQL 8.0 New Features -- September 27th presentation for Open Source SummitDave Stokes
 
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScriptJavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScriptDave Stokes
 
Open Source World June '21 -- JSON Within a Relational Database
Open Source World June '21 -- JSON Within a Relational DatabaseOpen Source World June '21 -- JSON Within a Relational Database
Open Source World June '21 -- JSON Within a Relational DatabaseDave Stokes
 
Dutch PHP Conference 2021 - MySQL Indexes and Histograms
Dutch PHP Conference 2021 - MySQL Indexes and HistogramsDutch PHP Conference 2021 - MySQL Indexes and Histograms
Dutch PHP Conference 2021 - MySQL Indexes and HistogramsDave Stokes
 
Validating JSON -- Percona Live 2021 presentation
Validating JSON -- Percona Live 2021 presentationValidating JSON -- Percona Live 2021 presentation
Validating JSON -- Percona Live 2021 presentationDave Stokes
 
Midwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL FeaturesMidwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL FeaturesDave Stokes
 
Data Love Conference - Window Functions for Database Analytics
Data Love Conference - Window Functions for Database AnalyticsData Love Conference - Window Functions for Database Analytics
Data Love Conference - Window Functions for Database AnalyticsDave Stokes
 
Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...
Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...
Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...Dave Stokes
 
Confoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New FeaturesConfoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New FeaturesDave Stokes
 
Confoo 2021 - MySQL Indexes & Histograms
Confoo 2021 - MySQL Indexes & HistogramsConfoo 2021 - MySQL Indexes & Histograms
Confoo 2021 - MySQL Indexes & HistogramsDave Stokes
 
Datacon LA - MySQL without the SQL - Oh my!
Datacon LA - MySQL without the SQL - Oh my! Datacon LA - MySQL without the SQL - Oh my!
Datacon LA - MySQL without the SQL - Oh my! Dave Stokes
 
MySQL Replication Update - DEbconf 2020 presentation
MySQL Replication Update - DEbconf 2020 presentationMySQL Replication Update - DEbconf 2020 presentation
MySQL Replication Update - DEbconf 2020 presentationDave Stokes
 
MySQL 8.0 Operational Changes
MySQL 8.0 Operational ChangesMySQL 8.0 Operational Changes
MySQL 8.0 Operational ChangesDave Stokes
 
cPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven FeaturescPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven FeaturesDave Stokes
 
A Step by Step Introduction to the MySQL Document Store
A Step by Step Introduction to the MySQL Document StoreA Step by Step Introduction to the MySQL Document Store
A Step by Step Introduction to the MySQL Document StoreDave Stokes
 
Discover The Power of NoSQL + MySQL with MySQL
Discover The Power of NoSQL + MySQL with MySQLDiscover The Power of NoSQL + MySQL with MySQL
Discover The Power of NoSQL + MySQL with MySQLDave Stokes
 

Mehr von Dave Stokes (20)

Json within a relational database
Json within a relational databaseJson within a relational database
Json within a relational database
 
Database basics for new-ish developers -- All Things Open October 18th 2021
Database basics for new-ish developers  -- All Things Open October 18th 2021Database basics for new-ish developers  -- All Things Open October 18th 2021
Database basics for new-ish developers -- All Things Open October 18th 2021
 
Php &amp; my sql - how do pdo, mysq-li, and x devapi do what they do
Php &amp; my sql  - how do pdo, mysq-li, and x devapi do what they doPhp &amp; my sql  - how do pdo, mysq-li, and x devapi do what they do
Php &amp; my sql - how do pdo, mysq-li, and x devapi do what they do
 
Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...
Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...
Longhorn PHP - MySQL Indexes, Histograms, Locking Options, and Other Ways to ...
 
MySQL 8.0 New Features -- September 27th presentation for Open Source Summit
MySQL 8.0 New Features -- September 27th presentation for Open Source SummitMySQL 8.0 New Features -- September 27th presentation for Open Source Summit
MySQL 8.0 New Features -- September 27th presentation for Open Source Summit
 
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScriptJavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
JavaScript and Friends August 20th, 20201 -- MySQL Shell and JavaScript
 
Open Source World June '21 -- JSON Within a Relational Database
Open Source World June '21 -- JSON Within a Relational DatabaseOpen Source World June '21 -- JSON Within a Relational Database
Open Source World June '21 -- JSON Within a Relational Database
 
Dutch PHP Conference 2021 - MySQL Indexes and Histograms
Dutch PHP Conference 2021 - MySQL Indexes and HistogramsDutch PHP Conference 2021 - MySQL Indexes and Histograms
Dutch PHP Conference 2021 - MySQL Indexes and Histograms
 
Validating JSON -- Percona Live 2021 presentation
Validating JSON -- Percona Live 2021 presentationValidating JSON -- Percona Live 2021 presentation
Validating JSON -- Percona Live 2021 presentation
 
Midwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL FeaturesMidwest PHP Presentation - New MSQL Features
Midwest PHP Presentation - New MSQL Features
 
Data Love Conference - Window Functions for Database Analytics
Data Love Conference - Window Functions for Database AnalyticsData Love Conference - Window Functions for Database Analytics
Data Love Conference - Window Functions for Database Analytics
 
Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...
Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...
Open Source 1010 and Quest InSync presentations March 30th, 2021 on MySQL Ind...
 
Confoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New FeaturesConfoo 2021 -- MySQL New Features
Confoo 2021 -- MySQL New Features
 
Confoo 2021 - MySQL Indexes & Histograms
Confoo 2021 - MySQL Indexes & HistogramsConfoo 2021 - MySQL Indexes & Histograms
Confoo 2021 - MySQL Indexes & Histograms
 
Datacon LA - MySQL without the SQL - Oh my!
Datacon LA - MySQL without the SQL - Oh my! Datacon LA - MySQL without the SQL - Oh my!
Datacon LA - MySQL without the SQL - Oh my!
 
MySQL Replication Update - DEbconf 2020 presentation
MySQL Replication Update - DEbconf 2020 presentationMySQL Replication Update - DEbconf 2020 presentation
MySQL Replication Update - DEbconf 2020 presentation
 
MySQL 8.0 Operational Changes
MySQL 8.0 Operational ChangesMySQL 8.0 Operational Changes
MySQL 8.0 Operational Changes
 
cPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven FeaturescPanel now supports MySQL 8.0 - My Top Seven Features
cPanel now supports MySQL 8.0 - My Top Seven Features
 
A Step by Step Introduction to the MySQL Document Store
A Step by Step Introduction to the MySQL Document StoreA Step by Step Introduction to the MySQL Document Store
A Step by Step Introduction to the MySQL Document Store
 
Discover The Power of NoSQL + MySQL with MySQL
Discover The Power of NoSQL + MySQL with MySQLDiscover The Power of NoSQL + MySQL with MySQL
Discover The Power of NoSQL + MySQL with MySQL
 

Kürzlich hochgeladen

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Kürzlich hochgeladen (20)

How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

MySQL 5.6: What's New and Enhanced in the Best Release Ever

  • 1. What’s New in MySQL 5.6 Dave Stokes MySQL Community Manager David.Stokes@oracle.com @Stoker 1 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 2. Safe Harbor Statement The following 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 decision. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. 2 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 3. MySQL 5.6 is GA! The Best MySQL Release Ever All New Features and enhancements Available to all in the MySQL Community Edition Designed to Meet Your Most Demanding Web, Cloud and Embedded Application Requirements 4 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 4. World’s Most Popular Open Source Database • Over 15 million estimated installations • Used by 9 of top 10 web sites in the world • Embedded by 8 of the top 10 ISVs • #1 database in the Cloud • Integrated w/Hadoop in 80% of Big Data platforms • Facebook: 182K fans, +35% YoY Growth • Twitter: 29K followers, +67% YoY Growth • Numerous Awards: Linux Journal, CRN, PHP Architect... 5 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 5. Industry Leaders Rely on MySQL Web & Enterprise OEM & ISVs Cloud 7 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 6. MySQL Cluster 7.2 MySQL Enterprise Backup 3.7 DRIVING MySQL Oracle VM Template for MySQL MySQL Cluster Manager 1.4 Enterprise Edition MySQL Utilities 1.0.6 INNOVATION MySQL Enterprise Oracle MySQL Migration Wizard MySQL Enterprise Monitor 2.2 Certifications MySQL Enterprise Backup 3.8 MySQL Cluster 7.1 MySQL Windows Installer MySQL Enterprise Audit MySQL Cluster Manager 1.0 MySQL Enterprise Security MySQL Database 5.6 MySQL Workbench 5.2 MySQL Enterprise Scalability MySQL Database 5.5 All GA! MySQL Enterprise Backup 3.5 All GA! MySQL Cluster 7.3 DMR MySQL Enterprise Monitor 2.3 MySQL Database 5.6 DMR* Available Now! MySQL Cluster Manager 1.1 MySQL Cluster 7.2 DMR All GA! MySQL Labs! A BETTER (“early and often”) MySQL 2010 2011 2012-13 *Development Milestone Release 9 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 7. Oracle’s Investment in MySQL Community Available to download and use under the GPL MySQL Database (Community Edition) MySQL Cluster MySQL Workbench MySQL Migration Wizard MySQL Utilities (in Python) MySQL Connectors MySQL Proxy Forums mysql.com/downloads/ 10 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 8. MySQL 5.6: Best Release Ever! 11 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 9. MySQL 5.6: Scalability Users can fully utilize latest generations of hardware and OS Scales as data volumes and users grow 12 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 10. MySQL 5.6 SysBench Benchmarks MySQL 5.6 MySQL 5.5 14 Up to 151% Performance Gain Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 11. MySQL 5.6 SysBench Benchmarks MySQL 5.6 MySQL 5.5 15 Up to 234% Performance Gain Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 12. MySQL 5.6: InnoDB 16 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 13. MySQL 5.6: InnoDB Better Performance, Scalability Several internal improvements (e.g. Split kernel mutex, efficient Buffer Pool Flushing, more...) Optimized for Read Only workloads Persistent Optimizer Statistics - Increased plan stability, accurate statistics - Better user control, automatic/manual SSD Optimizations - 4, 8k page sizes - .ibd files outside of MySQL data dir - separate tablespaces for undo log 17 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 14. MySQL 5.6: InnoDB Optimized for Read Only Workloads Ideal for highly concurrent, read intensive web apps Enables developer control of read only transactional overhead SET autocommit = 1; SELECT c FROM sbtest WHERE id=N; On by default SET autocommit = 0; START TRANSACTION READ ONLY; Developer controlled SELECT c FROM sbtest WHERE id=N; COMMIT; Less complexity, more apps can be standardized on InnoDB 18 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 15. MySQL 5.6: InnoDB Online DDL Operations CREATE INDEX DROP INDEX Change AUTO_INCREMENT value for a column ADD/DROP FOREIGN KEY Rename COLUMN Change ROW FORMAT, KEY_BLOCK_SIZE for a table Change COLUMN NULL, NOT_NULL Add, drop, reorder COLUMN Adds flexible schemas, online changes, no downtime No need to consider NoSQL options 19 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 16. MySQL 5.6: InnoDB Dump and Restore/Warm Buffer Pool Shortens warm up times after restart (from hours to minutes) At shutdown/startup or manually at any time Small footprint on disk - stores tablespace and page IDs only Dump current state of Buffer Pool at shutdown: mysql> SET innodb_buffer_pool_dump_at_shutdown=ON; Load Buffer Pool from dump at startup: mysql> SET innodb_buffer_pool_load_at_startup=ON; Better Elasticity - Quickly spin up new instances to meet demand Great for Cloud, Hosted, SaaS, On-premise deployments 20 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 17. MySQL 5.6: InnoDB Full Text Search create table quotes ( id int unsigned FULLTEXT indexes on InnoDB tables auto_increment primary Keys on text-based content key Speeds up searches for words, phrases ,author varchar(64) , quote varchar(4000) Fully transactional, fast look up , source varchar(64) Natural language/Boolean modes, proximity , fulltext(quote) search, relevance ranking ) engine=innodb; select author as “Apple" from quotes where match(quote) against (‘apple' in natural language mode); Less complexity, more apps can be standardized on InnoDB 21 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 18. MySQL 5.6: InnoDB Transportable Tablespaces Enables export/import of tables between running MySQL instances Export: CREATE TABLE t(c1 INT) engine=InnoDB; FLUSH TABLE t FOR EXPORT; -- quiesce the table and create the meta data file $innodb_data_home_dir/test/t.cfg UNLOCK TABLES; Import: CREATE TABLE t(c1 INT) engine=InnoDB; -- if it doesn't already exist ALTER TABLE t DISCARD TABLESPACE; -- The user must stop all updates on the tables, prior to the IMPORT ALTER TABLE t IMPORT TABLESPACE; Better Elasticity - Quickly spin up new instances to meet demand Great for Cloud, Hosted, SaaS, On-premise deployments 22 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 19. MySQL 5.6: InnoDB NoSQL Key Value Access to InnoDB Same app can leverage: Key-value access to InnoDB via familiar Memcached API SQL for rich queries, JOINs, FKs, etc. Fully transactional Up to 9x performance boost for updates Great for fast data ingestion in Big Data pipeline 23 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 20. Performance Customized Java-based App Test Harness Oracle Linux 6 Intel(R) Xeon(R) 2.0 x86_64 MySQL leveraging: - 8 available CPU threads - 2 GHz, 16GB RAM Up to 9x Higher “SET / INSERT” Throughput blogs.oracle.com/mysqlinnodb/entry/new_enhancements_for_innodb_memcached 24 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 21. MySQL 5.6: Optimizer 25 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 22. MySQL 5.6: Optimizer Subquery Optimizations SELECT title FROM film WHERE film_id IN (SELECT film_id FROM film_actor GROUP BY film_id HAVING count(*) > 12); For Developers - No more re-writing legacy application or packaged subqueries into joins Performance - DBT 3 Query #13 benchmark: - Execution time drops from DAYS to seconds 27 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 23. MySQL 5.6: Optimizer Postpone Materialization of views/subqueries in FROM EXPLAIN SELECT * FROM (SELECT * FROM a_big_table); SELECT … FROM derived_table AS dt join table AS t WHERE dt.fld = t.dlf Late materialization - Allows fast EXPLAINs for views/subqueries - Avoid materialization when possible, faster bail out - A key can be generated for derived tables 240x better execution time (drops from ~8 min to ~2 sec) 28 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 24. MySQL 5.6: Optimizer File Sort Optimizations with Small Limit CREATE TABLE products( productid int auto_increment PRIMARY KEY, productname varchar(200) ); Web use case – list top 100 products sorted by name SELECT * FROM products ORDER BY productname LIMIT 100; Use sort_buffer_size to sort all in memory, avoid creating intermediate sorted files Produce ordered result set using a single table scan Example above: 20 million rows, using default sort_buffer_size - 4x better execution time (drops from 40s to 10s) 29 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 25. MySQL 5.6: Optimizer Index Condition Pushdown (ICP) CREATE TABLE person ( With ICP Disabled personid INTEGER PRIMARY KEY, - 15 s (buffer pool 128 Mb) pe test firstname CHAR(20), - 1.4 s (buffer pool 1.5 Gb) lastname CHAR(20), r postalcode INTEGER, With ICP Enabled age INTEGER, address CHAR(50), - Execution time drops to 90 ms for KEY k1 (postalcode,age) both ) ENGINE=InnoDB; Controlled by optimizer_switch index_condition_pushdown flag SELECT lastname, firstname FROM person WHERE postalcode BETWEEN 5000 AND 5500 AND age BETWEEN 21 AND 22; 30 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 26. "records_estimation": [ MySQL 5.6: Optimizer { "database": "test", Better Diagnostics "table": "t6", "range_analysis": { "table_scan": { EXPLAIN "records": 2, "cost": 4.5034 - INSERT, UPDATE, and DELETE }, - Structured EXPLAIN output "potential_range_indices": [ { Optimizer Traces "index": "d", "usable": true, SET SESSION OPTIMIZER_TRACE=‘enabled=on’; "key_parts": [ "d" SELECT (SELECT 1 FROM t6 WHERE d = c) ] AS RESULT FROM t5; } ], SELECT * FROM information_schema.OPTIMIZER_TRACE; "best_covering_index_scan": { "index": "d", "cost": 1.4233, "chosen": true }, 32 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 27. Customer Requirements for Replication 33 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 28. MySQL 5.6: Best Replication Features Ever 34 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 29. MySQL 5.6: Replication Global Transaction Ids Simple to track & compare replication across the cluster - Unique identifier for each transaction written to the Binlog Automatically identify the most up-to-date slave for failover Deploy n-tier replication hierarchies Master GTID=123456 Eliminates the need for complex 3rd party solutions GTID=123456 GTID=123456 GTID=123456 35 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 30. MySQL 5.6: Replication HA Utilities (Python) Enabling self-healing replication topologies Automated failover & recovery Failed - mysqlfailover Utility Master Switchover & administration - mysqlrpladmin Utility Promoted Monitoring HA Utilities Master Delivers HA within the core MySQL distribution - Eliminates the need for 3rd party solutions - Allows extensibility to support variety of Slaves HA mechanisms 36 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 31. MySQL 5.6: Replication Multi-Threaded Slaves Increases slave throughput, reducing lag Applies events to different databases in parallel using concurrent SQL threads 5x performance gain SysBench, running across 10 x schemas Oracle Linux 6.1, Oracle Sun Fire x4150 m2 Server Great for systems which isolate application data using databases - Cloud, SaaS, Hosting, other multi-tenant deployments 37 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 32. MySQL 5.6: Replication Binary Log Group Commit Binary Log T1 T2 Session Increases replication throughput by T3 T4 increasing performance of the master Group Commits multiple transactions as a commit group to Binlog on disk Master Finer grained locking; reducing lock Database wait times Better transactional throughput, less slave lag when coupled with MTS MySQL Consultative Support provides guidance on configuration 38 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 33. Binary Log Group Commit Performance Binlog=1 MySQL 5.6 MySQL 5.5 Oracle Linux 6 Intel(R) Xeon(R) E7540 x86_64 MySQL leveraging: - 48 of 96 available CPU threads - 2 GHz, 512GB RAM 39 180% Performance Gain Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 34. MySQL 5.6: Replication Optimized Row Base Replication Primary Key Changed Columns New option: binlog-row-image=minimal Increases throughput for master and slave - Reduces Binlog size, memory & network bandwidth Only replicates elements of the Row image that have changed 40 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 35. MySQL 5.6: Crash safe Slaves Atomic Data Automatic recovery of a slave after a failure CRASH! - Binlog and table data are transactionally Position Info Time Before: consistent –Transaction Data: in tables Resumes replication without Dev/Op –Replication Info: in files intervention - Automatically rolling back replication to Atomic Data last committed event Position Info Time Eliminates risk of data loss or corruption MySQL 5.6 –Transaction Data: in tables –Replication Info: in tables 41 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 36. MySQL 5.6: Replication Event Checksums Ensures replicated data is correct, Master Slave consistent and accessible Detects corrupt replication events before they’re applied – Returns an error Protects entire replication path # # – Memory – Disk Eliminates risk of data loss or – Network corruption – Bugs 42 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 37. MySQL 5.6: Performance Schema New Instrumentation New Features Statements/Stages Show contents of Host cache Table and Index I/O New Summary tables Table locks Easier configuration Users/Hosts/Accounts - Start up defaults in my.cnf Network I/O - Auto tune [mysqld] Reduced overhead performance_schema=on On by default Provides user/session level stats on resource usage for Cloud-based consumption/reporting/charge back 43 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 38. MySQL 5.6 Performance Schema Statements/Stages - What are my most resource intensive queries? Where do they spend time? Table/Index I/O, Table Locks - Which application tables/indexes cause the most load or contention? Users/Hosts/Accounts - Which application users, hosts, accounts are consuming the most resources? Network I/O - What is the network load like? How long do sessions idle? Summaries - Aggregated statistics grouped by thread, user, host, account or object 44 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 39. MySQL 5.6: Security Major overhaul of password handling Provide alternatives to showing passwords in plain text Assess/Enforce password strength policies Enforce new password at next login Stronger password hashing Aligns MySQL user security/password policies with Oracle guidelines and most common industry SOPs 45 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 40. MySQL 5.6: Data Types TIME/TIMESTAMP/DATETIME - fractional second precision CREATE TABLE t1 (t TIME(3), dt DATETIME(6)); TIMESTAMP/DATETIME – default /auto update = CURRENT_TIMESTAMP CREATE TABLE t1 ( ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, dt DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ); TIMESTAMP – now nullable by default Improves ease of use for developers 46 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 41. MySQL 5.6: Better Condition Handling GET DIAGNOSTICS - Provides standard interface to MySQL Diagnostics Area mysql> DROP TABLE test.no_such_table; ERROR 1051 (42S02): Unknown table 'test.no_such_table' mysql> GET DIAGNOSTICS CONDITION 1 -> @p1 = RETURNED_SQLSTATE, @p2 = MESSAGE_TEXT; mysql> SELECT @p1, @p2; +-------+------------------------------------+ | @p1 | @p2 | +-------+------------------------------------+ | 42S02 | Unknown table 'test.no_such_table' | +-------+------------------------------------+ Improves ease of use for developers 48 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 42. MySQL 5.6: Improved Partitioning Up to 8k partitions/sub-partitions per table Explicit partition selection in queries, DML (SELECT, INSERT, UPDATE, DELETE, REPLACE, LOAD DATA, LOAD XML) SELECT * FROM t PARTITION (p0, p1) WHERE c < 5 Import/export partitions to/from partitioned tables to/from non-partitioned tables mysql> ALTER TABLE t EXCHANGE PARTITION p0 WITH TABLE t2; Query OK, 0 rows affected (0.28 sec) Better scalability for all applications Improves ease of use for developers 49 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 43. MySQL 5.6: New Default Settings Better out-of-the-box performance on modern architectures New fixed defaults and auto-tuning based on related parameters, host configuration Can be modified after installation (my.cnf or my.ini) All new defaults and auto-tuned settings detailed in 5.6 docs Provides better default performance/scale for most MySQL use cases 50 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 44. MySQL 5.6: In Summary 51 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 45. MySQL Database Development Priorities Optimized for Web, Cloud-based, Embedded use cases Simplified, Pluggable architecture - Maintainability, more extensible - More NoSQL options (HTTP, JSON, JavaScript, etc.) Refactoring - Data Dictionary in InnoDB - Optimizer/Parser/Protocol InnoDB - Optimized for SSD - GIS Easy HA, Replication and Sharding 52 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 46. Learn More mysql.com - MySQL Products, Editions, Training, Consulting - TCO calculator - Customer use cases and success stories dev.mysql.com - Downloads, Documentation - Forums - PlanetMySQL eDelivery.oracle.com - Download and evaluate all MySQL products 53 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 47. New MySQL 5.6 Training Learn about the world’s most popular open-source database Learn MySQL From Oracle • Expert-led training to help you install, configure, and administer MySQL 5.6. • Extensive hands-on practices guide you through each concept • Explore real-world problems and discover best practices as you work with the tools and techniques used by professional MySQL database administrators • Content developed in collaboration with product engineering. • Available in traditional or virtual classroom as well as self-study formats. • Custom training solutions to match your organization’s specific business needs • Backed by Oracle University’s 100% Satisfaction Program oracle.com/education/mysql 54 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 48. MySQL Connect September 21st – 23rd San Francisco Union Square Hotel Learn from the best – MySQL Engineers – Customers Tutorials on Advanced Subjects 55 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.
  • 49. Developer and DBA Guide to What’s New in MySQL 5.6 David.Stokes@Oracle.com @stoker slideshare.net/davestokes Questions? 57 Copyright © 2013, Oracle and/or its affiliates. All rights reserved.