SlideShare uma empresa Scribd logo
1 de 56
MySQL HA Solutions
Selecting the best approach to protect access to your data
Andrew Morgan – Director MySQL Product Management
Andrew.morgan@oracle.com
@andrewmorgan
clusterdb.com
February 2015
February 2015 Copyright 2015, 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 decisions. The development, release, and timing of any features or
functionality described for Oracle’s products remains at the sole discretion of Oracle.
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 2
Cloud
Web & Enterprise OEM & ISVs
Industry Leaders Rely on MySQL
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 3
Focus on driving the business rather than on infrastructure
Driving new Database Requirements
In-Memory
Real-Time
Performance
Extreme
Read &
Write
Scalability
Rock Solid
Availability
Rapid
Service
Innovation
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 4
Focus on driving the business rather than on infrastructure
Driving new Database Requirements
In-Memory
Real-Time
Performance
Extreme
Read &
Write
Scalability
Rock Solid
Availability
Rapid
Service
Innovation
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 5
HA Considerations
• SLA requirements to support business objectives
• Operational capabilities
• Service agility & time to market
• Budgetary constraints
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 6
• Recovery Time Objective
– Maximum length of downtime before
there is break in “business continuity”
• Recovery Point Objective
– Point in time to which data must be
recovered when service is re-
established
Tier 1
• Mission-critical services
Tier 2
• Business-critical services
Tier 3
• Task-critical services
Tier 4
• Non-critical services
February 2015 7
Don’t assume 99.999% HA needed for all apps
Copyright 2015, Oracle and/or its affiliates. All rights reserved
Mapping Uptime to Availability
Replicated
Systems
• SPs & Line of
Business
Clustered &
Virtualized
Systems
• Web & Cloud
Services
Shared
Nothing,
Geo-
Replicated
Clusters
• eCommerce,
Telecoms &
Military
February 2015
9 9 . 9 9 9 %
Cost&Complexity
Copyright 2015, Oracle and/or its affiliates. All rights reserved 8
MySQL
Replication
MySQL
Fabric
DRBD
Windows/S
olaris/Clust
erware
Clustering
or Oracle
VM
MySQL
Cluster
MySQL HA Solutions
February 2015
9 9 . 9 9 9 %
Copyright 2015, Oracle and/or its affiliates. All rights reserved 9
It’s not just reliably storing the data
Layers of HA
Redundant Access to Data
Data Redundancy
Redundant App Servers
Routing to the Data
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 10
Oracle MySQL HA & Scaling Solutions
MySQL
Replication
MySQL
Fabric
Oracle VM
Template
Oracle
Clusterware
Solaris
Cluster
Windows
Cluster
DRBD
MySQL
Cluster
App Auto-Failover ✖ ✔ ✔ ✔ ✔ ✔ ✔ ✔
Data Layer Auto-Failover ✖ ✔ ✔ ✔ ✔ ✔ ✔ ✔
Zero Data Loss MySQL 5.7 MySQL 5.7 ✔ ✔ ✔ ✔ ✔ ✔
Platform Support All All Linux Linux Solaris Windows Linux All
Clustering Mode
Master +
Slaves
Master +
Slaves
Active/Pas
sive
Active/Passi
ve
Active/P
assive
Active/Pas
sive
Active/P
assive
Multi-
Master
Failover Time N/A Secs Secs + Secs + Secs + Secs + Secs + < 1 Sec
Scale-out Reads ✔ ✖ ✖ ✖ ✖ ✖ ✔
Cross-shard operations N/A ✖ N/A N/A N/A N/A N/A ✔
Transparent routing ✖ For HA ✔ ✔ ✔ ✔ ✔ ✔
Shared Nothing ✔ ✔ ✖ ✖ ✖ ✖ ✔ ✔
Storage Engine InnoDB+ InnoDB+ InnoDB+ InnoDB+ InnoDB+ InnoDB+ InnoDB+ NDB
Single Vendor Support ✔ ✔ ✔ ✔ ✔ ✖ ✔ ✔
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 11
Why Replicate?
• Duplicates database from a “master” to a “slave”
– Redundant copies of the data provide foundation for High Availability
– Scale out by distributing queries across the replication farm
Master
Slaves
Web / App Servers
Writes & Reads Reads
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 12
Company Overview
Twitter’s mission: To give everyone the power to create
and share ideas and information instantly, without
barriers.
Application
A typical day sees over 500 million tweets, which means
about 5,700 per second with MySQL. Twitter achieved in
August 2013 a new World record of 143,199 Tweets Per
Second (TPS).
Why MySQL 5.6?
“Performance, replication, compression improvements,
transportable tablespaces, better monitoring &
diagnostics.” Calvin Sun, Senior Engineering Manager,
Twitter
Twitter
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 13
Company Overview
Each day, over 700,000 room nights are reserved on
Booking.com. Part of the Priceline Group.
Application
Booking has relied on MySQL since 2003. Supporting 60-
70% annual growth and an agile development model.
Why MySQL?
Performance and scalability to manage a very large
event volume:
• 60 MByte/sec Event data rate
• 2 Billion Events per day
• 15 TB in MySQL for Events, lookups, monitoring
• 150 TB MySQL Event archive
Booking.com
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 14
Slave
Database
• Session thread: processes queries from the
application – writes data to master database &
associated events to binary log
• Dump thread: reads events from binary log and
sends them to a slave
• I/O thread: receives replication events and
stores them in slave’s relay log
• SQL thread: reads replication events from
slave’s relay log and applies them to slave
database
MySQL Replication Workflow
Session
Binary
Log
Master
Database
Dump I/O
Relay
Log
SQL
February 2015 15Copyright 2015, Oracle and/or its affiliates. All rights reserved
• Asynchronous
– MySQL Default
– In parallel: Master acks
to app and sends
transaction to slave
• Fast
• Risk of lost changes if
master dies
• Semi-Synchronous
– MySQL 5.5+ - Enhanced
in MySQL 5.7
– Serially: Master waits
for change to be
received by slave then
In parallel ack to app
and apply changes on
slave
• Intermediate latency
• Lossless (MySQL 5.7)
• Synchronous
– Only available with
MySQL Cluster
– Serially: Master waits
for change to be
applied on all slaves
before ack to app
• Higher latency
• If Active/Active, best
suited to small
transactions
• Lossless
Asynchronous vs. Synchronous Replication
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 16
MySQL 5.6 Replication
February 2015
• 5x Higher slave throughput with MTS (multiple schemas)
• Reduced master impact – Binlog Group Commit
Performance and Scalability
• Global Transaction IDsSimplicity
• MySQL Replication Utilities (including auto-failover)Automation
• Crash safety
• Replication checksums
Robustness
• Time Delayed ReplicationInsurance
Copyright 2015, Oracle and/or its affiliates. All rights reserved 17
MySQL 5.7 Replication – Pre-GA
February 2015
• Intra-schema Multi-Threaded Slave
• Faster Master
Performance and Scalability
• Performance SchemaMonitoring
• Dynamic slave filters
• On-line CHANGE MASTER
Operational Simplicity
• Lossless Semi-Synchronous Replication
• Multiple Semi-Synchronous Acks
Resilience
• GTIDs stored in transactional tables
• Automatic slave retries
MORE Resilience
Copyright 2015, Oracle and/or its affiliates. All rights reserved 18
• Consolidate updates from multiple
Masters into one Slave
– Consolidated view of all shards
– More flexible topologies
– Centralized point for backups
• Compatible with Semi-Sync
Replication & enhanced MTS
• Master-specific slave filters
Multi-Source Replication
Binlog
Master 1
Binlog
Master 2
…
…
Binlog
Master N
IO 1
Relay 1
Coordinator
W1 W2 … WX
IO 2
Relay 2
Coordinator
W1 W2 … WX
…
…
Coordinator
W1 W2 … WX
IO N
Relay N
Coordinator
W1 W2 … WX
Slave
labs.mysql.com
February 2015 19Copyright 2015, Oracle and/or its affiliates. All rights reserved
• Shared-nothing virtually synchronous database system
• Multi-master update anywhere
– Conflict detection and resolution (transaction rollback)
– Optimistic State Machine Replication
• Automatic group membership management and failure
detection
– No need for server fail-over
– Elastic scale out/in
– No single point of failure
– Automatic reconfiguration
• Well integrated
– InnoDB
– GTID-based replication
– PERFORMANCE_SCHEMA
MySQL Group Replication
Application
MySQL Masters Replication
Plugin
API
MySQL
Server
Group Comms
(Corosync)
labs.mysql.com
February 2015 20Copyright 2015, Oracle and/or its affiliates. All rights reserved
MySQL Fabric
An extensible and easy-to-
use framework for
managing a farm of MySQL
server supporting high-
availability and sharding
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 21
MySQL Fabric 1.5
• High Availability
– Server monitoring with auto-promotion and
transparent application failover
• Optionally scale-out through sharding
– Application provides shard key
– Range or Hash
– Tools for resharding
– Global updates & tables
• Fabric-aware connectors rather than
proxy: Python, Java, PHP, .NET, C (labs)
– Lower latency, bottleneck-free
• Server provisioning using OpenStack etc.
High Availability + Sharding-Based Scale-out
MySQL Fabric
Connector
Application
Read-slaves
SQL
HA group
Read-slaves
HA group
Connector
Application
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 22
MySQL Replication & MySQL Fabric HA
• MySQL Replication is the initial implementation used in HA Groups
– PRIMARY = Replication Master & receives all writes
– SECONDARY = Replication Slave & receives share of reads
• Failover
– MySQL Fabric detects failure of PRIMARY/Master
– Selects a SECONDARY/Slave and promotes it
– Updates State Store
– Updated state fetched by Fabric-aware connectors
How this effects failover
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 23
Extensible Architecture
MySQL Fabric Node
Connector
Connector
Connector
MySQL Fabric
Framework
AMQP? MySQL XML-RPC
Executor
State Store
(persister)
Shard
HA
Prov
State
Store
SQL
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 24
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 25
• Oracle Clusterware unifies servers
in a server farm to form a cluster
– At the core of Oracle RAC
• Oracle Cluster 12c includes MySQL
Server 5.6 agent
• Planned migration and failover of
MySQL database
– Hidden from the application
February 2015
MySQL on Oracle Clusterware
26Copyright 2015, Oracle and/or its affiliates. All rights reserved
• Pre-Installed & Pre-Configured
• Full Integration & QA Testing
• Single Point of Support
Oracle VM Template for MySQL
Oracle VM Servers
Oracle VM Server Pool
ocfs2
Oracle VM
Manager
iSCSI / FC-AL
Oracle VM
Secure Live
Migration (SSL)
Oracle VM
Automatic Fault
Detection &
Recovery
February 2015 27Copyright 2015, Oracle and/or its affiliates. All rights reserved
• Native Windows HA clustering with
MySQL
• Quorum (3rd vote), data (InnoDB +
schema) & binaries (optional)
stored in shared storage (iSCSI &
FCAL)
• Loss of service = couple of seconds
+ InnoDB recovery time
• Cluster managed through MS
Failover Cluster Management snap-
in GUI
Windows Server Failover Clustering
App
Virtual IP
Data Bin
Slave App App
Vote
February 2015 28Copyright 2015, Oracle and/or its affiliates. All rights reserved
• Kernel based heartbeating and
monitoring
• SPARC and x86. Solaris
Virtualization-aware
• MySQL agent included with Oracle
Solaris Cluster
• Learn more:
http://www.oracle.com/technetwo
rk/server-storage/solaris-
cluster/overview/index.html
Oracle Solaris Clustering
February 2015 29Copyright 2015, Oracle and/or its affiliates. All rights reserved
• Based on distributed storage
– NOT physical shared storage
• Synchronous replication at block
device level eliminates risk of data
loss
• Open source, mature & proven
• Certified and supported by Oracle
Oracle Linux and DRBD Stack
Hosts
Oracle Linux Oracle Linux
Active Standby
Corosync
Pacemaker
Cluster s/w
DRBD DRBD
MySQL MySQL
Application
VIP
sync
Services
February 2015 30Copyright 2015, Oracle and/or its affiliates. All rights reserved
MySQL Cluster Overview
• Memory optimized tables with durability
• Predictable Low-Latency, Bounded Access Time
REAL-TIME
• Auto-Sharding, Multi-Master
• ACID Compliant, OLTP + Real-Time Analytics
HIGH SCALE, READS +
WRITES
• Shared nothing, no Single Point of Failure
• Self Healing + On-Line Operations
99.999% AVAILABILITY
• Key/Value + Complex, Relational Queries
• SQL + Memcached + JavaScript + Java + HTTP/REST & C++
SQL + NoSQL
• Open Source + Commercial Editions
• Commodity hardware + Management, Monitoring Tools
LOW TCO
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 31
Who’s Using MySQL Cluster?
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 32
Company Overview
PayPal allows any business or individual with an email
address to securely, conveniently and cost-effectively send
and receive payments online.
Application
PayPal built a cloud-based globally-distributed database
with 100 TB of user-related data based on MySQL Cluster.
“Must NOT lose data” system, delivering 99,999%
availability, transactional, with data available WW
anywhere in < 1 Sec.
Why MySQL Cluster?
“You can achieve high performance and availability
without giving up relational models and read
consistency.” Daniel Austin, Chief Architect, PayPal
PayPal
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 33
Company Overview
Global telecommunications equipment company, focuses on
fixed, mobile, and converged networking hardware, IP
technologies, software, and services.
Application
MySQL Cluster CGE is at the heart of Alcatel-Lucent’s
Subscriber Data Manager to deliver converged IMS services
to mobile and fixed line users.
Why MySQL Cluster CGE?
• Delivers the performance, scalability and availability
required by this mission critical real-time application
• Real-time read & write access for tens of millions of
subscribers in a single system
• Always-on service: no offline maintenance window for
services users depend on (voice, SMS, email, Web, social
media…)
• Rapid delivery & low TCO
Alcatel-Lucent
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 34
MySQL Cluster Architecture
MySQL Cluster Data Nodes
Clients
Application Layer
Data Layer
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 35
MySQL Cluster Scaling
MySQL Cluster Data Nodes
Clients
Application Layer
Data Layer
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 36
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 37
MySQL Cluster HA
MySQL Cluster Data Nodes
Clients
Application Layer
Data Layer
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 38
MySQL Cluster Auto-Installer
• Fast configuration
• Auto-discovery
• Workload optimized
• Repeatable best practices
Specify
Workload
Auto-
Discover
Define
TopologyDeploy
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 39
• Asynchronous replication between
MySQL Clusters
• Active-Active
– Update anywhere
– Conflict detection
• Application notified through exception tables
• Can opt to have conflicts resolved
automatically
– Auto-conflict-resolution
• Conflicting transaction and dependent ones
are rolled-back (MySQL Cluster 7.4 – pre GA)
• No changes to application schema
February 2015 40
Active-Active Geo-Replication
Copyright 2015, Oracle and/or its affiliates. All rights reserved
When to Consider MySQL Cluster
 Scalability demands
 Sharding for write performance?
 Latency demands
 Cost of each millisecond?
 Uptime requirements
 Cost per minute of downtime?
 Failure versus maintenance?
 Application agility
 Developer languages and frameworks?
 SQL or NoSQL?
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 41
Management ToolsAdvanced Features Support
• Scalability
• High Availability
• Security
• Audit
• Monitoring
• Backup
• Development
• Administration
• Migration
• Technical Support
• Consultative Support
• Oracle Certifications
MySQL Enterprise Edition
42
Copyright 2015, Oracle and/or its affiliates. All rights reserved
February 2015 43Copyright 2015, Oracle and/or its affiliates. All rights reserved
MySQL Enterprise Monitor
Application
Big Fish Games is a global leader in the online games industry
and distributes more games worldwide than any other online
site.
Key Business Benefit
MySQL Query Analyzer provides a consolidated view of query
activities and execution details, and has enabled Big Fish
Games to quickly identify poorly running queries and tackle
the root causes directly in the SQL code.
Why MySQL?
“With the MySQL Query Analyzer, we were able to identify and
analyze problematic SQL code, and triple our database
performance. More importantly, we were able to accomplish
this in three days, rather than taking weeks.”
Keith Souhrada, Software Development Engineer, Big Fish Games
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 44
MySQL Enterprise Monitor
• Start monitoring MySQL in 10 minutes
• Real-time MySQL performance and
availability monitoring
• Visually find & fix problem queries
• Disk monitoring for capacity planning
• Cloud friendly architecture
– No agents required
• Optional agent option provides
advanced Host/OS monitoring
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 45
Enterprise Replication Monitor
• Auto-discovers replication topology
• Master/Slave performance
monitoring
• Replication advisor
• Best practice replication advice
"I use the MySQL Enterprise Monitor
every day to monitor and keep tabs on
our MySQL databases. Quick one stop
shopping for keeping tabs on them.”
-Wes Homer,
Sr System and Network Administrator
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 46
MySQL Enterprise Backup
• Online, non-locking backup and recovery
– Complete MySQL instance backup (data and config)
– Partial backup and restore
• Direct Cloud storage backups (S3, etc.)
• Incremental backups
• Point-in-time recovery
• Advanced compressed and encryption
• Backup to tape (SBT)
• Backup validation
• Optimistic backups
• Cross-Platform (Windows, Linux, Unix)
47Copyright 2015, Oracle and/or its affiliates. All rights reserved
MySQL Enterprise Monitor + Backup
• Monitor backup results
• Monitor backup performance
• Ensure backups are up to date
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 48
Oracle Enterprise Manager for MySQL
Performance
Security
Availability
• Availability monitoring
• Performance monitoring
• Configuration monitoring
• All available metrics collected
– Allowing for custom threshold
based incident reports
• MySQL auto-detection
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 49
Oracle Premier Support for MySQL
• Straight from the Source
• Largest Team of MySQL Experts
• Backed by MySQL Developers
• Forward Compatible Hot Fixes
• MySQL Maintenance Releases
• MySQL Support in 29 Languages
• 24/7/365
• Unlimited Incidents
• Knowledge Base
• MySQL Consultative Support
Rely on The Experts - Get Unique Benefits
"The MySQL support service has been essential
in helping us with troubleshooting and
providing recommendations for the production
cluster, Thanks."
-- Carlos Morales – Playfulplay.com
Only From
Oracle
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 50
MySQL
Cluster
CGE
MySQL
Cluster
Manager
MySQL
Enterprise
Scalability
MySQL
Enterprise
Audit
MySQL
Enterprise
Security
Oracle
Premier
Lifetime
Support
Oracle
Product
Certifications
MySQL
Enterprise
Mornitor
MySQL
Workbench
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 51
Enhancing DevOps Agility,
Reducing Downtime
Automated Management
• Start / Stop node or
whole cluster
• On-Line Scaling
• On-Line Reconfiguration
• On-Line Upgrades
• On-Line Backup &
Restore
• Import Running Cluster
Self-Healing
• Node monitoring
• Auto-recovery extended
to SQL + mgmt nodes
HA Operations
• Cluster-wide
configuration
consistency
• Persistent
configurations
• HA Agents
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 52
Without MySQL Cluster Manager
• 1 x preliminary check of cluster state
• 8 x ssh commands per server
• 8 x per-process stop commands
• 4 x scp of config files (2 x mgmd & 2 x mysqld)
• 8 x per-process start commands
• 8 x checks for started and re-joined processes
• 8 x process completion verifications
• 1 x verify completion of the whole cluster.
• Excludes manual editing of each configuration file.
• Total: 46 commands
– 2.5 hours of attended operation
With MySQL Cluster Manager
mcm> upgrade cluster
--package=7.4 mycluster;
• Total: 1 Command -
– Unattended Operation
Software Upgrade – example of benefits of MCM?
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 53
MCM: Upgrade Cluster
mcm> upgrade cluster
--package=7.3 mycluster;
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 54
Oracle University MySQL Training Services
Prepare Your Organization to Enable Reliable and High-Performance Web-Based Database Applications
“Training and team skill
have the most significant impact on overall performance of
technology and success of technology projects.” - IDC, 2013
Premier Support customers eligible to
save 20% on learning credits.
Benefits
 Expert-led training to support your MySQL learning needs
 Flexibility to train in the classroom or online
 Hands-on experience to gain real world experience
 Key skills needed for database administrators and developers
• MySQL for Beginners
 MySQL for Database Administrators
 MySQL Performance Tuning
 MySQL Cluster – NEW - Register Your Interest!
 MySQL and PHP - Developing Dynamic Web Applications
 MySQL for Developers
 MySQL Developer Techniques
 MySQL 5.6 Database Administrator
 MySQL 5.6 Developer
To find out more about available MySQL Training & Certification
offerings, go to: education.oracle.com/mysql
Top Courses for Administrators and Developers
Top Certifications
RECENTLY RELEASED
!!ALL NEW!! MySQL Cluster Training
To Register your interest to influence the
schedule on this newly released course – go to
education.oracle.com/mysql and click on the
MySQL Cluster Course
February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 55
White Papers & Webinar Replays
February 2015
High Availability
• http://www.mysql.com/why-mysql/white-papers/#en-22-16
• http://www.mysql.com/news-and-events/on-demand-webinars/#en-20-16
MySQL Replication
• http://www.mysql.com/why-mysql/white-papers/#en-22-38
• http://www.mysql.com/news-and-events/on-demand-webinars/#en-20-38
MySQL Cluster
• http://www.mysql.com/why-mysql/white-papers/#en-22-28
• http://www.mysql.com/news-and-events/on-demand-webinars/#en-20-28
Copyright 2015, Oracle and/or its affiliates. All rights reserved 56

Mais conteúdo relacionado

Mais procurados

Space Invaders around the World
Space Invaders around the WorldSpace Invaders around the World
Space Invaders around the WorldPrénom RVLEB
 
Space Invaders Daejeon
Space Invaders DaejeonSpace Invaders Daejeon
Space Invaders DaejeonPrénom RVLEB
 
Space Invaders Tokyo as of 2021
Space Invaders Tokyo as of 2021Space Invaders Tokyo as of 2021
Space Invaders Tokyo as of 2021Prénom RVLEB
 
Space Invaders Tokyo 2017
Space Invaders Tokyo 2017Space Invaders Tokyo 2017
Space Invaders Tokyo 2017Prénom RVLEB
 
Space Invaders Miami
Space Invaders MiamiSpace Invaders Miami
Space Invaders MiamiPrénom RVLEB
 
Space Invaders Africa
Space Invaders AfricaSpace Invaders Africa
Space Invaders AfricaPrénom RVLEB
 
Space Invaders Bangkok
Space Invaders BangkokSpace Invaders Bangkok
Space Invaders BangkokPrénom RVLEB
 
Space Invader Versailles
Space Invader VersaillesSpace Invader Versailles
Space Invader VersaillesPrénom RVLEB
 
Space Invaders Australia
Space Invaders AustraliaSpace Invaders Australia
Space Invaders AustraliaPrénom RVLEB
 
Clones of Space Invaders Edinburgh
Clones of Space Invaders EdinburghClones of Space Invaders Edinburgh
Clones of Space Invaders EdinburghPrénom RVLEB
 
Space Invader San Diego
Space Invader San DiegoSpace Invader San Diego
Space Invader San DiegoPrénom RVLEB
 
Space Invaders Katmandou
Space Invaders KatmandouSpace Invaders Katmandou
Space Invaders KatmandouPrénom RVLEB
 
Space Invaders La Ciotat
Space Invaders La CiotatSpace Invaders La Ciotat
Space Invaders La CiotatPrénom RVLEB
 
Space Invaders Montpellier
Space Invaders MontpellierSpace Invaders Montpellier
Space Invaders MontpellierPrénom RVLEB
 
Space Invaders Avignon
Space Invaders Avignon Space Invaders Avignon
Space Invaders Avignon Prénom RVLEB
 
Cirrus 6.0.2 user manual english dr.boonsong
Cirrus 6.0.2 user manual english dr.boonsongCirrus 6.0.2 user manual english dr.boonsong
Cirrus 6.0.2 user manual english dr.boonsongKhwanying Monsiri
 
Space Invaders Paris XIX
Space Invaders Paris XIXSpace Invaders Paris XIX
Space Invaders Paris XIXPrénom RVLEB
 
Space Invader Frankfurt
Space Invader FrankfurtSpace Invader Frankfurt
Space Invader FrankfurtPrénom RVLEB
 

Mais procurados (18)

Space Invaders around the World
Space Invaders around the WorldSpace Invaders around the World
Space Invaders around the World
 
Space Invaders Daejeon
Space Invaders DaejeonSpace Invaders Daejeon
Space Invaders Daejeon
 
Space Invaders Tokyo as of 2021
Space Invaders Tokyo as of 2021Space Invaders Tokyo as of 2021
Space Invaders Tokyo as of 2021
 
Space Invaders Tokyo 2017
Space Invaders Tokyo 2017Space Invaders Tokyo 2017
Space Invaders Tokyo 2017
 
Space Invaders Miami
Space Invaders MiamiSpace Invaders Miami
Space Invaders Miami
 
Space Invaders Africa
Space Invaders AfricaSpace Invaders Africa
Space Invaders Africa
 
Space Invaders Bangkok
Space Invaders BangkokSpace Invaders Bangkok
Space Invaders Bangkok
 
Space Invader Versailles
Space Invader VersaillesSpace Invader Versailles
Space Invader Versailles
 
Space Invaders Australia
Space Invaders AustraliaSpace Invaders Australia
Space Invaders Australia
 
Clones of Space Invaders Edinburgh
Clones of Space Invaders EdinburghClones of Space Invaders Edinburgh
Clones of Space Invaders Edinburgh
 
Space Invader San Diego
Space Invader San DiegoSpace Invader San Diego
Space Invader San Diego
 
Space Invaders Katmandou
Space Invaders KatmandouSpace Invaders Katmandou
Space Invaders Katmandou
 
Space Invaders La Ciotat
Space Invaders La CiotatSpace Invaders La Ciotat
Space Invaders La Ciotat
 
Space Invaders Montpellier
Space Invaders MontpellierSpace Invaders Montpellier
Space Invaders Montpellier
 
Space Invaders Avignon
Space Invaders Avignon Space Invaders Avignon
Space Invaders Avignon
 
Cirrus 6.0.2 user manual english dr.boonsong
Cirrus 6.0.2 user manual english dr.boonsongCirrus 6.0.2 user manual english dr.boonsong
Cirrus 6.0.2 user manual english dr.boonsong
 
Space Invaders Paris XIX
Space Invaders Paris XIXSpace Invaders Paris XIX
Space Invaders Paris XIX
 
Space Invader Frankfurt
Space Invader FrankfurtSpace Invader Frankfurt
Space Invader Frankfurt
 

Destaque

Best practices for MySQL High Availability
Best practices for MySQL High AvailabilityBest practices for MySQL High Availability
Best practices for MySQL High AvailabilityColin Charles
 
NoSQL and SQL - blending the best of both worlds
NoSQL and SQL - blending the best of both worldsNoSQL and SQL - blending the best of both worlds
NoSQL and SQL - blending the best of both worldsAndrew Morgan
 
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
 
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 Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and ScalabilityMySQL Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and ScalabilityShivji Kumar Jha
 
Mysql cluster introduction
Mysql cluster introductionMysql cluster introduction
Mysql cluster introductionAndrew Morgan
 
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
 
Successful MySQL Scalability
Successful MySQL ScalabilitySuccessful MySQL Scalability
Successful MySQL ScalabilityRonald Bradford
 
Building a Scalable Architecture for web apps
Building a Scalable Architecture for web appsBuilding a Scalable Architecture for web apps
Building a Scalable Architecture for web appsDirecti Group
 
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)Andrew Morgan
 
FOSDEM 2015 - NoSQL and SQL the best of both worlds
FOSDEM 2015 - NoSQL and SQL the best of both worldsFOSDEM 2015 - NoSQL and SQL the best of both worlds
FOSDEM 2015 - NoSQL and SQL the best of both worldsAndrew Morgan
 
7 Stages of Scaling Web Applications
7 Stages of Scaling Web Applications7 Stages of Scaling Web Applications
7 Stages of Scaling Web ApplicationsDavid Mitzenmacher
 
Facebook architecture presentation: scalability challenge
Facebook architecture presentation: scalability challengeFacebook architecture presentation: scalability challenge
Facebook architecture presentation: scalability challengeCristina Munoz
 
Architecture of a Modern Web App
Architecture of a Modern Web AppArchitecture of a Modern Web App
Architecture of a Modern Web Appscothis
 

Destaque (15)

Best practices for MySQL High Availability
Best practices for MySQL High AvailabilityBest practices for MySQL High Availability
Best practices for MySQL High Availability
 
NoSQL and SQL - blending the best of both worlds
NoSQL and SQL - blending the best of both worldsNoSQL and SQL - blending the best of both worlds
NoSQL and SQL - blending the best of both worlds
 
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 ...
 
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 Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and ScalabilityMySQL Developer Day conference: MySQL Replication and Scalability
MySQL Developer Day conference: MySQL Replication and Scalability
 
Mysql cluster introduction
Mysql cluster introductionMysql cluster introduction
Mysql cluster introduction
 
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 Cluster Basics
MySQL Cluster BasicsMySQL Cluster Basics
MySQL Cluster Basics
 
Successful MySQL Scalability
Successful MySQL ScalabilitySuccessful MySQL Scalability
Successful MySQL Scalability
 
Building a Scalable Architecture for web apps
Building a Scalable Architecture for web appsBuilding a Scalable Architecture for web apps
Building a Scalable Architecture for web apps
 
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
MySQL Cluster - Latest Developments (up to and including MySQL Cluster 7.4)
 
FOSDEM 2015 - NoSQL and SQL the best of both worlds
FOSDEM 2015 - NoSQL and SQL the best of both worldsFOSDEM 2015 - NoSQL and SQL the best of both worlds
FOSDEM 2015 - NoSQL and SQL the best of both worlds
 
7 Stages of Scaling Web Applications
7 Stages of Scaling Web Applications7 Stages of Scaling Web Applications
7 Stages of Scaling Web Applications
 
Facebook architecture presentation: scalability challenge
Facebook architecture presentation: scalability challengeFacebook architecture presentation: scalability challenge
Facebook architecture presentation: scalability challenge
 
Architecture of a Modern Web App
Architecture of a Modern Web AppArchitecture of a Modern Web App
Architecture of a Modern Web App
 

Semelhante a MySQL High Availability Solutions - Feb 2015 webinar

MySQL High Availibility Solutions
MySQL High Availibility SolutionsMySQL High Availibility Solutions
MySQL High Availibility SolutionsMark Swarbrick
 
Netherlands Tech Tour 03 - MySQL Cluster
Netherlands Tech Tour 03 -   MySQL ClusterNetherlands Tech Tour 03 -   MySQL Cluster
Netherlands Tech Tour 03 - MySQL ClusterMark Swarbrick
 
5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQL5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQLMySQL Brasil
 
What's new in MySQL Cluster 7.4 webinar charts
What's new in MySQL Cluster 7.4 webinar chartsWhat's new in MySQL Cluster 7.4 webinar charts
What's new in MySQL Cluster 7.4 webinar chartsAndrew Morgan
 
My sql enterprise_edition_wp_v38
My sql enterprise_edition_wp_v38My sql enterprise_edition_wp_v38
My sql enterprise_edition_wp_v38Jeton Selimi
 
1 architecture & design
1   architecture & design1   architecture & design
1 architecture & designMark Swarbrick
 
MySQL Technology Overview
MySQL Technology OverviewMySQL Technology Overview
MySQL Technology OverviewKeith Hollman
 
Netherlands Tech Tour 02 - MySQL Fabric
Netherlands Tech Tour 02 -   MySQL FabricNetherlands Tech Tour 02 -   MySQL Fabric
Netherlands Tech Tour 02 - MySQL FabricMark Swarbrick
 
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...GeneXus
 
Enabling digital transformation with MySQL
Enabling digital transformation with MySQLEnabling digital transformation with MySQL
Enabling digital transformation with MySQLMySQL Brasil
 
Oracle Enterprise Manager for MySQL
Oracle Enterprise Manager for MySQLOracle Enterprise Manager for MySQL
Oracle Enterprise Manager for MySQLMario Beck
 
MySQL Enterprise Edition Overview
MySQL Enterprise Edition OverviewMySQL Enterprise Edition Overview
MySQL Enterprise Edition OverviewMario Beck
 
MySQL London Tech Tour March 2015 - MySQL Fabric
MySQL London Tech Tour March 2015 - MySQL FabricMySQL London Tech Tour March 2015 - MySQL Fabric
MySQL London Tech Tour March 2015 - MySQL FabricMark Swarbrick
 
MySQL Enterprise Edition - Complete Guide (2019)
MySQL Enterprise Edition - Complete Guide (2019)MySQL Enterprise Edition - Complete Guide (2019)
MySQL Enterprise Edition - Complete Guide (2019)Keith Hollman
 
01 demystifying mysq-lfororacledbaanddeveloperv1
01 demystifying mysq-lfororacledbaanddeveloperv101 demystifying mysq-lfororacledbaanddeveloperv1
01 demystifying mysq-lfororacledbaanddeveloperv1Ivan Ma
 
MySQL London Tech Tour March 2015 - Whats New
MySQL London Tech Tour March 2015 - Whats NewMySQL London Tech Tour March 2015 - Whats New
MySQL London Tech Tour March 2015 - Whats NewMark Swarbrick
 
MySQL Community and Commercial Edition
MySQL Community and Commercial EditionMySQL Community and Commercial Edition
MySQL Community and Commercial EditionMario Beck
 
MySQL The State of the Dolphin - jun15
MySQL The State of the Dolphin - jun15MySQL The State of the Dolphin - jun15
MySQL The State of the Dolphin - jun15MySQL Brasil
 

Semelhante a MySQL High Availability Solutions - Feb 2015 webinar (20)

MySQL High Availibility Solutions
MySQL High Availibility SolutionsMySQL High Availibility Solutions
MySQL High Availibility Solutions
 
Netherlands Tech Tour 03 - MySQL Cluster
Netherlands Tech Tour 03 -   MySQL ClusterNetherlands Tech Tour 03 -   MySQL Cluster
Netherlands Tech Tour 03 - MySQL Cluster
 
5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQL5 razões estratégicas para usar MySQL
5 razões estratégicas para usar MySQL
 
MySQL cluster 7.4
MySQL cluster 7.4 MySQL cluster 7.4
MySQL cluster 7.4
 
What's new in MySQL Cluster 7.4 webinar charts
What's new in MySQL Cluster 7.4 webinar chartsWhat's new in MySQL Cluster 7.4 webinar charts
What's new in MySQL Cluster 7.4 webinar charts
 
My sql enterprise_edition_wp_v38
My sql enterprise_edition_wp_v38My sql enterprise_edition_wp_v38
My sql enterprise_edition_wp_v38
 
1 architecture & design
1   architecture & design1   architecture & design
1 architecture & design
 
MySQL Technology Overview
MySQL Technology OverviewMySQL Technology Overview
MySQL Technology Overview
 
Netherlands Tech Tour 02 - MySQL Fabric
Netherlands Tech Tour 02 -   MySQL FabricNetherlands Tech Tour 02 -   MySQL Fabric
Netherlands Tech Tour 02 - MySQL Fabric
 
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
MySQL 20 años: pasado, presente y futuro; conoce las nuevas características d...
 
Enabling digital transformation with MySQL
Enabling digital transformation with MySQLEnabling digital transformation with MySQL
Enabling digital transformation with MySQL
 
Oracle Enterprise Manager for MySQL
Oracle Enterprise Manager for MySQLOracle Enterprise Manager for MySQL
Oracle Enterprise Manager for MySQL
 
MySQL
MySQLMySQL
MySQL
 
MySQL Enterprise Edition Overview
MySQL Enterprise Edition OverviewMySQL Enterprise Edition Overview
MySQL Enterprise Edition Overview
 
MySQL London Tech Tour March 2015 - MySQL Fabric
MySQL London Tech Tour March 2015 - MySQL FabricMySQL London Tech Tour March 2015 - MySQL Fabric
MySQL London Tech Tour March 2015 - MySQL Fabric
 
MySQL Enterprise Edition - Complete Guide (2019)
MySQL Enterprise Edition - Complete Guide (2019)MySQL Enterprise Edition - Complete Guide (2019)
MySQL Enterprise Edition - Complete Guide (2019)
 
01 demystifying mysq-lfororacledbaanddeveloperv1
01 demystifying mysq-lfororacledbaanddeveloperv101 demystifying mysq-lfororacledbaanddeveloperv1
01 demystifying mysq-lfororacledbaanddeveloperv1
 
MySQL London Tech Tour March 2015 - Whats New
MySQL London Tech Tour March 2015 - Whats NewMySQL London Tech Tour March 2015 - Whats New
MySQL London Tech Tour March 2015 - Whats New
 
MySQL Community and Commercial Edition
MySQL Community and Commercial EditionMySQL Community and Commercial Edition
MySQL Community and Commercial Edition
 
MySQL The State of the Dolphin - jun15
MySQL The State of the Dolphin - jun15MySQL The State of the Dolphin - jun15
MySQL The State of the Dolphin - jun15
 

Mais de Andrew Morgan

Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...
Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...
Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...Andrew Morgan
 
Data Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEAData Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEAAndrew Morgan
 
The rise of microservices - containers and orchestration
The rise of microservices - containers and orchestrationThe rise of microservices - containers and orchestration
The rise of microservices - containers and orchestrationAndrew Morgan
 
PistonHead's use of MongoDB for Analytics
PistonHead's use of MongoDB for AnalyticsPistonHead's use of MongoDB for Analytics
PistonHead's use of MongoDB for AnalyticsAndrew Morgan
 
Joins and Other MongoDB 3.2 Aggregation Enhancements
Joins and Other MongoDB 3.2 Aggregation EnhancementsJoins and Other MongoDB 3.2 Aggregation Enhancements
Joins and Other MongoDB 3.2 Aggregation EnhancementsAndrew Morgan
 
Document validation in MongoDB 3.2
Document validation in MongoDB 3.2Document validation in MongoDB 3.2
Document validation in MongoDB 3.2Andrew Morgan
 
MySQL Replication: What’s New in MySQL 5.7 and Beyond
MySQL Replication: What’s New in MySQL 5.7 and BeyondMySQL Replication: What’s New in MySQL 5.7 and Beyond
MySQL Replication: What’s New in MySQL 5.7 and BeyondAndrew Morgan
 
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQL
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQLNoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQL
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQLAndrew Morgan
 
OUG Scotland 2014 - NoSQL and MySQL - The best of both worlds
OUG Scotland 2014 - NoSQL and MySQL - The best of both worldsOUG Scotland 2014 - NoSQL and MySQL - The best of both worlds
OUG Scotland 2014 - NoSQL and MySQL - The best of both worldsAndrew Morgan
 
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013Andrew Morgan
 
Developing high-throughput services with no sql ap-is to innodb and mysql clu...
Developing high-throughput services with no sql ap-is to innodb and mysql clu...Developing high-throughput services with no sql ap-is to innodb and mysql clu...
Developing high-throughput services with no sql ap-is to innodb and mysql clu...Andrew Morgan
 

Mais de Andrew Morgan (12)

MongoDB 3.4 webinar
MongoDB 3.4 webinarMongoDB 3.4 webinar
MongoDB 3.4 webinar
 
Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...
Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...
Powering Microservices with MongoDB, Docker, Kubernetes & Kafka – MongoDB Eur...
 
Data Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEAData Streaming with Apache Kafka & MongoDB - EMEA
Data Streaming with Apache Kafka & MongoDB - EMEA
 
The rise of microservices - containers and orchestration
The rise of microservices - containers and orchestrationThe rise of microservices - containers and orchestration
The rise of microservices - containers and orchestration
 
PistonHead's use of MongoDB for Analytics
PistonHead's use of MongoDB for AnalyticsPistonHead's use of MongoDB for Analytics
PistonHead's use of MongoDB for Analytics
 
Joins and Other MongoDB 3.2 Aggregation Enhancements
Joins and Other MongoDB 3.2 Aggregation EnhancementsJoins and Other MongoDB 3.2 Aggregation Enhancements
Joins and Other MongoDB 3.2 Aggregation Enhancements
 
Document validation in MongoDB 3.2
Document validation in MongoDB 3.2Document validation in MongoDB 3.2
Document validation in MongoDB 3.2
 
MySQL Replication: What’s New in MySQL 5.7 and Beyond
MySQL Replication: What’s New in MySQL 5.7 and BeyondMySQL Replication: What’s New in MySQL 5.7 and Beyond
MySQL Replication: What’s New in MySQL 5.7 and Beyond
 
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQL
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQLNoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQL
NoSQL and SQL - Why Choose? Enjoy the best of both worlds with MySQL
 
OUG Scotland 2014 - NoSQL and MySQL - The best of both worlds
OUG Scotland 2014 - NoSQL and MySQL - The best of both worldsOUG Scotland 2014 - NoSQL and MySQL - The best of both worlds
OUG Scotland 2014 - NoSQL and MySQL - The best of both worlds
 
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013
NoSQL & SQL - Best of both worlds - BarCamp Berkshire 2013
 
Developing high-throughput services with no sql ap-is to innodb and mysql clu...
Developing high-throughput services with no sql ap-is to innodb and mysql clu...Developing high-throughput services with no sql ap-is to innodb and mysql clu...
Developing high-throughput services with no sql ap-is to innodb and mysql clu...
 

Último

GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceBrainSell Technologies
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanyChristoph Pohl
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Rob Geurden
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Developmentvyaparkranti
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Cizo Technology Services
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprisepreethippts
 
Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfDrew Moseley
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Velvetech LLC
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)jennyeacort
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationBradBedford3
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesŁukasz Chruściel
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZABSYZ Inc
 
How To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTROHow To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTROmotivationalword821
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalLionel Briand
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxAndreas Kunz
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...Technogeeks
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentationvaddepallysandeep122
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024StefanoLambiase
 

Último (20)

GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
CRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. SalesforceCRM Contender Series: HubSpot vs. Salesforce
CRM Contender Series: HubSpot vs. Salesforce
 
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte GermanySuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
SuccessFactors 1H 2024 Release - Sneak-Peek by Deloitte Germany
 
Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...Simplifying Microservices & Apps - The art of effortless development - Meetup...
Simplifying Microservices & Apps - The art of effortless development - Meetup...
 
VK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web DevelopmentVK Business Profile - provides IT solutions and Web Development
VK Business Profile - provides IT solutions and Web Development
 
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
Global Identity Enrolment and Verification Pro Solution - Cizo Technology Ser...
 
Odoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 EnterpriseOdoo 14 - eLearning Module In Odoo 14 Enterprise
Odoo 14 - eLearning Module In Odoo 14 Enterprise
 
Comparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdfComparing Linux OS Image Update Models - EOSS 2024.pdf
Comparing Linux OS Image Update Models - EOSS 2024.pdf
 
Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...Software Project Health Check: Best Practices and Techniques for Your Product...
Software Project Health Check: Best Practices and Techniques for Your Product...
 
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
Call Us🔝>༒+91-9711147426⇛Call In girls karol bagh (Delhi)
 
How to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion ApplicationHow to submit a standout Adobe Champion Application
How to submit a standout Adobe Champion Application
 
Unveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New FeaturesUnveiling the Future: Sylius 2.0 New Features
Unveiling the Future: Sylius 2.0 New Features
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
Salesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZSalesforce Implementation Services PPT By ABSYZ
Salesforce Implementation Services PPT By ABSYZ
 
How To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTROHow To Manage Restaurant Staff -BTRESTRO
How To Manage Restaurant Staff -BTRESTRO
 
Precise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive GoalPrecise and Complete Requirements? An Elusive Goal
Precise and Complete Requirements? An Elusive Goal
 
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptxUI5ers live - Custom Controls wrapping 3rd-party libs.pptx
UI5ers live - Custom Controls wrapping 3rd-party libs.pptx
 
What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...What is Advanced Excel and what are some best practices for designing and cre...
What is Advanced Excel and what are some best practices for designing and cre...
 
PREDICTING RIVER WATER QUALITY ppt presentation
PREDICTING  RIVER  WATER QUALITY  ppt presentationPREDICTING  RIVER  WATER QUALITY  ppt presentation
PREDICTING RIVER WATER QUALITY ppt presentation
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
 

MySQL High Availability Solutions - Feb 2015 webinar

  • 1. MySQL HA Solutions Selecting the best approach to protect access to your data Andrew Morgan – Director MySQL Product Management Andrew.morgan@oracle.com @andrewmorgan clusterdb.com February 2015 February 2015 Copyright 2015, 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 decisions. The development, release, and timing of any features or functionality described for Oracle’s products remains at the sole discretion of Oracle. February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 2
  • 3. Cloud Web & Enterprise OEM & ISVs Industry Leaders Rely on MySQL February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 3
  • 4. Focus on driving the business rather than on infrastructure Driving new Database Requirements In-Memory Real-Time Performance Extreme Read & Write Scalability Rock Solid Availability Rapid Service Innovation February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 4
  • 5. Focus on driving the business rather than on infrastructure Driving new Database Requirements In-Memory Real-Time Performance Extreme Read & Write Scalability Rock Solid Availability Rapid Service Innovation February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 5
  • 6. HA Considerations • SLA requirements to support business objectives • Operational capabilities • Service agility & time to market • Budgetary constraints February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 6
  • 7. • Recovery Time Objective – Maximum length of downtime before there is break in “business continuity” • Recovery Point Objective – Point in time to which data must be recovered when service is re- established Tier 1 • Mission-critical services Tier 2 • Business-critical services Tier 3 • Task-critical services Tier 4 • Non-critical services February 2015 7 Don’t assume 99.999% HA needed for all apps Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 8. Mapping Uptime to Availability Replicated Systems • SPs & Line of Business Clustered & Virtualized Systems • Web & Cloud Services Shared Nothing, Geo- Replicated Clusters • eCommerce, Telecoms & Military February 2015 9 9 . 9 9 9 % Cost&Complexity Copyright 2015, Oracle and/or its affiliates. All rights reserved 8
  • 9. MySQL Replication MySQL Fabric DRBD Windows/S olaris/Clust erware Clustering or Oracle VM MySQL Cluster MySQL HA Solutions February 2015 9 9 . 9 9 9 % Copyright 2015, Oracle and/or its affiliates. All rights reserved 9
  • 10. It’s not just reliably storing the data Layers of HA Redundant Access to Data Data Redundancy Redundant App Servers Routing to the Data February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 10
  • 11. Oracle MySQL HA & Scaling Solutions MySQL Replication MySQL Fabric Oracle VM Template Oracle Clusterware Solaris Cluster Windows Cluster DRBD MySQL Cluster App Auto-Failover ✖ ✔ ✔ ✔ ✔ ✔ ✔ ✔ Data Layer Auto-Failover ✖ ✔ ✔ ✔ ✔ ✔ ✔ ✔ Zero Data Loss MySQL 5.7 MySQL 5.7 ✔ ✔ ✔ ✔ ✔ ✔ Platform Support All All Linux Linux Solaris Windows Linux All Clustering Mode Master + Slaves Master + Slaves Active/Pas sive Active/Passi ve Active/P assive Active/Pas sive Active/P assive Multi- Master Failover Time N/A Secs Secs + Secs + Secs + Secs + Secs + < 1 Sec Scale-out Reads ✔ ✖ ✖ ✖ ✖ ✖ ✔ Cross-shard operations N/A ✖ N/A N/A N/A N/A N/A ✔ Transparent routing ✖ For HA ✔ ✔ ✔ ✔ ✔ ✔ Shared Nothing ✔ ✔ ✖ ✖ ✖ ✖ ✔ ✔ Storage Engine InnoDB+ InnoDB+ InnoDB+ InnoDB+ InnoDB+ InnoDB+ InnoDB+ NDB Single Vendor Support ✔ ✔ ✔ ✔ ✔ ✖ ✔ ✔ February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 11
  • 12. Why Replicate? • Duplicates database from a “master” to a “slave” – Redundant copies of the data provide foundation for High Availability – Scale out by distributing queries across the replication farm Master Slaves Web / App Servers Writes & Reads Reads February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 12
  • 13. Company Overview Twitter’s mission: To give everyone the power to create and share ideas and information instantly, without barriers. Application A typical day sees over 500 million tweets, which means about 5,700 per second with MySQL. Twitter achieved in August 2013 a new World record of 143,199 Tweets Per Second (TPS). Why MySQL 5.6? “Performance, replication, compression improvements, transportable tablespaces, better monitoring & diagnostics.” Calvin Sun, Senior Engineering Manager, Twitter Twitter February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 13
  • 14. Company Overview Each day, over 700,000 room nights are reserved on Booking.com. Part of the Priceline Group. Application Booking has relied on MySQL since 2003. Supporting 60- 70% annual growth and an agile development model. Why MySQL? Performance and scalability to manage a very large event volume: • 60 MByte/sec Event data rate • 2 Billion Events per day • 15 TB in MySQL for Events, lookups, monitoring • 150 TB MySQL Event archive Booking.com February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 14
  • 15. Slave Database • Session thread: processes queries from the application – writes data to master database & associated events to binary log • Dump thread: reads events from binary log and sends them to a slave • I/O thread: receives replication events and stores them in slave’s relay log • SQL thread: reads replication events from slave’s relay log and applies them to slave database MySQL Replication Workflow Session Binary Log Master Database Dump I/O Relay Log SQL February 2015 15Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 16. • Asynchronous – MySQL Default – In parallel: Master acks to app and sends transaction to slave • Fast • Risk of lost changes if master dies • Semi-Synchronous – MySQL 5.5+ - Enhanced in MySQL 5.7 – Serially: Master waits for change to be received by slave then In parallel ack to app and apply changes on slave • Intermediate latency • Lossless (MySQL 5.7) • Synchronous – Only available with MySQL Cluster – Serially: Master waits for change to be applied on all slaves before ack to app • Higher latency • If Active/Active, best suited to small transactions • Lossless Asynchronous vs. Synchronous Replication February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 16
  • 17. MySQL 5.6 Replication February 2015 • 5x Higher slave throughput with MTS (multiple schemas) • Reduced master impact – Binlog Group Commit Performance and Scalability • Global Transaction IDsSimplicity • MySQL Replication Utilities (including auto-failover)Automation • Crash safety • Replication checksums Robustness • Time Delayed ReplicationInsurance Copyright 2015, Oracle and/or its affiliates. All rights reserved 17
  • 18. MySQL 5.7 Replication – Pre-GA February 2015 • Intra-schema Multi-Threaded Slave • Faster Master Performance and Scalability • Performance SchemaMonitoring • Dynamic slave filters • On-line CHANGE MASTER Operational Simplicity • Lossless Semi-Synchronous Replication • Multiple Semi-Synchronous Acks Resilience • GTIDs stored in transactional tables • Automatic slave retries MORE Resilience Copyright 2015, Oracle and/or its affiliates. All rights reserved 18
  • 19. • Consolidate updates from multiple Masters into one Slave – Consolidated view of all shards – More flexible topologies – Centralized point for backups • Compatible with Semi-Sync Replication & enhanced MTS • Master-specific slave filters Multi-Source Replication Binlog Master 1 Binlog Master 2 … … Binlog Master N IO 1 Relay 1 Coordinator W1 W2 … WX IO 2 Relay 2 Coordinator W1 W2 … WX … … Coordinator W1 W2 … WX IO N Relay N Coordinator W1 W2 … WX Slave labs.mysql.com February 2015 19Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 20. • Shared-nothing virtually synchronous database system • Multi-master update anywhere – Conflict detection and resolution (transaction rollback) – Optimistic State Machine Replication • Automatic group membership management and failure detection – No need for server fail-over – Elastic scale out/in – No single point of failure – Automatic reconfiguration • Well integrated – InnoDB – GTID-based replication – PERFORMANCE_SCHEMA MySQL Group Replication Application MySQL Masters Replication Plugin API MySQL Server Group Comms (Corosync) labs.mysql.com February 2015 20Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 21. MySQL Fabric An extensible and easy-to- use framework for managing a farm of MySQL server supporting high- availability and sharding February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 21
  • 22. MySQL Fabric 1.5 • High Availability – Server monitoring with auto-promotion and transparent application failover • Optionally scale-out through sharding – Application provides shard key – Range or Hash – Tools for resharding – Global updates & tables • Fabric-aware connectors rather than proxy: Python, Java, PHP, .NET, C (labs) – Lower latency, bottleneck-free • Server provisioning using OpenStack etc. High Availability + Sharding-Based Scale-out MySQL Fabric Connector Application Read-slaves SQL HA group Read-slaves HA group Connector Application February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 22
  • 23. MySQL Replication & MySQL Fabric HA • MySQL Replication is the initial implementation used in HA Groups – PRIMARY = Replication Master & receives all writes – SECONDARY = Replication Slave & receives share of reads • Failover – MySQL Fabric detects failure of PRIMARY/Master – Selects a SECONDARY/Slave and promotes it – Updates State Store – Updated state fetched by Fabric-aware connectors How this effects failover February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 23
  • 24. Extensible Architecture MySQL Fabric Node Connector Connector Connector MySQL Fabric Framework AMQP? MySQL XML-RPC Executor State Store (persister) Shard HA Prov State Store SQL February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 24
  • 25. February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 25
  • 26. • Oracle Clusterware unifies servers in a server farm to form a cluster – At the core of Oracle RAC • Oracle Cluster 12c includes MySQL Server 5.6 agent • Planned migration and failover of MySQL database – Hidden from the application February 2015 MySQL on Oracle Clusterware 26Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 27. • Pre-Installed & Pre-Configured • Full Integration & QA Testing • Single Point of Support Oracle VM Template for MySQL Oracle VM Servers Oracle VM Server Pool ocfs2 Oracle VM Manager iSCSI / FC-AL Oracle VM Secure Live Migration (SSL) Oracle VM Automatic Fault Detection & Recovery February 2015 27Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 28. • Native Windows HA clustering with MySQL • Quorum (3rd vote), data (InnoDB + schema) & binaries (optional) stored in shared storage (iSCSI & FCAL) • Loss of service = couple of seconds + InnoDB recovery time • Cluster managed through MS Failover Cluster Management snap- in GUI Windows Server Failover Clustering App Virtual IP Data Bin Slave App App Vote February 2015 28Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 29. • Kernel based heartbeating and monitoring • SPARC and x86. Solaris Virtualization-aware • MySQL agent included with Oracle Solaris Cluster • Learn more: http://www.oracle.com/technetwo rk/server-storage/solaris- cluster/overview/index.html Oracle Solaris Clustering February 2015 29Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 30. • Based on distributed storage – NOT physical shared storage • Synchronous replication at block device level eliminates risk of data loss • Open source, mature & proven • Certified and supported by Oracle Oracle Linux and DRBD Stack Hosts Oracle Linux Oracle Linux Active Standby Corosync Pacemaker Cluster s/w DRBD DRBD MySQL MySQL Application VIP sync Services February 2015 30Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 31. MySQL Cluster Overview • Memory optimized tables with durability • Predictable Low-Latency, Bounded Access Time REAL-TIME • Auto-Sharding, Multi-Master • ACID Compliant, OLTP + Real-Time Analytics HIGH SCALE, READS + WRITES • Shared nothing, no Single Point of Failure • Self Healing + On-Line Operations 99.999% AVAILABILITY • Key/Value + Complex, Relational Queries • SQL + Memcached + JavaScript + Java + HTTP/REST & C++ SQL + NoSQL • Open Source + Commercial Editions • Commodity hardware + Management, Monitoring Tools LOW TCO February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 31
  • 32. Who’s Using MySQL Cluster? February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 32
  • 33. Company Overview PayPal allows any business or individual with an email address to securely, conveniently and cost-effectively send and receive payments online. Application PayPal built a cloud-based globally-distributed database with 100 TB of user-related data based on MySQL Cluster. “Must NOT lose data” system, delivering 99,999% availability, transactional, with data available WW anywhere in < 1 Sec. Why MySQL Cluster? “You can achieve high performance and availability without giving up relational models and read consistency.” Daniel Austin, Chief Architect, PayPal PayPal February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 33
  • 34. Company Overview Global telecommunications equipment company, focuses on fixed, mobile, and converged networking hardware, IP technologies, software, and services. Application MySQL Cluster CGE is at the heart of Alcatel-Lucent’s Subscriber Data Manager to deliver converged IMS services to mobile and fixed line users. Why MySQL Cluster CGE? • Delivers the performance, scalability and availability required by this mission critical real-time application • Real-time read & write access for tens of millions of subscribers in a single system • Always-on service: no offline maintenance window for services users depend on (voice, SMS, email, Web, social media…) • Rapid delivery & low TCO Alcatel-Lucent February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 34
  • 35. MySQL Cluster Architecture MySQL Cluster Data Nodes Clients Application Layer Data Layer February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 35
  • 36. MySQL Cluster Scaling MySQL Cluster Data Nodes Clients Application Layer Data Layer February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 36
  • 37. February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 37
  • 38. MySQL Cluster HA MySQL Cluster Data Nodes Clients Application Layer Data Layer February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 38
  • 39. MySQL Cluster Auto-Installer • Fast configuration • Auto-discovery • Workload optimized • Repeatable best practices Specify Workload Auto- Discover Define TopologyDeploy February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 39
  • 40. • Asynchronous replication between MySQL Clusters • Active-Active – Update anywhere – Conflict detection • Application notified through exception tables • Can opt to have conflicts resolved automatically – Auto-conflict-resolution • Conflicting transaction and dependent ones are rolled-back (MySQL Cluster 7.4 – pre GA) • No changes to application schema February 2015 40 Active-Active Geo-Replication Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 41. When to Consider MySQL Cluster  Scalability demands  Sharding for write performance?  Latency demands  Cost of each millisecond?  Uptime requirements  Cost per minute of downtime?  Failure versus maintenance?  Application agility  Developer languages and frameworks?  SQL or NoSQL? February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 41
  • 42. Management ToolsAdvanced Features Support • Scalability • High Availability • Security • Audit • Monitoring • Backup • Development • Administration • Migration • Technical Support • Consultative Support • Oracle Certifications MySQL Enterprise Edition 42 Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 43. February 2015 43Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 44. MySQL Enterprise Monitor Application Big Fish Games is a global leader in the online games industry and distributes more games worldwide than any other online site. Key Business Benefit MySQL Query Analyzer provides a consolidated view of query activities and execution details, and has enabled Big Fish Games to quickly identify poorly running queries and tackle the root causes directly in the SQL code. Why MySQL? “With the MySQL Query Analyzer, we were able to identify and analyze problematic SQL code, and triple our database performance. More importantly, we were able to accomplish this in three days, rather than taking weeks.” Keith Souhrada, Software Development Engineer, Big Fish Games February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 44
  • 45. MySQL Enterprise Monitor • Start monitoring MySQL in 10 minutes • Real-time MySQL performance and availability monitoring • Visually find & fix problem queries • Disk monitoring for capacity planning • Cloud friendly architecture – No agents required • Optional agent option provides advanced Host/OS monitoring February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 45
  • 46. Enterprise Replication Monitor • Auto-discovers replication topology • Master/Slave performance monitoring • Replication advisor • Best practice replication advice "I use the MySQL Enterprise Monitor every day to monitor and keep tabs on our MySQL databases. Quick one stop shopping for keeping tabs on them.” -Wes Homer, Sr System and Network Administrator February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 46
  • 47. MySQL Enterprise Backup • Online, non-locking backup and recovery – Complete MySQL instance backup (data and config) – Partial backup and restore • Direct Cloud storage backups (S3, etc.) • Incremental backups • Point-in-time recovery • Advanced compressed and encryption • Backup to tape (SBT) • Backup validation • Optimistic backups • Cross-Platform (Windows, Linux, Unix) 47Copyright 2015, Oracle and/or its affiliates. All rights reserved
  • 48. MySQL Enterprise Monitor + Backup • Monitor backup results • Monitor backup performance • Ensure backups are up to date February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 48
  • 49. Oracle Enterprise Manager for MySQL Performance Security Availability • Availability monitoring • Performance monitoring • Configuration monitoring • All available metrics collected – Allowing for custom threshold based incident reports • MySQL auto-detection February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 49
  • 50. Oracle Premier Support for MySQL • Straight from the Source • Largest Team of MySQL Experts • Backed by MySQL Developers • Forward Compatible Hot Fixes • MySQL Maintenance Releases • MySQL Support in 29 Languages • 24/7/365 • Unlimited Incidents • Knowledge Base • MySQL Consultative Support Rely on The Experts - Get Unique Benefits "The MySQL support service has been essential in helping us with troubleshooting and providing recommendations for the production cluster, Thanks." -- Carlos Morales – Playfulplay.com Only From Oracle February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 50
  • 52. Enhancing DevOps Agility, Reducing Downtime Automated Management • Start / Stop node or whole cluster • On-Line Scaling • On-Line Reconfiguration • On-Line Upgrades • On-Line Backup & Restore • Import Running Cluster Self-Healing • Node monitoring • Auto-recovery extended to SQL + mgmt nodes HA Operations • Cluster-wide configuration consistency • Persistent configurations • HA Agents February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 52
  • 53. Without MySQL Cluster Manager • 1 x preliminary check of cluster state • 8 x ssh commands per server • 8 x per-process stop commands • 4 x scp of config files (2 x mgmd & 2 x mysqld) • 8 x per-process start commands • 8 x checks for started and re-joined processes • 8 x process completion verifications • 1 x verify completion of the whole cluster. • Excludes manual editing of each configuration file. • Total: 46 commands – 2.5 hours of attended operation With MySQL Cluster Manager mcm> upgrade cluster --package=7.4 mycluster; • Total: 1 Command - – Unattended Operation Software Upgrade – example of benefits of MCM? February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 53
  • 54. MCM: Upgrade Cluster mcm> upgrade cluster --package=7.3 mycluster; February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 54
  • 55. Oracle University MySQL Training Services Prepare Your Organization to Enable Reliable and High-Performance Web-Based Database Applications “Training and team skill have the most significant impact on overall performance of technology and success of technology projects.” - IDC, 2013 Premier Support customers eligible to save 20% on learning credits. Benefits  Expert-led training to support your MySQL learning needs  Flexibility to train in the classroom or online  Hands-on experience to gain real world experience  Key skills needed for database administrators and developers • MySQL for Beginners  MySQL for Database Administrators  MySQL Performance Tuning  MySQL Cluster – NEW - Register Your Interest!  MySQL and PHP - Developing Dynamic Web Applications  MySQL for Developers  MySQL Developer Techniques  MySQL 5.6 Database Administrator  MySQL 5.6 Developer To find out more about available MySQL Training & Certification offerings, go to: education.oracle.com/mysql Top Courses for Administrators and Developers Top Certifications RECENTLY RELEASED !!ALL NEW!! MySQL Cluster Training To Register your interest to influence the schedule on this newly released course – go to education.oracle.com/mysql and click on the MySQL Cluster Course February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved 55
  • 56. White Papers & Webinar Replays February 2015 High Availability • http://www.mysql.com/why-mysql/white-papers/#en-22-16 • http://www.mysql.com/news-and-events/on-demand-webinars/#en-20-16 MySQL Replication • http://www.mysql.com/why-mysql/white-papers/#en-22-38 • http://www.mysql.com/news-and-events/on-demand-webinars/#en-20-38 MySQL Cluster • http://www.mysql.com/why-mysql/white-papers/#en-22-28 • http://www.mysql.com/news-and-events/on-demand-webinars/#en-20-28 Copyright 2015, Oracle and/or its affiliates. All rights reserved 56