« Performance at Scale: SSDs, Silver Bullets, and Serialization | Main | Sponsored Post: Apple, Netflix, Salesforce, Blizzard Entertainment, Cloudant, CopperEgg, Logentries, Wargaming.net, PagerDuty, HelloSign, CrowdStrike, Gengo, ScaleOut Software, Couchbase, MongoDB, BlueStripe, AiScaler, Aerospike, LogicMonitor, AppDynamics, ManageEngine, Site24x7 »
Monday
Jun162014

Migrating to XtraDB Cluster in EC2 at PagerDuty

This is a guest post by Doug Barth, a software generalist who has currently found himself doing operations work at PagerDuty. Prior to joining PagerDuty, he worked for Signal in Chicago and Orbitz, an online travel company.

A little over six months ago, PagerDuty switched its production MySQL database to XtraDB Cluster running inside EC2. Here's the story of why and how we made the change.

How the Database Looked Before

PagerDuty's MySQL database was a fairly typical deployment. We had:

  • A pair of Percona Servers writing data to a DRBD-backed volume.

  • EBS disks for both the primary and secondary servers backing the DRBD volume.

  • Two synchronous copies of the production database. (In the event of a failure of the primary, we wanted to be able to quickly switch to the secondary server without losing any data.)

  • A number of asynchronous replication slaves for disaster recovery, backups and accidental modification recovery.

Problems With the Old Setup

Our database setup served us well for several years, but the failover architecture it provided didn't meet our reliability goals. Plus, changing hosts was a hassle: To flip from one DRBD host to another, we had to stop MySQL on the primary, unmount the DRBD volume, change the secondary to primary status, mount the volume on the secondary and start MySQL. That setup requires downtime - and once MySQL was up and running on the new server, we had a cold buffer pool which would need to warm up before the application's performance returned to normal.

We tried using Percona's buffer-pool-restore feature to shorten the downtime window, but our buffer pool was prohibitively large. We found restoring the saved buffer pool pages used more system resources than servicing incoming request traffic slowly.

Another issue: Our async slaves became unrecoverable if an unplanned flip occurred. We were storing the binlogs on a separate, non-DRBD-backed disk and had disabled sync_binlog (due to the performance penalty it introduced). This setup meant that we needed to restore our async slaves from backup after an unplanned flip.

What We Liked About XtraDB Cluster

There were a few things about XtraDB Cluster that stood out.

  • Instead of having an active and passive server pair, we would be able to have three live servers replicating changes between each other synchronously. That would enable us to move connections over more quickly.

  • Since XtraDB Cluster is multi-master, it would let us send traffic to multiple servers, ensuring that each server had a warm buffer pool at all times. In XtraDB Cluster, asynchronous slaves can use any node as a master and be moved between nodes without breaking the replication stream.

  • The cluster's automatic node provisioning fit well with our existing automation. After configuring a new node, all we’d have to do is provide another node’s address - the new node would receive a copy of the dataset automatically (and join the cluster once it had synced).

What We Did to Prepare

Getting our application ready for XtraDB Cluster did involve a few new constraints. Some of those were simple MySQL tweaks that are mostly hidden from the application logic, while others were more fundamental changes.

On the MySQL side:

  • We needed to ensure that only InnoDB tables with primary keys were used.

  • We had to ensure our application wasn't dependent on the query cache being enabled (since it is not supported by the cluster).

  • We had to switch from statement-based to row-based replication.

Besides these MySQL configuration changes, which we were able to test out in isolation on the DRBD server side, the application logic needed to change:

  • We needed to move to a distributed locking mechanism, since MySQL locking (e.g., SELECT FOR UPDATE statements) is local to the cluster node.

  • Thus, we replaced our MySQL locks with Zookeeper locks (Zookeeper was already being used for that purpose in other parts of our system).

  • To account for the fact that writesets would need to be sent synchronously to all nodes, we changed the logic of jobs that make large changes (typically archiving jobs) to use many smaller transactions rather than one big transaction.

How We Handled Schema Changes

Schema changes are especially impactful in XtraDB Cluster. There are two options for controlling how schema changes are applied in the cluster: total order isolation (TOI) and rolling schema upgrade (RSU).

RSU allows you to upgrade each node individually, desyncing that node from the cluster while the DDL statement is running and then rejoining the cluster. But this approach can introduce instability - and RSU wouldn't avoid operational issues with schema changes on large tables (since it buffers writesets in memory until the DDL statement completes).

TOI, by contrast, applies schema upgrades simultaneously on all cluster nodes, blocking the cluster until the change completes. We decided to use TOI with Percona's online schema change tool (pt-online-schema-change). It ensures that any blocking operations are quick and therefore don't block the cluster.

The Migration Process

Having established the constraints that XtraDB Cluster would introduce, we started the rollout process.

First, we stood up a cluster in production as a slave of the existing DRBD database. By having that cluster run in production and receive all write traffic, we could start seeing how it behaved under real production load. We also set up metrics collection and dashboards to keep an eye on the cluster.

In parallel to that effort, we spent some time running load tests against a test cluster to quantify how it performed relative to the existing DRBD setup.

Running those benchmarks led us to discover that a few MySQL configs had to be tweaked to get the same level of performance that we’d been enjoying:

  • Setting innodb_flush_log_at_trx_commit to 0 or 2 resulted in the best write performance (setting it to 1, by contrast, limited write scalability to just 4 threads on our test VMs). Since all changes are replicated to 3 nodes, we don’t lose any data in the event of a failure, even with relaxed disk consistency for a single node.

  • A large innodb_log_file_size value was needed. We ended up with a 1GB file for our production servers.

After satisfying ourselves that XtraDB Cluster would be able to handle our production load, we started the process of moving it into production use.

Switching all of our test environments to a clustered setup (and running load and failure tests against them) came first. In the event of a cluster hang, we needed a way to quickly reconfigure our system to fall back to a one-node cluster. We scripted that procedure and tested it while under load.

Actually moving the production servers to the cluster was a multi-step process. We had already set up a production cluster as a slave of the existing DRBD server, so we stood up and slaved another DRBD pair. (This DRBD server was there in case the switch went horribly wrong and we needed to fall back to a DRBD-based solution, which thankfully we didn't end up having to do.)

We then moved the rest of our async slaves (disaster recovery, backups, etc.) behind XtraDB Cluster. With those slaves sitting behind XtraDB Cluster, we executed a normal slave promotion process to move production traffic to the new system.

Real-World Performance: Benefits

With a bit over six months of production use, we have found a number of benefits to running on XtraDB Cluster:

  • We have successfully performed rolling restarts and upgrades of our production cluster without stopping production traffic.

  • We have performed schema modifications on our production systems using pt-online-schema-change.

  • We have optimized how write conflicts are handled. XtraDB Cluster returns a deadlock error on experiencing a conflict - even when using pt-online-schema-change to execute quick DDL statements. Conflicts lead our application servers to return a 503 response, which our load balancing tier will catch. The load balancer will subsequently retry the request on another server.

Real-World Performance: Annoyances

Along the way, we have also found a few frustrating issues:

  • Some of the cluster’s key status counters are stateful, meaning they reset to zero after running "SHOW GLOBAL STATUS". This made it difficult to monitor the system for critical counters like flow control, which increment infrequently but are critical to understanding how the system is behaving. (This issue is fixed, however, in Galera 3.x, which XtraDB Cluster 5.6 uses.)

  • ActiveRecord's MySQL adapter was hiding exceptions thrown from transactional statements, which occur when a writeset conflict takes place. (This error was fixed in Rails 4.1.)

  • We still have some work to do to be rid of the cold server problem. Currently, our application servers connect to a local HAproxy instance, which forwards their connection to a single cluster node. For planned maintenance, we slowly bleed traffic over to another cluster node to warm up its buffer pool before giving it the full production load. In the future, we plan to switch to a fully multi-master setup to ensure that all nodes have a warm buffer pool.

 

Reader Comments (6)

great post!

out of curiosity, have you found that the cluster with RBR has increased overall transaction throughput? do you have a measurable performance gain?

in reviewing pt-online-schema-change, it looks like there might be some issues with row-based replication formats, particularly when it comes to triggers (which are used by pt-osc to ensure changes are written to the new temporary tables). is this something you've had to deal with?

http://dev.mysql.com/doc/refman/5.5/en/replication-features-triggers.html

#1221372 pt-online-schema-change should error if server is a slave in row based replication
https://bugs.launchpad.net/percona-toolkit/+bug/1221372

#1225577 pt-online-schema-change can silently drop rows
https://bugs.launchpad.net/percona-toolkit/+bug/1225577

what would a schema update process look like for you guys with pxc?

regards.

June 17, 2014 | Unregistered Commenterives

How much data (ballpark figure) do you have in the cluster? I'm trying to migrate the data into a similar setup (around 60 GB) with very large tables and hit different kinds of snags all the time with temp spaces and cluster not responding while using mysqldumps. The old setup contains a rather old version of MySQL.

June 23, 2014 | Unregistered CommenterMika Perälä

ives,

We only ran artificial benchmarks against the cluster before giving it production write traffic. Those benchmarks showed the cluster was just as performant as a standalone server, but it should be noted that sysbench doesn't stress RBR vs. SBR limitations. (large # of rows modified in a single transaction)

We didn't need to deal with any trigger issues since none of our tables use triggers. pt-osc won't work if you have triggers defined on a table. Bug #1221372 doesn't affect us since we always run pt-osc on the master.

Schema upgrades for us are different based on the type of operation. Create/drop tables are run using Rails migrations. Alter tables are run using pt-osc, and we manually insert the Rails migration row to mark that migration as done.

June 30, 2014 | Unregistered CommenterDoug Barth

Mika,

Our DB is a few hundred GBs with tables of varying size (a couple megs up to > 100 GB). I haven't hit any issues with temp spaces. For mysqldump, perhaps you are hitting issues with flow control? If you let mysqldump run against a cluster node and it does a FTWRL, that will quickly cause flow control to kick in since that node is unable to commit pending writesets.

If you want to pull backups from a cluster node, you will need to deal with that issue. You could desync the node from the cluster for the duration of the backup, switch to another backup system like xtrabackup, or take a consistent backup using transactions (requires you have only InnoDB tables). For us, we have a host dedicated to backups that is an async slave of the cluster. That way any extra strain from the backup procedure doesn't affect our production cluster.

Hope that helps!

July 1, 2014 | Unregistered CommenterDoug Barth

Mika,

We are running a very similar system. From the description of Doug it sounds like they are following the PXC "Reference Architecture", similarly to us. For us it has been working really flawlessly regardless of dataset size. Some off-the-shelf web applications do no play 100% nicely with PXC and most of those constraints were listed in the OP. I wanted to expand on few points:
1- Query Cache is "more" supported on the latest releases and can be configured in startup configuration. We worked around the earlier limitation by having an operator set QC size to non-zero after MySQL process started.
2- Temporary MyISAM tables do not replicate. This causes errors being logged on other nodes when DDL is pointed at those tables. It also prevents applications that rely on temporary tables from scaling beyond a single node.
3- Badly coded applications may hit a certification error (conflict) on the cluster and not retry the statement. Autocommit may be configured to retry automatically for applications that rely on it.
4- FULLTEXT Indexes on InnoDB are only supported on 5.6. But 5.6 seems not completely mature to me - judging by the amount of fixed bugs in PXC builds. But at least it seems Percona is hard at work on it.

There was a bug that was just fixed in 5.6 that hit us, but it manifested itself as a mysql process crash during rolling update of the cluster so the update was just rolled back with zero downtime. Percona fixed this quite quickly and I was really happy with their communication (it was possible to find contact information for those working on PXC) even though we are not a paying customer.

To answer your question (partially, kind of): Percona has created an excellent tool "XtraBackup" that does online backups. There really is no going back to mysqldump after having taste of XtraBackup. Have a look, there really is no comparison to this tool for doing backups.


Doug,

If you use PHP, have you tried using mysqlnd_ms instead of HAProxy on client hosts? Any comments on mysqlnd_ms? It seems interesting but I am not sure I am willing to give up the stability, control and visibility that HAProxy on client hosts provides.


-V

July 24, 2014 | Unregistered CommenterVille O.

we do have a percona Xtra DB Cluster (Master- Master -Master) Setup in one country and we want to setup a disaster recovery setup in some other country.Can you please suggest a best possible way to achieve it? Thanks in advance!

November 18, 2014 | Unregistered CommenterNarasimhaTeja

PostPost a New Comment

Enter your information below to add a new comment.
Author Email (optional):
Author URL (optional):
Post:
 
Some HTML allowed: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <code> <em> <i> <strike> <strong>