SlideShare una empresa de Scribd logo
1 de 53
Descargar para leer sin conexión
<Insert Picture Here>




MySQL Technical Update:
SCaLE 2012

Dave Stokes MySQL Community Manager
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 decisions.

The development, release, and timing of any features or
functionality described for Oracle’s products remains at
the sole discretion of Oracle.




                             2
Agenda
• Oracle’s Strategy and Investment in MySQL

• What’s New in MySQL

• PHP centric stuff

• Other goodies

• Q&A




                          3
UNMATCHED INVESTMENT                                InnoDB

                                    REPLICATION
  PERFORMANCE IMPROVEMENTS                           EMBEDDED


               WINDOWS      HUNDREDS OF EXPERTS
CLOUD



                                                  STRATEGIC



WORLD-CLASS SUPPORT                                  WEB
                         MySQL CLUSTER

  NoSQL       LINUX          MySQL ENTERPRISE EDITION


LARGEST MySQL ENGINEERING & SUPPORT ORGANIZATION
                              4
Oracle’s Investment in MySQL
Rapid Innovation
Make MySQL a Better MySQL
• #1 Open Source Database for Web Applications
• “M” in most complete LAMP stack
• Embedded

Develop, Promote and Support MySQL
• Improved engineering, consulting and support
• Leverage 24x7, World-Class Oracle Support

MySQL Community Edition
• Source and binary releases
• GPL license


                          5
More Product Releases Than Ever Before
       Oracle Drives MySQL Innovation
                                                                     • MySQL Enterprise Backup 3.6
                                    • MySQL Database 5.5         • Oracle VM Template for MySQL
                                • MySQL Enterprise Backup 3.5                     GA
                                                                         • MySQL Database 5.6
                                • MySQL Enterprise Monitor 2.3
                                                                           • MySQL Cluster 7.2
                                  • MySQL Cluster Manager 1.1
                                           All GA!                             DMR*
               • MySQL Workbench 5.2                                     and MySQL Labs!
                       GA!                                              (“early and often”)
• MySQL Enterprise Monitor 2.2
• MySQL Cluster 7.1                                              A Better MySQL
• MySQL Cluster Manager 1.0
         All GA!

                                                           *Development Milestone Release
   Q2 CY2010        Q3 CY2010            Q4 CY2010       Q1 CY2011             Q2-3 CY2011



                                               6
MySQL: Open Source (GPL)
Available to download and use under the GPL:
• MySQL Database (Community Server)
• MySQL Cluster
• MySQL Workbench Community Edition
• MySQL Utilities (in Python)
• MySQL Connectors
• MySQL Proxy
• Documentation (free to use, not covered under GPL)
• Forums


            Set your ambitions high!

                            7
Industry Leading Customers




         Web                         OEM / ISV’s




 SaaS, Cloud    Telecommunications         Enterprise 2.0


               Rely on MySQL

                         8
Tough Questions
…performance issues?             …servers down?

…expensive, slow queries?        …security policies, change?


Where/When/How to Tune?          …Developers productive?

…Replication synch issues?       ..version of MySQL to run?


…will systems scale?             …can I recover?

         …managing Oracle and MySQL databases?
                             9
MySQL Enterprise Edition
Most secure, scalable MySQL Database, Online Backup,
Development/Monitoring Tools, backed by Oracle Premier
Lifetime Support


                       Oracle Product     Oracle Premier
                        Certifications       Support

           MySQL Enterprise                       MySQL Enterprise
               Backup                            Monitor/Query Analyzer


    MySQL Enterprise                                       MySQL Enterprise
        Security                                              Scalability


 MySQL Enterprise
  High Availability                                          MySQL Workbench




                                         10
MySQL Database
       Performance, Reliability, Ease of Use
         Support for common
         development
         languages/platforms

Efficient multi-
threaded session
handling


Full DML, DDL
parsing, cost
based optimizer,
caching of queries
and result sets

Flexible Storage
Engine options for
application
specific storage
needs

Flexible logging and physical storage options



                                                11
MySQL Database
     InnoDB - Transactional by Default
•   Default Storage Engine for MySQL 5.5 and above
•   ACID-compliant transactions, MVCC
•   Row-level locking
•   Two phase commit
•   Efficient indexing
•   Fast DDL operations
•   Table compression
•   Automatic crash recovery
•   Referential integrity
•   Online backup
•   More

                              12
MySQL Database
SysBench Benchmarks - Linux




                                          MySQL 5.5.6
                                          (Default InnoDB)



                                          MySQL 5.1.50
                                          (InnoDB Plug-in)



                                          MySQL 5.1.50
                                          (InnoDB built-in)




  370% performance gain                   Intel Xeon X7460 x86_64
                                          4 CPU x 6 Cores/CPU
                                          2.66 GHz, 32GB RAM
    for MySQL 5.5 over 5.1.50; at scale   Fedora 10



                           13
MySQL Database
SysBench Benchmarks - Linux




                                            MySQL 5.5.6
                                            (Default InnoDB)



                                            MySQL 5.1.50
                                            (InnoDB Plug-in)



                                            MySQL 5.1.50
                                            (InnoDB built-in)




   200% performance gain                      Intel Xeon X7460 x86_64
                                              4 CPU x 6 Cores/CPU
                                              2.66 GHz, 32GB RAM
      for MySQL 5.5 over 5.1.50; at scale     Fedora 10



                           14
MySQL Database
SysBench Benchmarks - Windows




                                           MySQL 5.5.6
                                           (Default InnoDB)



                                           MySQL 5.1.50
                                           (InnoDB Plug-in)



                                           MySQL 5.1.50
                                           (InnoDB built-in)




 540% performance gain                    Intel x86_64
                                          4 CPU x 2 Cores/CPU
                                          3.166 GHz, 8GB RAM
    for MySQL 5.5 over 5.1.50; at scale   Windows Server 2008



                           15
MySQL Database
SysBench Benchmarks - Windows




                                           MySQL 5.5.6
                                           (Default InnoDB)



                                           MySQL 5.1.50
                                           (InnoDB Plug-in)



                                           MySQL 5.1.50
                                           (InnoDB built-in)




 1560% performance gain                   Intel x86_64
                                          4 CPU x 2 Cores/CPU
                                          3.166 GHz, 8GB RAM
    for MySQL 5.5 over 5.1.50; at scale   Windows Server 2008



                           16
MySQL Database
          High Availability with MySQL Replication




                                    17
Copyright 2011 Oracle Corporation                    17
MySQL Database
Replication Internals
    MySQL Master                             MySQL Slave
          mysqld                                    mysqld


updates            updates                          I/O Thread
selects

                             Replication                          relay
                                                                 binlog




                                                SQL Thread
 data

                   index &
                   binlogs



                                           binlog           data


                                 18
MySQL Database
Replication Enables Scalability
                       Application    Load Balancer




      Writes & Reads                  Reads           Reads




                         MySQL Replication

       • Write to one master
       • Read from many slaves, easily add more as needed
       • Perfect for read/write intensive apps

                                 19
MySQL 5.6: A Better MySQL
                                                            New!

• MySQL 5.6 builds on MySQL 5.5 by improving:
  •   Optimizer for better Performance, Scalability
  •   Performance Schema for better instrumentation
  •   InnoDB for better transactional throughput
  •   Replication for higher availability, data integrity
  •   “NotOnlySQL” options for better flexibility




           Try it now:
           dev.mysql.com/downloads/mysql

                               20
MySQL Enterprise Security                                     New!
MySQL External Authentication

• PAM (Pluggable Authentication Modules)
      •   Access external authentication methods
      •   Standard interface (Unix, LDAP, others)
      •   proxied and non-proxied users
• Windows
      •   Access native Windows services
      •   Authenticate users already logged into
          Windows (Windows Active Directory)
• Pluggable Authentication API

Integrates MySQL with existing security infrastructures and SOPs.



                                21
Windows Authentication
        Example
     Connect as

      1. MyDomain/joe logs into          App
         environment with
         Windows login, password
                                                Connector                    Connect as
Connect as
                                                                             2. MyDomainjoe is
3. MyDomain/joe logs into                                                       authenticated on
   application, application                                                     Windows OS
   connects to MySQL with
   user win_joe.
   Connected                       Connect as

                                   4. Tokens are checked, win_joe
                                      user is authenticated using
                                      Windows Authenticate
                                                login, password with
                                      MySQL specific privs
                   Windows                                             Win OS users,
                    Auth                                                groups, etc

                   CREATE USER win_joe
                    IDENTIFIED WITH authentication_windows
                   AS ‘joe';



                                                  22
PAM Authentication
    Example

            1. Joe logs in using         App
               application user
               name/password.
                                               Connector
 2. Connector sends the user
    name/password to the                                           4. PAM library verifies credentials
    MySQL server.                                                     (using e.g. LDAP or Kerberos
Connected                                                             etc) and returns yes/no answer
                                                                      for delivery to client.
                                   3. User name/password sent
                                      to the PAM library, yes/no
                                      answer from PAM library
                   PAM                returned to client.                    PAM library
                                                                             and various
               Authentication                                                 backends

                     CREATE USER joe
                      IDENTIFIED WITH 'authentication_pam'
                     AS ‘mysql';



                                                   23
MySQL Enterprise Scalability                          New!
MySQL Thread Pool

• MySQL default thread-handling – excellent
  performance, can limit scalability as connections grow
• MySQL Thread Pool improves sustained
  performance/scale as user connections grow
• Thread Pool API




                           24
Default Connection Pool

                              Default
                          Connection Pool

           Connection 1                     Connection 1 Execution Thread
                           Connections
                            /statements
                                            Connection 2 Execution Thread
           Connection 2
                             assigned
                            to Threads
Users/Clients                 for life


 • Connections assigned to 1 thread for the life of the
   connection
 • Same thread used for all connection statement executions
   (single threaded)

                                    25
With Thread Pool Enabled


                      Thread Pool (and thread
                                              Connection 1 Execution Threads
                             groups)
       Connection 1      Connection 1
                         Threads 1 - 4096
                                                 Connection 2 Execution Threads
       Connection 2      Connection 2
                         Threads 4097 - 8193

Users/Clients            Connection N
                         Threads 8194 - N

• Pool contains configurable number of thread groups (default
  = 16), each manages up to 4096 re-usable threads
• Each connection assigned to thread group via round robin
  Ensures better, sustained performance as user loads continue to
  grow.

                                            26
MySQL Enterprise Edition


                                          MySQL Enterprise Edition
                                                               With Thread Pool




                                          MySQL Community Server
                                                             Without Thread Pool


                                           MySQL 5.5.16
                                           Oracle Linux 6.1, Unbreakable Kernel 2.6.32
                                           2 sockets, 24 cores, 2 X 12-core
                                           Intel(R) Xeon(R) X5670 2.93GHz CPUs

20x Better Scalability with Thread Pool
                                           72GB DDR3 RAM
                                           2 X LSI SCSI Disk (MR9261-8i) (597GB)




                             27
MySQL Enterprise Edition


                                         MySQL Enterprise Edition
                                                              With Thread Pool




                                         MySQL Community Server
                                                            Without Thread Pool




                                          MySQL 5.5.16
                                          Oracle Linux 6.1, Unbreakable Kernel 2.6.32
                                          2 sockets, 24 cores, 2 X 12-core
                                          Intel(R) Xeon(R) X5670 2.93GHz CPUs

3x Better Scalability with Thread Pool
                                          72GB DDR3 RAM
                                          2 X LSI SCSI Disk (MR9261-8i) (597GB)




                             28
MySQL Enterprise High Availability                                                                New!
         OVM Template for MySQL
• Oracle Linux with the Unbreakable
                                                                            Oracle VM                      Oracle VM
  Enterprise Kernel                                                                     Automatic Fault
                                                                                         Detection &
                                                                                           Recovery
• Oracle VM
• Oracle VM Manager
                                                                                          Secure Live
                                                                                         Migration (SSL)
• Oracle Cluster File System 2 (OCFS2)
• MySQL Database (Enterprise Edition)                                             Oracle VM Server Pool
                                                          Oracle VM
                                                           Manager


• Pre-Installed & Pre-Configured                                                   Oracle VM Servers

• Full Integration & QA Testing
                                                                                            ocfs2
• Single Point of Support**
                                                                                        SAN / iSCSI
** Technical support for Oracle Linux and Oracle Virtual Machine requires
Unbreakable Linux Network subscription..




                                                           29
MySQL Enterprise High Availability
        Protecting Against Planned/Unplanned Downtime


                   VM        VM      VM       VM                          VM
                                                                                  X
                                                                                  VM       VM       VM




                                                              Browser
                        VM Server Pool                                          VM Server Pool


                          SSL Migration                                        HA Auto Restart


                                                   Oracle VM Manager       m
                                              m

                          Oracle VM Servers                                     Oracle VM Servers



Planned Events                                                                                   Failures
• Maintenance or              SAN, iSCSI                                           SAN, iSCSI    • Server, VM or
  upgrades                                                                                         database failure
• Secure Live Migration                                                                          • HA Auto-restart in
• Zero interruption                                                                                pool
                                                                                                 • Automatic failure
                                                   Pool Masters assure
                                                   Secure Migration or
                                                                                                   detection & recovery
                                                   HA restarts complete
                                                   in the event of a
                                                   Manager outage



                                                              30
MySQL Enterprise High Availability
          Windows Server Failover Clustering                                                                  New!
     • Windows Server 2008 R2, MySQL 5.5**
     • Quorum (3rd vote), data (InnoDB + schema)
                                                                         Slave      App       App       App
       & binaries (optional) stored in shared
       storage (testing iSCSI & FCAL)
     • Failover:
          • Planned maintenance
          • MySQL service failure                                                         Virtual IP

          • Connectivity, Host failures
     • Loss of service = couple of seconds +
       InnoDB recovery time
          • App sees temporary loss of connection and
            reconnects on same IP address
          • Replication slave recovers automatically
     • Cluster managed through MS Failover
                                                                                 Vote     Data         Bin
       Cluster Management snap-in GUI
     • No new software/scripts required
** Technical support for Windows Server Failover Clustering must be sourced from Microsoft.

                                                           31
MySQL Enterprise Backup
 •   Online Backup for InnoDB
 •   Full, Incremental, Partial Backups (scriptable interface)
 •   Compression
 •   Point in Time, Full, Partial Recovery options
 •   Metadata on status, progress, history
                                              mysqlbackup
 •   Unlimited Database Size
 •   Cross-Platform
     • Windows, Linux, Unix         MEB Backup
                                                           MySQL
                                                        Database Files
                                       Files
 • Certified with Oracle Secure Backup

Ensures quick, online backup and recovery of your MySQL apps.



                               32
MySQL Enterprise Monitor
• Global view of MySQL
  environment
• Automated, rules-based
  monitoring and alerts (SMTP,
  SNMP enabled)
• Query capture, monitoring,
  analysis and tuning, correlated
  with Monitor graphs
• Visual monitoring of “hot”
  applications and servers
• Real-time Replication Monitor
  with auto-discovery of master-
  slave topologies
• Integrated with MySQL Support      A Virtual MySQL Tuning Assistant!


                                    33
MySQL Expert Advisors
                                            Administration
               MySQL Cluster                                             Performance
                                        • Monitors and Advises on
       • Monitors and Advises on          Optimal Configuration      • Monitors and Advises
         status/ performance of                                        on Optimal
         MySQL Cluster Data                                            Performance Variable
         Nodes.                                                        Settings

         Custom                                                                 Replication
   • Built by DBA to
                                                                            • Monitors and Advises on
     Enforce Organization
     specific best practices.                                                 Master/Slave Latency.

         Upgrade                                                                 Security
    • Monitors and Advises on                                              • Monitors and Advises
      Bugs/Upgrades that                                                     on Unplanned Security
      affect current installation                                            Changes/Loopholes

                                    Schema                       Memory Usage
                                • Monitors and Advises     • Monitors and advises
                                  on Unplanned Schema        on optimal
                                  Change                     memory/cache settings

        140+ Rules, 40+ MySQL, OS specific Graphs
Save you time writing, deploying, versioning, maintaining custom
scripts. Find problems and tuning opportunities you cannot find yourself.

                                                      34
MySQL Query Analyzer
• Centralized monitoring of queries
  without Slow Query Log, SHOW
  PROCESSLIST;
• Enabled via MySQL Connectors
• Aggregated view of query
  execution counts, time, and rows
• Visual “grab and go” correlation
  with Monitor graphs
• Traces query executions back to
  source code


Saves you time parsing atomic
executions from logs. Finds
problems you cannot find yourself.


                                      35
Query Execution Drill Downs
                  Example query exec
                     with variable
                      substitution

                       Trace query exec
                      back to source code



                                 Full exec EXPLAIN




                 36
Automated Replication Monitor
• Auto-detects, groups/maintains
  Master/Slave topologies
• Consolidated, real time
  status/synch check
• Notifications on Synch Issues
• Proactive vs reactive




Saves you time monitoring and
collecting replication status/synch
data from MySQL command line.




                                      37
MySQL Enterprise Monitor
  Integrated with My Oracle Support




• Collect MySQL diagnostics and upload to MySQL Support
• Track MOS SRs from Enterprise Dashboard


                                38
MySQL Workbench SE
Database Design                          Scripting & Plug-in Support
• Visual Design, modeling                UI Designed to match VS 2010
• Forward/Reverse Engineer               Saves you time developing and
• Schema validation, Schema doc          managing your MySQL apps.
SQL Development
• SQL Editor - Color Syntax
  Highlighting
• Objects - Import/Export, Browse/Edit
• Connections - Wizard, SSH Tunnel
Database Administration
• Status, Configuration, Start/Stop
• Users, Security, Sessions
• Import/Export Dump Files



                                      39
MySQL Enterprise Edition                                                  New!

Enables you to manage your Oracle and MySQL databases with
Oracle tools/solutions you are already using.




                       Oracle Product     Oracle Premier
                                             Support
                        Certifications
            MySQL Enterprise                  MySQL Enterprise
                Backup                       Monitor/Query Analyzer


     MySQL Enterprise                                  MySQL Enterprise
         Security                                         Scalability


  MySQL Enterprise
   High Availability                                       MySQL Workbench




                                     40
MySQL Enterprise Oracle Certifications                 New!

•   WebLogic Server
•   Database Adapter for Oracle SOA Suite **
•   Oracle Business Process Management **
•   Oracle Virtual Directory
•   Oracle Data Integrator
•   Oracle Enterprise Performance Management **
•   Oracle Identity Analytics
•   Open SSO STS, Open SSO Fedlet
• All ship with MySQL 5.x JDBC driver
• ** MySQL as a Metadata Repository option (in progress)




                               41
MySQL Enterprise Oracle Certifications      New!

 • Oracle Linux
 • Oracle VM
 • Oracle VM Template for
   MySQL EE
 • Oracle GoldenGate
 • Oracle Secure Backup
 • My Oracle Online Support

Enables you to manage your Oracle and
MySQL databases with Oracle tools/solutions
you are already using.



                                  42
Oracle Premier Support for MySQL

• 24 X 7 Problem Resolution
  Services
• Unlimited Support Incidents
• Knowledge Base
• Maintenance Releases, Bug
  fixes, Patches, Updates
• MySQL Consultative Support
• Staffed by experienced,
  seasoned MySQL Engineers




                         43
Tough Questions, Real Solutions
…performance issues?                                   …servers down?
• MySQL Enterprise Scalability                         • Oracle Premier 7x24 Support
• MySQL Enterprise Monitor, Advisors, Query Analyzer   • MySQL Enterprise Monitor, Advisors
• MySQL Consultative Support                           • MySQL Enterprise High Availability
…expensive, slow queries?                              …security policies, change?
• MySQL Enterprise Monitor, Query Analyzer
                                                       • MySQL External Authentication
Where/When/How to Tune?                                • MySQL Enterprise Monitor, Security Advisor
• MySQL Enterprise Monitor, Advisors, Query Analyzer   …Developers productive?
• MySQL Consultative Support                         • MySQL Workbench SE
                                                     • MySQL Enterprise Monitor, Query Analyzer
…Replication synch issues?
• MySQL Enterprise Monitor, Replication Monitor        ..version of MySQL to run?
• Oracle Premier 7x24 Support                          • Oracle Premier 7x24 Support
…will systems scale?                                   …can I recover?
• MySQL Enterprise Scalability
                                                     • MySQL Enterprise Backup
• MySQL Enterprise Monitor, Advisors, Query Analyzer
• MySQL Consultative Support
               …managing Oracle and MySQL databases?
                              • Oracle Product Certifications


                                                  44
And Now for the esoteric stuff




                   45
Mysqlnd - MySQL native driver for PHP

• Non-blocking, asynchronous queries
• 150+ performance statistics
• Since 5.3 used for Windows, default as of 5.4


Free PECL drop-in solutions for all PHP MySQL extensions:
•mysqlnd_ms - replication and load balancing support *new*
•mysqlnd_qc - client-side query cache (TTL) mysqlnd_uh - swiss-army-
knife to hack mysqlnd with PHP

Better licensing, easier to build and distribute




                                      46
47
MySQL 5.6 – Milestone releases

                           These binaries were created by MySQL
Binlog API, Binlog Group      testing servers..
  Commit, Global           They are provided solely for testing
  Transactions Ids,           purposes, to try the latest bug fixes
                              and generally to keep up with the
  InnoDB Features,            development.
  InnoDB FTS,                Please, DO NOT USE THESE
  InnoDB/Memachced,           BINARIES IN PRODUCTION.
                             Instead, install them on a spare
  Performance Schema           server.
                             If you are looking for production ready
                               binaries, please visit MySQL
Cluster 7.2 with               Downloads.
                             MySQL Software is provided under
  Memcached                   the GPL License




                           48
Optimizer Tracing – Beyond EXPLAIN

SET optimizer_trace="enabled=on";
SELECT Name FROM City WHERE
   ID=999;
SELECT trace into dumpfile '/tmp/foo'
   FROM
   INFORMATION_SCHEMA.OPTIMIZ
   ER_TRACE;


Provides details of
  optimizer steps in a
  JSON format. You can
  then tune



                                        49
Additional Resources
mysql.com
•   MySQL Products and Editions
•   TCO calculator
•   White Papers
•   Customer use cases and success stories

dev.mysql.com
• Downloads
• Documentation
Forums.MySQl.Com
Planet.MySQL.com
eDelivery.com
• Download and evaluate all MySQL products



                                  50
MySQL Embedded Online Forum
         Tuesday, January 31, 2012 9:00AM PST - 12:00 PM PST                          http://bit.ly/w1bOwX

         Think You Know MySQL? Get the Facts.
         MySQL is even better than you think. According to the experts, it’s easier to use and it’s more capable
         than most ISVs / OEMs realize, and by taking a few tried-and-tested steps before shipping your MySQL-
         embedded products, you can lower your product’s costs and increase its performance.

         Join our expert-created and delivered MySQL Embedded Online Forum to learn:
         ●
               Why MySQL is a great embedded database for startups as well as the largest software, hardware, and appliance
            vendors in the world, and how its features ensure costs remain low throughout an application's life cycle.
         ●
               MySQL installation options that require minimal or zero end user effort and how to easily build them into your
            application
         ●
               How to secure MySQL embedded in applications, appliances, and devices
         ●
               Tips to simplify your integration with MySQL using the most popular MySQL Connectors and guidance on selecting
            the settings that will maximize your application’s performance
         ●
               Why MySQL delivers excellent performance and how to go beyond the default settings to optimize MySQL’s queries,
            reporting, and search capabilities

         Agenda:
         It Just Works! The Beauty of MySQL as an Embedded Database
         Building MySQL Embedded for Simple Installation and Security
         Craig Sylvester , Principal MySQL Sales Engineer, Oracle

         Getting the Most Out of MySQL Connectors for Better Performance and Streamlined Integration
         Matt Lord, Senior Principal MySQL Support Engineer, Oracle

         Better than Great: MySQL Embedded Performance and Reporting
         Alexander Rubin, MySQL Technical Consulting Manager, Oracle




Copyright Oracle Corporation 2012                                                                                     51
MySQL Tech Tour Event


Santa Clara, CA
Thursday, February 9, 2012
http://www.oracle.com/go/?
    &Src=7314534&Act=247&pcode=WWMK11042736MPP125


El Segundo, CA
Wednesday, February 8, 2012
http://www.oracle.com/go/?
    &Src=7314534&Act=249&pcode=WWMK11042736MPP127


Raleigh, NC
Thursday, February 2, 2012
http://www.oracle.com/go/?
    &Src=7314534&Act=248&pcode=WWMK11042736MPP126
<Insert Picture Here>




Thanks for attending!

David.Stokes@Oracle.com

Más contenido relacionado

La actualidad más candente

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
 
MySQL for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15
MySQL for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15MySQL for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15
MySQL for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15Dave Stokes
 
Technology Day 2011 MySQL & MariaDB
Technology Day 2011 MySQL & MariaDBTechnology Day 2011 MySQL & MariaDB
Technology Day 2011 MySQL & MariaDBDan-Claudiu Dragoș
 
Zend server presentation for osi days
Zend server presentation for osi daysZend server presentation for osi days
Zend server presentation for osi daysOpenSourceIndia
 
My sql 5.5_product_update
My sql 5.5_product_updateMy sql 5.5_product_update
My sql 5.5_product_updatehenriquesidney
 
MySQL InnoDB Cluster and NDB Cluster
MySQL InnoDB Cluster and NDB ClusterMySQL InnoDB Cluster and NDB Cluster
MySQL InnoDB Cluster and NDB ClusterMario Beck
 
MySQL Cluster 7.2 e 7.3 - por Andrew Morgan
MySQL Cluster 7.2 e 7.3 - por Andrew MorganMySQL Cluster 7.2 e 7.3 - por Andrew Morgan
MySQL Cluster 7.2 e 7.3 - por Andrew MorganMySQL Brasil
 
2012.10.20 OSC 2012 Hiroshima
2012.10.20 OSC 2012 Hiroshima2012.10.20 OSC 2012 Hiroshima
2012.10.20 OSC 2012 HiroshimaRyusuke Kajiyama
 
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo RamassoServer Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo RamassoJUG Genova
 
Databases in the hosted cloud
Databases in the hosted cloud Databases in the hosted cloud
Databases in the hosted cloud Colin Charles
 
MySQL Community and Commercial Edition
MySQL Community and Commercial EditionMySQL Community and Commercial Edition
MySQL Community and Commercial EditionMario Beck
 
MySQL Enterprise Edition Overview
MySQL Enterprise Edition OverviewMySQL Enterprise Edition Overview
MySQL Enterprise Edition OverviewMario Beck
 
The MySQL ecosystem - understanding it, not running away from it!
The MySQL ecosystem - understanding it, not running away from it! The MySQL ecosystem - understanding it, not running away from it!
The MySQL ecosystem - understanding it, not running away from it! Colin Charles
 
Differences between MariaDB 10.3 & MySQL 8.0
Differences between MariaDB 10.3 & MySQL 8.0Differences between MariaDB 10.3 & MySQL 8.0
Differences between MariaDB 10.3 & MySQL 8.0Colin Charles
 
MySQL features missing in MariaDB Server
MySQL features missing in MariaDB ServerMySQL features missing in MariaDB Server
MySQL features missing in MariaDB ServerColin Charles
 
MySQL Breakfast in London - 24 June 2010
MySQL Breakfast in London - 24 June 2010MySQL Breakfast in London - 24 June 2010
MySQL Breakfast in London - 24 June 2010Ivan Zoratti
 
What is MariaDB Server 10.3?
What is MariaDB Server 10.3?What is MariaDB Server 10.3?
What is MariaDB Server 10.3?Colin Charles
 
My sql crashcourse_intro_kdl
My sql crashcourse_intro_kdlMy sql crashcourse_intro_kdl
My sql crashcourse_intro_kdlsqlhjalp
 

La actualidad más candente (20)

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 for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15
MySQL for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15MySQL for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15
MySQL for Oracle DBA -- Rocky Mountain Oracle User Group Training Days '15
 
Technology Day 2011 MySQL & MariaDB
Technology Day 2011 MySQL & MariaDBTechnology Day 2011 MySQL & MariaDB
Technology Day 2011 MySQL & MariaDB
 
Zend server presentation for osi days
Zend server presentation for osi daysZend server presentation for osi days
Zend server presentation for osi days
 
My sql 5.5_product_update
My sql 5.5_product_updateMy sql 5.5_product_update
My sql 5.5_product_update
 
MySQL 开发
MySQL 开发MySQL 开发
MySQL 开发
 
MySQL InnoDB Cluster and NDB Cluster
MySQL InnoDB Cluster and NDB ClusterMySQL InnoDB Cluster and NDB Cluster
MySQL InnoDB Cluster and NDB Cluster
 
MySQL Cluster 7.2 e 7.3 - por Andrew Morgan
MySQL Cluster 7.2 e 7.3 - por Andrew MorganMySQL Cluster 7.2 e 7.3 - por Andrew Morgan
MySQL Cluster 7.2 e 7.3 - por Andrew Morgan
 
2012.10.20 OSC 2012 Hiroshima
2012.10.20 OSC 2012 Hiroshima2012.10.20 OSC 2012 Hiroshima
2012.10.20 OSC 2012 Hiroshima
 
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo RamassoServer Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
 
Databases in the hosted cloud
Databases in the hosted cloud Databases in the hosted cloud
Databases in the hosted cloud
 
MySQL Community and Commercial Edition
MySQL Community and Commercial EditionMySQL Community and Commercial Edition
MySQL Community and Commercial Edition
 
MySQL Enterprise Edition Overview
MySQL Enterprise Edition OverviewMySQL Enterprise Edition Overview
MySQL Enterprise Edition Overview
 
The MySQL ecosystem - understanding it, not running away from it!
The MySQL ecosystem - understanding it, not running away from it! The MySQL ecosystem - understanding it, not running away from it!
The MySQL ecosystem - understanding it, not running away from it!
 
Differences between MariaDB 10.3 & MySQL 8.0
Differences between MariaDB 10.3 & MySQL 8.0Differences between MariaDB 10.3 & MySQL 8.0
Differences between MariaDB 10.3 & MySQL 8.0
 
MySQL features missing in MariaDB Server
MySQL features missing in MariaDB ServerMySQL features missing in MariaDB Server
MySQL features missing in MariaDB Server
 
MySQL Breakfast in London - 24 June 2010
MySQL Breakfast in London - 24 June 2010MySQL Breakfast in London - 24 June 2010
MySQL Breakfast in London - 24 June 2010
 
What is MariaDB Server 10.3?
What is MariaDB Server 10.3?What is MariaDB Server 10.3?
What is MariaDB Server 10.3?
 
MySQL HA
MySQL HAMySQL HA
MySQL HA
 
My sql crashcourse_intro_kdl
My sql crashcourse_intro_kdlMy sql crashcourse_intro_kdl
My sql crashcourse_intro_kdl
 

Similar a MySQL Technical Update: SCaLE 2012

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
 
My sqlstrategyroadmap
My sqlstrategyroadmapMy sqlstrategyroadmap
My sqlstrategyroadmapslidethanks
 
Posscon my sql56
Posscon my sql56Posscon my sql56
Posscon my sql56Dave 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
 
My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2Ivan Tu
 
My sql roadmap 2008 2009
My sql roadmap 2008 2009My sql roadmap 2008 2009
My sql roadmap 2008 2009xKinAnx
 
Tutorial MySQL com Java
Tutorial MySQL com JavaTutorial MySQL com Java
Tutorial MySQL com JavaMySQL Brasil
 
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
 
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
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB ClusterWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB ClusterContinuent
 
MySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The DolphinMySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The DolphinOlivier DASINI
 
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdf
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdfMySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdf
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdfAlkin Tezuysal
 
Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7
Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7
Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7Mark Swarbrick
 
MySQL Enterprise Edition
MySQL Enterprise EditionMySQL Enterprise Edition
MySQL Enterprise EditionMySQL Brasil
 
MySQL Ecosystem in 2020
MySQL Ecosystem in 2020MySQL Ecosystem in 2020
MySQL Ecosystem in 2020Alkin Tezuysal
 
My sql susecon_crashcourse_2012
My sql susecon_crashcourse_2012My sql susecon_crashcourse_2012
My sql susecon_crashcourse_2012sqlhjalp
 
MySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime TimeMySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime TimeArnab Ray
 
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
 

Similar a MySQL Technical Update: SCaLE 2012 (20)

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?
 
My sqlstrategyroadmap
My sqlstrategyroadmapMy sqlstrategyroadmap
My sqlstrategyroadmap
 
Posscon my sql56
Posscon my sql56Posscon my sql56
Posscon my sql56
 
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
 
My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2My sql 56_roadmap_april2012_zht2
My sql 56_roadmap_april2012_zht2
 
My sql roadmap 2008 2009
My sql roadmap 2008 2009My sql roadmap 2008 2009
My sql roadmap 2008 2009
 
Tutorial MySQL com Java
Tutorial MySQL com JavaTutorial MySQL com Java
Tutorial MySQL com Java
 
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)
 
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
 
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB ClusterWebinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
Webinar Slides: MySQL HA/DR/Geo-Scale - High Noon #5: Oracle’s InnoDB Cluster
 
MySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The DolphinMySQL Day Paris 2016 - State Of The Dolphin
MySQL Day Paris 2016 - State Of The Dolphin
 
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdf
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdfMySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdf
MySQL Ecosystem in 2023 - FOSSASIA'23 - Alkin.pptx.pdf
 
MySQL 5.7 what's new
MySQL 5.7 what's newMySQL 5.7 what's new
MySQL 5.7 what's new
 
Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7
Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7
Netherlands Tech Tour - 07 MySQL Whats upcoming in 5.7
 
MySQL Enterprise Edition
MySQL Enterprise EditionMySQL Enterprise Edition
MySQL Enterprise Edition
 
MySQL Ecosystem in 2020
MySQL Ecosystem in 2020MySQL Ecosystem in 2020
MySQL Ecosystem in 2020
 
My sql susecon_crashcourse_2012
My sql susecon_crashcourse_2012My sql susecon_crashcourse_2012
My sql susecon_crashcourse_2012
 
MySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime TimeMySQL 8: Ready for Prime Time
MySQL 8: Ready for Prime Time
 
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
 

Más de 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
 

Más de 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
 

Último

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
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
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
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
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
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
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
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
 
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
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 

Último (20)

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
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
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
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
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
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
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
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
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 

MySQL Technical Update: SCaLE 2012

  • 1. <Insert Picture Here> MySQL Technical Update: SCaLE 2012 Dave Stokes MySQL Community Manager
  • 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 decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. 2
  • 3. Agenda • Oracle’s Strategy and Investment in MySQL • What’s New in MySQL • PHP centric stuff • Other goodies • Q&A 3
  • 4. UNMATCHED INVESTMENT InnoDB REPLICATION PERFORMANCE IMPROVEMENTS EMBEDDED WINDOWS HUNDREDS OF EXPERTS CLOUD STRATEGIC WORLD-CLASS SUPPORT WEB MySQL CLUSTER NoSQL LINUX MySQL ENTERPRISE EDITION LARGEST MySQL ENGINEERING & SUPPORT ORGANIZATION 4
  • 5. Oracle’s Investment in MySQL Rapid Innovation Make MySQL a Better MySQL • #1 Open Source Database for Web Applications • “M” in most complete LAMP stack • Embedded Develop, Promote and Support MySQL • Improved engineering, consulting and support • Leverage 24x7, World-Class Oracle Support MySQL Community Edition • Source and binary releases • GPL license 5
  • 6. More Product Releases Than Ever Before Oracle Drives MySQL Innovation • MySQL Enterprise Backup 3.6 • MySQL Database 5.5 • Oracle VM Template for MySQL • MySQL Enterprise Backup 3.5 GA • MySQL Database 5.6 • MySQL Enterprise Monitor 2.3 • MySQL Cluster 7.2 • MySQL Cluster Manager 1.1 All GA! DMR* • MySQL Workbench 5.2 and MySQL Labs! GA! (“early and often”) • MySQL Enterprise Monitor 2.2 • MySQL Cluster 7.1 A Better MySQL • MySQL Cluster Manager 1.0 All GA! *Development Milestone Release Q2 CY2010 Q3 CY2010 Q4 CY2010 Q1 CY2011 Q2-3 CY2011 6
  • 7. MySQL: Open Source (GPL) Available to download and use under the GPL: • MySQL Database (Community Server) • MySQL Cluster • MySQL Workbench Community Edition • MySQL Utilities (in Python) • MySQL Connectors • MySQL Proxy • Documentation (free to use, not covered under GPL) • Forums Set your ambitions high! 7
  • 8. Industry Leading Customers Web OEM / ISV’s SaaS, Cloud Telecommunications Enterprise 2.0 Rely on MySQL 8
  • 9. Tough Questions …performance issues? …servers down? …expensive, slow queries? …security policies, change? Where/When/How to Tune? …Developers productive? …Replication synch issues? ..version of MySQL to run? …will systems scale? …can I recover? …managing Oracle and MySQL databases? 9
  • 10. MySQL Enterprise Edition Most secure, scalable MySQL Database, Online Backup, Development/Monitoring Tools, backed by Oracle Premier Lifetime Support Oracle Product Oracle Premier Certifications Support MySQL Enterprise MySQL Enterprise Backup Monitor/Query Analyzer MySQL Enterprise MySQL Enterprise Security Scalability MySQL Enterprise High Availability MySQL Workbench 10
  • 11. MySQL Database Performance, Reliability, Ease of Use Support for common development languages/platforms Efficient multi- threaded session handling Full DML, DDL parsing, cost based optimizer, caching of queries and result sets Flexible Storage Engine options for application specific storage needs Flexible logging and physical storage options 11
  • 12. MySQL Database InnoDB - Transactional by Default • Default Storage Engine for MySQL 5.5 and above • ACID-compliant transactions, MVCC • Row-level locking • Two phase commit • Efficient indexing • Fast DDL operations • Table compression • Automatic crash recovery • Referential integrity • Online backup • More 12
  • 13. MySQL Database SysBench Benchmarks - Linux MySQL 5.5.6 (Default InnoDB) MySQL 5.1.50 (InnoDB Plug-in) MySQL 5.1.50 (InnoDB built-in) 370% performance gain Intel Xeon X7460 x86_64 4 CPU x 6 Cores/CPU 2.66 GHz, 32GB RAM for MySQL 5.5 over 5.1.50; at scale Fedora 10 13
  • 14. MySQL Database SysBench Benchmarks - Linux MySQL 5.5.6 (Default InnoDB) MySQL 5.1.50 (InnoDB Plug-in) MySQL 5.1.50 (InnoDB built-in) 200% performance gain Intel Xeon X7460 x86_64 4 CPU x 6 Cores/CPU 2.66 GHz, 32GB RAM for MySQL 5.5 over 5.1.50; at scale Fedora 10 14
  • 15. MySQL Database SysBench Benchmarks - Windows MySQL 5.5.6 (Default InnoDB) MySQL 5.1.50 (InnoDB Plug-in) MySQL 5.1.50 (InnoDB built-in) 540% performance gain Intel x86_64 4 CPU x 2 Cores/CPU 3.166 GHz, 8GB RAM for MySQL 5.5 over 5.1.50; at scale Windows Server 2008 15
  • 16. MySQL Database SysBench Benchmarks - Windows MySQL 5.5.6 (Default InnoDB) MySQL 5.1.50 (InnoDB Plug-in) MySQL 5.1.50 (InnoDB built-in) 1560% performance gain Intel x86_64 4 CPU x 2 Cores/CPU 3.166 GHz, 8GB RAM for MySQL 5.5 over 5.1.50; at scale Windows Server 2008 16
  • 17. MySQL Database High Availability with MySQL Replication 17 Copyright 2011 Oracle Corporation 17
  • 18. MySQL Database Replication Internals MySQL Master MySQL Slave mysqld mysqld updates updates I/O Thread selects Replication relay binlog SQL Thread data index & binlogs binlog data 18
  • 19. MySQL Database Replication Enables Scalability Application Load Balancer Writes & Reads Reads Reads MySQL Replication • Write to one master • Read from many slaves, easily add more as needed • Perfect for read/write intensive apps 19
  • 20. MySQL 5.6: A Better MySQL New! • MySQL 5.6 builds on MySQL 5.5 by improving: • Optimizer for better Performance, Scalability • Performance Schema for better instrumentation • InnoDB for better transactional throughput • Replication for higher availability, data integrity • “NotOnlySQL” options for better flexibility Try it now: dev.mysql.com/downloads/mysql 20
  • 21. MySQL Enterprise Security New! MySQL External Authentication • PAM (Pluggable Authentication Modules) • Access external authentication methods • Standard interface (Unix, LDAP, others) • proxied and non-proxied users • Windows • Access native Windows services • Authenticate users already logged into Windows (Windows Active Directory) • Pluggable Authentication API Integrates MySQL with existing security infrastructures and SOPs. 21
  • 22. Windows Authentication Example Connect as 1. MyDomain/joe logs into App environment with Windows login, password Connector Connect as Connect as 2. MyDomainjoe is 3. MyDomain/joe logs into authenticated on application, application Windows OS connects to MySQL with user win_joe. Connected Connect as 4. Tokens are checked, win_joe user is authenticated using Windows Authenticate login, password with MySQL specific privs Windows Win OS users, Auth groups, etc CREATE USER win_joe IDENTIFIED WITH authentication_windows AS ‘joe'; 22
  • 23. PAM Authentication Example 1. Joe logs in using App application user name/password. Connector 2. Connector sends the user name/password to the 4. PAM library verifies credentials MySQL server. (using e.g. LDAP or Kerberos Connected etc) and returns yes/no answer for delivery to client. 3. User name/password sent to the PAM library, yes/no answer from PAM library PAM returned to client. PAM library and various Authentication backends CREATE USER joe IDENTIFIED WITH 'authentication_pam' AS ‘mysql'; 23
  • 24. MySQL Enterprise Scalability New! MySQL Thread Pool • MySQL default thread-handling – excellent performance, can limit scalability as connections grow • MySQL Thread Pool improves sustained performance/scale as user connections grow • Thread Pool API 24
  • 25. Default Connection Pool Default Connection Pool Connection 1 Connection 1 Execution Thread Connections /statements Connection 2 Execution Thread Connection 2 assigned to Threads Users/Clients for life • Connections assigned to 1 thread for the life of the connection • Same thread used for all connection statement executions (single threaded) 25
  • 26. With Thread Pool Enabled Thread Pool (and thread Connection 1 Execution Threads groups) Connection 1 Connection 1 Threads 1 - 4096 Connection 2 Execution Threads Connection 2 Connection 2 Threads 4097 - 8193 Users/Clients Connection N Threads 8194 - N • Pool contains configurable number of thread groups (default = 16), each manages up to 4096 re-usable threads • Each connection assigned to thread group via round robin Ensures better, sustained performance as user loads continue to grow. 26
  • 27. MySQL Enterprise Edition MySQL Enterprise Edition With Thread Pool MySQL Community Server Without Thread Pool MySQL 5.5.16 Oracle Linux 6.1, Unbreakable Kernel 2.6.32 2 sockets, 24 cores, 2 X 12-core Intel(R) Xeon(R) X5670 2.93GHz CPUs 20x Better Scalability with Thread Pool 72GB DDR3 RAM 2 X LSI SCSI Disk (MR9261-8i) (597GB) 27
  • 28. MySQL Enterprise Edition MySQL Enterprise Edition With Thread Pool MySQL Community Server Without Thread Pool MySQL 5.5.16 Oracle Linux 6.1, Unbreakable Kernel 2.6.32 2 sockets, 24 cores, 2 X 12-core Intel(R) Xeon(R) X5670 2.93GHz CPUs 3x Better Scalability with Thread Pool 72GB DDR3 RAM 2 X LSI SCSI Disk (MR9261-8i) (597GB) 28
  • 29. MySQL Enterprise High Availability New! OVM Template for MySQL • Oracle Linux with the Unbreakable Oracle VM Oracle VM Enterprise Kernel Automatic Fault Detection & Recovery • Oracle VM • Oracle VM Manager Secure Live Migration (SSL) • Oracle Cluster File System 2 (OCFS2) • MySQL Database (Enterprise Edition) Oracle VM Server Pool Oracle VM Manager • Pre-Installed & Pre-Configured Oracle VM Servers • Full Integration & QA Testing ocfs2 • Single Point of Support** SAN / iSCSI ** Technical support for Oracle Linux and Oracle Virtual Machine requires Unbreakable Linux Network subscription.. 29
  • 30. MySQL Enterprise High Availability Protecting Against Planned/Unplanned Downtime VM VM VM VM VM X VM VM VM Browser VM Server Pool VM Server Pool SSL Migration HA Auto Restart Oracle VM Manager m m Oracle VM Servers Oracle VM Servers Planned Events Failures • Maintenance or SAN, iSCSI SAN, iSCSI • Server, VM or upgrades database failure • Secure Live Migration • HA Auto-restart in • Zero interruption pool • Automatic failure Pool Masters assure Secure Migration or detection & recovery HA restarts complete in the event of a Manager outage 30
  • 31. MySQL Enterprise High Availability Windows Server Failover Clustering New! • Windows Server 2008 R2, MySQL 5.5** • Quorum (3rd vote), data (InnoDB + schema) Slave App App App & binaries (optional) stored in shared storage (testing iSCSI & FCAL) • Failover: • Planned maintenance • MySQL service failure Virtual IP • Connectivity, Host failures • Loss of service = couple of seconds + InnoDB recovery time • App sees temporary loss of connection and reconnects on same IP address • Replication slave recovers automatically • Cluster managed through MS Failover Vote Data Bin Cluster Management snap-in GUI • No new software/scripts required ** Technical support for Windows Server Failover Clustering must be sourced from Microsoft. 31
  • 32. MySQL Enterprise Backup • Online Backup for InnoDB • Full, Incremental, Partial Backups (scriptable interface) • Compression • Point in Time, Full, Partial Recovery options • Metadata on status, progress, history mysqlbackup • Unlimited Database Size • Cross-Platform • Windows, Linux, Unix MEB Backup MySQL Database Files Files • Certified with Oracle Secure Backup Ensures quick, online backup and recovery of your MySQL apps. 32
  • 33. MySQL Enterprise Monitor • Global view of MySQL environment • Automated, rules-based monitoring and alerts (SMTP, SNMP enabled) • Query capture, monitoring, analysis and tuning, correlated with Monitor graphs • Visual monitoring of “hot” applications and servers • Real-time Replication Monitor with auto-discovery of master- slave topologies • Integrated with MySQL Support A Virtual MySQL Tuning Assistant! 33
  • 34. MySQL Expert Advisors Administration MySQL Cluster Performance • Monitors and Advises on • Monitors and Advises on Optimal Configuration • Monitors and Advises status/ performance of on Optimal MySQL Cluster Data Performance Variable Nodes. Settings Custom Replication • Built by DBA to • Monitors and Advises on Enforce Organization specific best practices. Master/Slave Latency. Upgrade Security • Monitors and Advises on • Monitors and Advises Bugs/Upgrades that on Unplanned Security affect current installation Changes/Loopholes Schema Memory Usage • Monitors and Advises • Monitors and advises on Unplanned Schema on optimal Change memory/cache settings 140+ Rules, 40+ MySQL, OS specific Graphs Save you time writing, deploying, versioning, maintaining custom scripts. Find problems and tuning opportunities you cannot find yourself. 34
  • 35. MySQL Query Analyzer • Centralized monitoring of queries without Slow Query Log, SHOW PROCESSLIST; • Enabled via MySQL Connectors • Aggregated view of query execution counts, time, and rows • Visual “grab and go” correlation with Monitor graphs • Traces query executions back to source code Saves you time parsing atomic executions from logs. Finds problems you cannot find yourself. 35
  • 36. Query Execution Drill Downs Example query exec with variable substitution Trace query exec back to source code Full exec EXPLAIN 36
  • 37. Automated Replication Monitor • Auto-detects, groups/maintains Master/Slave topologies • Consolidated, real time status/synch check • Notifications on Synch Issues • Proactive vs reactive Saves you time monitoring and collecting replication status/synch data from MySQL command line. 37
  • 38. MySQL Enterprise Monitor Integrated with My Oracle Support • Collect MySQL diagnostics and upload to MySQL Support • Track MOS SRs from Enterprise Dashboard 38
  • 39. MySQL Workbench SE Database Design Scripting & Plug-in Support • Visual Design, modeling UI Designed to match VS 2010 • Forward/Reverse Engineer Saves you time developing and • Schema validation, Schema doc managing your MySQL apps. SQL Development • SQL Editor - Color Syntax Highlighting • Objects - Import/Export, Browse/Edit • Connections - Wizard, SSH Tunnel Database Administration • Status, Configuration, Start/Stop • Users, Security, Sessions • Import/Export Dump Files 39
  • 40. MySQL Enterprise Edition New! Enables you to manage your Oracle and MySQL databases with Oracle tools/solutions you are already using. Oracle Product Oracle Premier Support Certifications MySQL Enterprise MySQL Enterprise Backup Monitor/Query Analyzer MySQL Enterprise MySQL Enterprise Security Scalability MySQL Enterprise High Availability MySQL Workbench 40
  • 41. MySQL Enterprise Oracle Certifications New! • WebLogic Server • Database Adapter for Oracle SOA Suite ** • Oracle Business Process Management ** • Oracle Virtual Directory • Oracle Data Integrator • Oracle Enterprise Performance Management ** • Oracle Identity Analytics • Open SSO STS, Open SSO Fedlet • All ship with MySQL 5.x JDBC driver • ** MySQL as a Metadata Repository option (in progress) 41
  • 42. MySQL Enterprise Oracle Certifications New! • Oracle Linux • Oracle VM • Oracle VM Template for MySQL EE • Oracle GoldenGate • Oracle Secure Backup • My Oracle Online Support Enables you to manage your Oracle and MySQL databases with Oracle tools/solutions you are already using. 42
  • 43. Oracle Premier Support for MySQL • 24 X 7 Problem Resolution Services • Unlimited Support Incidents • Knowledge Base • Maintenance Releases, Bug fixes, Patches, Updates • MySQL Consultative Support • Staffed by experienced, seasoned MySQL Engineers 43
  • 44. Tough Questions, Real Solutions …performance issues? …servers down? • MySQL Enterprise Scalability • Oracle Premier 7x24 Support • MySQL Enterprise Monitor, Advisors, Query Analyzer • MySQL Enterprise Monitor, Advisors • MySQL Consultative Support • MySQL Enterprise High Availability …expensive, slow queries? …security policies, change? • MySQL Enterprise Monitor, Query Analyzer • MySQL External Authentication Where/When/How to Tune? • MySQL Enterprise Monitor, Security Advisor • MySQL Enterprise Monitor, Advisors, Query Analyzer …Developers productive? • MySQL Consultative Support • MySQL Workbench SE • MySQL Enterprise Monitor, Query Analyzer …Replication synch issues? • MySQL Enterprise Monitor, Replication Monitor ..version of MySQL to run? • Oracle Premier 7x24 Support • Oracle Premier 7x24 Support …will systems scale? …can I recover? • MySQL Enterprise Scalability • MySQL Enterprise Backup • MySQL Enterprise Monitor, Advisors, Query Analyzer • MySQL Consultative Support …managing Oracle and MySQL databases? • Oracle Product Certifications 44
  • 45. And Now for the esoteric stuff 45
  • 46. Mysqlnd - MySQL native driver for PHP • Non-blocking, asynchronous queries • 150+ performance statistics • Since 5.3 used for Windows, default as of 5.4 Free PECL drop-in solutions for all PHP MySQL extensions: •mysqlnd_ms - replication and load balancing support *new* •mysqlnd_qc - client-side query cache (TTL) mysqlnd_uh - swiss-army- knife to hack mysqlnd with PHP Better licensing, easier to build and distribute 46
  • 47. 47
  • 48. MySQL 5.6 – Milestone releases These binaries were created by MySQL Binlog API, Binlog Group testing servers.. Commit, Global They are provided solely for testing Transactions Ids, purposes, to try the latest bug fixes and generally to keep up with the InnoDB Features, development. InnoDB FTS, Please, DO NOT USE THESE InnoDB/Memachced, BINARIES IN PRODUCTION. Instead, install them on a spare Performance Schema server. If you are looking for production ready binaries, please visit MySQL Cluster 7.2 with Downloads. MySQL Software is provided under Memcached the GPL License 48
  • 49. Optimizer Tracing – Beyond EXPLAIN SET optimizer_trace="enabled=on"; SELECT Name FROM City WHERE ID=999; SELECT trace into dumpfile '/tmp/foo' FROM INFORMATION_SCHEMA.OPTIMIZ ER_TRACE; Provides details of optimizer steps in a JSON format. You can then tune 49
  • 50. Additional Resources mysql.com • MySQL Products and Editions • TCO calculator • White Papers • Customer use cases and success stories dev.mysql.com • Downloads • Documentation Forums.MySQl.Com Planet.MySQL.com eDelivery.com • Download and evaluate all MySQL products 50
  • 51. MySQL Embedded Online Forum Tuesday, January 31, 2012 9:00AM PST - 12:00 PM PST http://bit.ly/w1bOwX Think You Know MySQL? Get the Facts. MySQL is even better than you think. According to the experts, it’s easier to use and it’s more capable than most ISVs / OEMs realize, and by taking a few tried-and-tested steps before shipping your MySQL- embedded products, you can lower your product’s costs and increase its performance. Join our expert-created and delivered MySQL Embedded Online Forum to learn: ● Why MySQL is a great embedded database for startups as well as the largest software, hardware, and appliance vendors in the world, and how its features ensure costs remain low throughout an application's life cycle. ● MySQL installation options that require minimal or zero end user effort and how to easily build them into your application ● How to secure MySQL embedded in applications, appliances, and devices ● Tips to simplify your integration with MySQL using the most popular MySQL Connectors and guidance on selecting the settings that will maximize your application’s performance ● Why MySQL delivers excellent performance and how to go beyond the default settings to optimize MySQL’s queries, reporting, and search capabilities Agenda: It Just Works! The Beauty of MySQL as an Embedded Database Building MySQL Embedded for Simple Installation and Security Craig Sylvester , Principal MySQL Sales Engineer, Oracle Getting the Most Out of MySQL Connectors for Better Performance and Streamlined Integration Matt Lord, Senior Principal MySQL Support Engineer, Oracle Better than Great: MySQL Embedded Performance and Reporting Alexander Rubin, MySQL Technical Consulting Manager, Oracle Copyright Oracle Corporation 2012 51
  • 52. MySQL Tech Tour Event Santa Clara, CA Thursday, February 9, 2012 http://www.oracle.com/go/? &Src=7314534&Act=247&pcode=WWMK11042736MPP125 El Segundo, CA Wednesday, February 8, 2012 http://www.oracle.com/go/? &Src=7314534&Act=249&pcode=WWMK11042736MPP127 Raleigh, NC Thursday, February 2, 2012 http://www.oracle.com/go/? &Src=7314534&Act=248&pcode=WWMK11042736MPP126
  • 53. <Insert Picture Here> Thanks for attending! David.Stokes@Oracle.com