Weekly Update for 21/06/2010

Happy Summer!

Last week saw some good work done on the Support Questions for 2.2, and we now believe we’ve ironed out the issues that we saw during the 2.1 push—one of them was actually a Django bug we fixed by upgrading.

Last week

  • Helped come up with a solution to the issues with 2.1.
  • Reviewed some UI work on 2.2.
  • Worked with IT to get replication in staging.
  • Got a plan together for a better staging environment early next quarter.
  • Helped Josh with a lightning talk topic for the Summit.
  • Worked on a plan for Q3, and goals with the team.
  • Worked with our stats provider.
  • Pushed out 1.5.4.2 (née 1.5.5.1) a minor update.

This week (me)

  • Get 2.1 out the door and 2.2 on staging.
  • Finish out a Q3 plan after working with the SUMO team.
  • Finish working with our stats provider.
  • Dig into some proper 2.2 bugs.
  • Focus more on the message I’m sending.
  • I’d really like to dig into Fantasai’s question about ellipses some more.

This week (team)

  • Push 2.1.
  • Finish the AAQ form.
  • Finish the answering process.
  • Demo the normal beginning-to-end workflow on staging.

Developing at Scale: Database Replication

When a website is small—like this one, for example—usually the entire thing, from the web server to the database, can live on a single server. Even a single virtual server. One of the first things that happens when a web site gets bigger is this is no longer true.

One reason is load. A popular website will simply require more than a single server, virtual or otherwise, can give, and the only way to keep scaling is to add more servers. For example, if the server runs out of available Apache connections and the number cannot be raised without negatively impacting performance.

Another reason is downtime. If a website is served from a single server, and that server goes down for any reason, planned or otherwise, then the website is down. At some point, downtime is essentially unacceptable—just ask Twitter—and redundancy is required.

Enter Replication

A common response is to set up database replication, where one database server operates as a “master,” and one or more other servers operate as “slaves.” In this setup, all of your writes to the database will go to the master, then “replicate” to the slaves, and all or most of the reads will come from the slaves. (Note that the slaves are doing both all the writes as well as all the reads: slaves are not a good place to recycle sub-par hardware.)

Replication introduces a new type of problem: if you naively send all reads to the slaves then data you just wrote will not be there.

La…wait for it…g

Even if the master and slave are sitting next to each other with a cable connecting them, replication will probably take more time than your code does to reach the next step. At a minimum, you need to assume that replication lag will be hundreds of milliseconds—an eternity when the time from one line in your web app to the next is measured in micro- or nanoseconds. In reality, replication in the real world may well take seconds, especially if your master and slaves are not physically next to each other.

The result is that ACIDity is essentially broken, specifically the Durability part. You cannot simply write data and immediately rely on its existence.

For example, say you have a large discussion forum. If you naively send all reads to the slaves, then someone’s post may take seconds to appear on the site. This is a problem if you’re trying to show a user their post immediately after posting it.

Smarter Reading

The solution is to occasionally read from the master. When you need to access data that was just written, it is probably only available on the master, so that’s where you’ll read it. Within a single HTTP request, this is fairly simple: just force any queries that rely on recently-written data to the master.

Outside of a single HTTP request, this is slightly more complex. If you’re following the practice of redirecting after a POST request to a GET request (which you should) then creating a new forum post and viewing it will be on two different HTTP requests.

One way around this is to set a very short-lived cookie that tells your web app to continue reading from the master. If any write occurs in a request, the response should include this cookie. The exact time-to-live will depend on how long your replication lag usually is—cover at least 4 or 5 standard deviations. Any request that has this cookie should honor it by reading only from the master.

A Pitch

One of the hardest things for new web developers is developing large-scale applications: first, you need a large-scale application! Setting up database replication is a huge pain, and if your site isn’t getting enough traffic, it’s not worth it.

Mozilla is one way aspiring web developers can get some experience working with large-scale web apps. All of our web apps are open source and open to contributions from community members. To get involved, stop by #webdev in IRC!

Weekly Update for 06/14/2010

Last week could have gone better. We tried to push SUMO 2.1 twice only to realize we had some issues with respect to replication that need to get ironed out.

We think we have a fix for these issues and are rounding out the tests for that fix, but we won’t really know unless we can test in a replicated environment. There are bugs open for IT to help us with that, and get replication set up for our staging server.

As Morgamic said, we’ll gather info, document, learn and innovate, then repeat next time.

And, as “unsuccessful” pushes go, these went really well. Both times we gave it an hour, then were able to back everything out and reset in another half-hour, coming in well under the downtime window.

Last week

  • Tried to push 2.1, twice. It didn’t take.
  • Filed IT bugs re: replication in staging.
  • Started thinking about Q3 goals.
  • Got the 2.2 (“questions”) branch rolling on Hudson.
  • Helped get people on the same page w/r/t 2.3 deliverables and timeline. (At least we’ll say I helped.)
  • Got all the people working on chat together.
  • Worked out a potential solution to our replication issues with Jeff and Erik.
  • Triaged 2.2—only about 5 bugs got moved out.
  • Reviewed 2.2 UI work, and a number of subsequent patches.

This week (me)

  • Have a timeline in place for 2.1 and 2.2.
  • Figure out replication in staging with IT.
  • Work out roughly what Q3 will look like.
  • 1.5.5.1.
  • Get enough sleep.

This week (team)

  • Fix our replication issues.
  • Continue on 2.2 and accelerate.
  • Work with Cheng and Howse to get the AAQ done.

Weekly Update for 07/06/2010

I missed last week. I blame the holiday on Monday. Also Erik started, which is very exciting!

Tomorrow afternoon is our planned push for SUMO 2.1, which is our new discussion forum component, and migrating the old data into that component. This is huge, since it’s the first new component serving content creation. (We’ve been running search results on Kitsune for a while now.)

Everything on our staging server feels faster on the Kitsune pages than the old pages. I can’t quite count to 2 loading a Kitsune page. I can usually get to 3 on a Tiki page. That in itself is a huge win, to me. On top of the speed, we’ve made some big leaps in our infrastructure and have done a lot of work that will directly enable 2.2, our support questions milestone

Last two weeks

  • Closed out and reviewed a number of 2.1 bugs. Really, I lost count. It’s been fantastic to see the work spread out across the team.
  • Got 2.1 ready to go out tomorrow!(!!)
  • Fixed a number of small and last-minute 2.1 bugs.
  • Helped Paul finish out the data migration work so he could focus on his last final and graduate! (Congrats, Paul!)
  • Built avatars for users without them.
  • Got email notifications to go out with some help from Jeremy.
  • Welcomed Erik. Helped him get all the development environment stuff worked out.

This week (me)

  • Get everyone introduced to Rypple.
  • Navigate a smooth 2.1 launch.
  • Poll the team about a SUMOdev on-site.
  • Finish reviewing Ricky’s 2.2 UI work.
  • Triage 2.2 and focus the bugs.
  • Help everyone figure out deliverables and timelines for 2.3 mockups as best I can. (Mostly I’ve done what I can here, I think.)

This week (team)

  • Launch 2.1. Smoothly.
  • Go go go on 2.2. On staging the day (evening?) after 2.1 launches.
  • Start spreading around reviews more.
  • Help triage 2.2 and focus it.

Weekly Update for 10/05/2010

Last week

  • Filed lots of 2.1 bugs.
  • Meet with IT and QA in preparation of 2.0 push. (It didn’t go well, but not for lack of planning.)
  • Engineering plan is roughly complete through the end of the quarter.
  • Came up with a plan for an intern project.
  • Reviews.

This week (me)

  • Get things ready for new people starting Monday.
  • Get Sphinx to index the new discussion forums.
  • Make creating new threads work through the UI.
  • Start filing 2.2 bugs.
  • Update Support/Kitsune.
  • Think about ways to improve communication with the larger, more distributed team.
  • Enjoy my long weekend.

This week (team)

  • Push 1.5.4.
  • Finish 2.1 UI.
  • Start 2.1 admin and access control.
  • Get ready for two new people on Monday.