Archive for January, 2010
Performance Testing: An OSE Case Study
Posted by Nick Gerner in Uncategorized on January 25th, 2010
I’ve spent the last week performance testing Open Site Explorer which we launched earlier this week. Using some of the same tools and techniques I’ve described in the past, I discovered plenty of issues. Below I share the process I followed and the issues I found. Then I connect that to our actual 24-hour-later analytics data.
The process I follow is:
- Understand Objectives of Perf Testing
- Create Performance Targets
- Gather Performance Measurements
- Analyze Results
- Close the Loop with Actual Results
Objectives of Perf Testing
- Understand performance characteristics of the system:
- Response Time: how long a user waits for pages to load
- Throughput: how many pages the system can deliver per second
- Identify Bottlenecks and Scaling: CPU, memory, network, disk, database, external services, per node and cluster-wide
- Find bugs under load, including repro scenarios (e.g. under high load, under moderate load, frequency of occurrence)
- Gain confidence in launch
Performance Targets
Hopefully you can put together realistic, aggressive performance targets:
- Response Time: how long you want your users to wait for pages to load
- Sustained Load: how many users and page views you expect to serve in general
- Peak Load: how many users and page views you expect to serve at peak
- Uptime or Request Success rate: It’s naive to think that every request will succeed, so plan for failures realistically
Remember, you want these to be realistic, but also aggressive. What is the very best case scenario for launch? It’s better to plan for more traffic than you actually expect, than to find yourself short. Even so, you might want to have standby capacity, or have some kind of scale contingency plan.
Given that our application incorporates data from an external data source (the Linkscape API ) we can’t expect sub second response times. But page loads should not take more than two and a half seconds in general.
David, our ops guy, Scott in marketing, and I sat down and put together a simple launch model to predict our load. We anticipate we’ll have significantly more traffic at launch than we will in the near future after launch. We use a lot of data we already have:
- analytics on past tool launches
- analytics from our blog and site in general
- estimates on partner promotion reach
- generous conversion rate estimation (click-throughs from any promotion to the tool itself)
We expect:
- 22,000 users on launch day
- 10 page views per person
- 200,000 reports run
Again, looking at our analytics we know that we can expect nearly 35% of those users and views between 6am and 9am Pacific. That gives us throughput targets:
- 8 requests per second over those three hours
- 24 requests per second at peak
Gather Performance Measurements
With realistic performance targets, it’s time to insturment and load the application. This is a deeper topic than I’ll discuss here, but at a high level you want to:
- Put your system under load
- Collect relevant performance data
The diagram below gives a quick overview of the architecture of our performance test, including our load test client, Open Site Explorer (OSE), the Linkscape API (LSAPI), and what we’re measuring in each part of our system. Although the specifics of your system may differ, you’ll want to collect roughly the same data.
There are lots of tools out there to load a system, and discussing them is out of the scope of this post (maybe something for the future). I actually think they’re all missing something, so we’ve written our own load generation tool. But we’ll assume you’ve got a good methodology for loading your application. And we’ll assume the behavior of your tool mirrors real-world user behavior, or at least something close to it.
Eventually you’ll want to load your whole load balanced system (if you’re using a load balancer). But I always like to start with understanding the performance of just one node. That gives you a baseline and a best-case, linear scaling projection for throughput. From there you can see if, and how your system scales sub-linearly (e.g. because of a database bottleneck, etc.)
Caching is another important factor. You’ll want to test both cold and warm cache scenarios. And make sure your test mix includes enough diversity to reflect user behavior! Your users are not going to reload the same page, with the same inputs ten thousand times in a row. They are likely to provide a very long-tailed load of work (very little stuff will be requested with any frequency), so most input permutations will be very infrequent.
Response time (or latency) and throughput usually interact. Typically to maximize one, you’ll have to trade off the other: sure, one node can push 100 requests/second if each request can take 10 seconds to respond. And vice versa, you might be able to get sub-second response time if you process your requests one-at-a-time. Neither of these is desirable.
You’ll want to vary your test to run through different latency-throughput trade-offs. I’ve found that this really boils down to the concurrency of your testing. For one node (server), a concurrency of 1-5 is unrealistic, but should give you as good response time as you can expect. Concurrency of 10-30 per node should give you some more realistic load. Concurrency of 50-100 per node should give you a good idea of what a heavily loaded system looks like. Of course, this all depends on your hardware, configuration, and your application.
The measurements you collect while testing are very important. What you’re looking for are:
- System Characteristics and Bottlenecks (cpu, disk, memory, network)
- Client-Side performance and responses (response time, throughput, HTTP status codes)
- Server-Side errors (application and web server logs)
A deeper discussion of all these factors is valuable, but out of scope for this post. But keep an eye out for a deeper dive in the near future.
Analyze Results
Now that you’ve loaded your application, and gathered measurements around system characteristics, client-side performance, and server-side errors, you should have enough data to understand how your system performs. Assuming you don’t have significant error rates (you’re probably looking for 99.95%+ successful requests for a reasonable mix of input), the two most important conclusions you’ll get are the simplest to analyze:
- Median Response time
- Throughput (# of successful requests / test run time)
The first is important because you know that at least 50% of your requests will be faster than this. Of course 50% are slower too, so make sure that response times fall off gracefully from 50% to 90%. The second is also important because it’s going to tell you if you have enough capacity, and how your application will scale. If one node can serve 20 requests/second, then hopefully two nodes can serve close to 40 requests/second, and so on. Of course linear scaling is an ideal which you’ll want to verify with more testing of your load balanced app.
If you’ve tried a few different levels of concurrency, you should have a pretty good idea of the trade-off between response time and throughput. And you’ll have an idea of the min/max values on throughput and response time your system should be able to put out.
In our case we immediately found response time and throughput issues with concurrency above 10. This turned out to be a problem with the PassengerMaxPoolSize which defaults to 6 (!!). A little more testing and we discovered incorrect throttling settings in LSAPI which caused our app to only serve a handful of requests before returning 503 errors. Once we sorted all that out, our database max connections were quickly all used up (another default config to blame).
We also discovered (from per-process CPU usage and disk utilization) that our database is working pretty hard compared to our web servers. This doesn’t impact our launch criteria (those perf targets above). But this is something we’ll want to investigate in the future since scaling the database is non-trivial.
In the end we discovered:
- Significant configuration errors (thread pool sizes, memory usage issues, load balancer configs, throttling, etc.)
- Several application errors (API error response handling, rare corner cases, minor perf problems)
- Median response time of 2.5 seconds under moderate load
- Median response time of 4 seconds under heavy load
- 15-30 pages per second on a single node, depending on caching
- 25-40 pages per second in a two node, load balanced configuration (this is sub-linear scaling)
Those first two bullets are great to catch before launch. Finding these now is why we test at all. The rest put us well within our aggressive performance targets. At this point perf testing (i.e. Me) can sign off for launch.
There’s a lot of other analysis you can do from the data you’ve collected. But response time and throughput are the most important factors for launch.
Closing the Loop
After collecting all that data and matching it up to our targets, we feel confident that we can handle launch. And indeed, launch went smoothly for Open Site Explorer. The final, and very important thing we have to do is to close the loop on measurement and projection with actual results. Within 24 hours of launch we had:
- No significant errors or downtime
- No performance related customer complaints
- 31 thousand users
- 100 thousand reports
Those first two bullets are exactly what I love to see. The bugs we found in testing would have had significant user impact. Fixing them saved the engineering team the stress of live hotfixes, saved customer support a flood of angry complaints, and saved the company embarrassment.
The other bullets speak to the success of our projections. Although total reports were lower than projected, that only means our aggressive projections were indeed aggressive. That’s exactly what you want. We were prepared for more traffic than we had. This is much better than the alternative.
These results, and the customer feedback we collected, tell me we have a compelling product with no significant performance issues.
Canonicalizable
Posted by Nick Gerner in Uncategorized on January 18th, 2010
Inspired by an article at Jane and Robot about domain canonicalization (and the fact that I’m the lead developer on the Linkscape API), I decided I’d write a small application using the Linkscape Free API to help with a common problem: checking canonicalization of website home pages.
I spend a lot of time answering SEOmoz Q&A and I see canonicalization problems come up all the time. No matter what the size of the site, or savvy of the engineering team, this is just an easy problem to miss. But it’s also easy to fix. You just have to find those pesky canonicalization errors.
The tool doesn’t scrape any sites. All of the data is pulled from the Linkscape API. And everything here is possible using only the free API. All of the code is available in my github repository. There’s plenty of documentation there and that’s a good place for any discussion about the code. Feel free to take it and use it in whole or in part on your site in any application. You’ll just have to sign up for a free API key.
Cloud Computing Operations and Performance Talk
Posted by Nick Gerner in Uncategorized on January 4th, 2010
I’m planning on pitching an excellent conference series on enterprise computing, operations, and performance. I’m hoping to talk about our cloud infrastructure at SEOmoz for Linkscape. In a nutshell we’re taking advantage of Amazon Web Services:
- For long term storage and backup we use S3
- For batch mode processing we periodically bring up an EC2 cluster
- For serving our API we have an EC2 cluster which we scale up and down
- Our API uses S3 as a high performance, mirrored block device
- For load balancing we use ELB
In a talk at Velocity, I’d like to dig into performance and operational characteristics of our set up, as well as some of the trade-offs:
- What low cost systems do we use for operational and performance monitoring?
- What is the throughput, response time, etc. of our system, end-to-end?
- How do each of the software and cloud infrastructure components contribute to end-to-end performance?
- How do we test the performance of our cloud infrastructure?
- What are some of the cost trade-offs we’ve made between cloud versus a traditional managed hosting, or co-location solution?
I’m curious what other people what to hear more about. So please feel free to make suggestions in the comments.
Blog Migration
Posted by Nick Gerner in Uncategorized on January 3rd, 2010
It’s like a database migration, only… not as well defined.
For some time my wife and I blogged together at twopieceset.blogspot.com. However, that’s always led to an awkward mix of technology, knitting, and kittens (I’m not telling you who’s responsible for each). In the future I’ll try to be true to the stated topic: “Software Engineering and Entrepreneurship”.
Some interesting posts I’ll leave on twopieceset:
- S3 Performance Benchmarks
- Lessons Learned While Indexing the Web
- Performance Measurement for Small and Large Deployments
- Why This Report is So Slow: Let the Database Handle the Data
- High Performance Computing at Amazon: A Cost Study
- Anatomy of Cross Site Request Forgery
- InfoCamp 2007: My Session on Calendaring


