Fix an overloaded server

Overview #
This guide shows you how to fix an overloaded server in 4 steps:

Assess: Determine the server’s bottleneck.
Stabilize: Implement quick fixes to mitigate impact.
Improve: Augment and optimize server capabilities.
Monitor: Use automated tools…

Overview

This guide shows you how to fix an overloaded server in 4 steps:

  1. Assess: Determine the server’s bottleneck.
  2. Stabilize: Implement quick fixes to mitigate impact.
  3. Improve: Augment and optimize server capabilities.
  4. Monitor: Use automated tools to help prevent future issues.

If you have questions or feedback on this guide, or you want to share your own tips and tricks, please leave a comment in PR #2479.

Assess

When traffic overloads a server, one or more of the following can become a bottleneck: CPU, network, memory, or disk I/O. Identifying which of these is the bottleneck makes it possible to focus efforts on the most impactful mitigations.

  • CPU: CPU usage that is consistently over 80% should be investigated and fixed. Server performance often degrades once CPU usage reaches ~80-90%, and becomes more pronounced as usuage gets closer to 100%. The CPU utilization of serving a single request is negligible, but doing this at the scale encountered during traffic spikes can sometimes overwhelm a server. Offloading serving to other infrastructure, reducing expensive operations, and limiting the quantity of requests will reduce CPU utilization.
  • Network: During periods of high traffic, the network throughput required to fulfill user requests can exceed capacity. Some sites, depending on the hosting provider, may also hit caps regarding cumulative data transfer. Reducing the size and quantity of data transferred to and from the server will remove this bottleneck.
  • Memory: When a system doesn’t have enough memory, data has to be offloaded to disk for storage. Disk is considerably slower to access than memory, and this can slow down an entire application. If memory becomes completely exhausted, it can result in Out of Memory (OOM) errors. Adjusting memory allocation, fixing memory leaks, and upgrading memory can remove this bottleneck.
  • Disk I/O: The rate at which data can be read or written from disk is constrained by the disk itself. If disk I/O is a bottleneck, increasing the amount of data cached in memory can alleviate this issue (at the cost of increased memory utilization). If this doesn’t work, it may be necessary to upgrade your disks.

The techniques in this guide focus on addressing CPU and network bottlenecks. For most sites, CPU and network will be the most relevant bottlenecks during a traffic spike.

Running top on the affected server is a good starting place for investigating bottlenecks. If available, supplement this with historical data from your hosting provider or monitoring tooling.

Stabilize

An overloaded server can quickly lead to cascading failures elsewhere in the system. Thus, it’s important to stabilize the server before attempting to make more significant changes.

Rate Limiting

Rate limiting protects infrastructure by limiting the number of incoming requests. This is increasingly important as server performance degrades: as response times increase, users tend to aggressively refresh the page – increasing the server load even further.

Fix

Although rejecting a request is relatively inexpensive, the best way to protect your server is to handle rate limiting somewhere upstream from it – for instance, via a load balancer, reverse proxy, or CDN.

Instructions:

Further reading:

HTTP Caching

Look for ways to more aggressively cache content. If a resource can be served from an HTTP cache (whether it’s the browser cache or a CDN), then it doesn’t need to be requested from the origin server, which reduces server load.

HTTP headers like Cache-Control, Expires, and ETag indicate how a resource should be cached by an HTTP cache. Auditing and fixing these headers will improve caching.

Although service workers can also be used for caching, they utilize a separate cache and are a supplement, rather than a replacement, for proper HTTP caching. For this reason, when handling an overloaded server, efforts should be focused on optimizing HTTP caching.

Diagnose

Run Lighthouse and look at the Serve static assets with an efficient cache policy audit to view a list of resources with a short to medium time to live (TTL). For each listed resource, consider if the TTL should be increased. As a rough guideline:

  • Static resources should be cached with a long TTL (1 year).
  • Dynamic resources should be cached with a short TTL (3 hours).

Fix

Set the Cache-Control header’s max-age directive to the appropriate number of seconds.

Instructions:

Note: The max-age directive is just one of many caching directives. There are many other directives and headers that will affect the caching behavior of your application. For a more in-depth explanation of caching strategy it is highly recommended that you read HTTP Caching.

Graceful Degradation

Graceful degradation is the strategy of temporarily reducing functionality in order to shed excess load from a system. This concept can be applied in many different ways: for example, serving a static text page instead of a full-featured application, disabling search or returning fewer search results, or disabling certain expensive or non-essential features. Emphasis should be placed on removing functionalities that can be safely and easily removed with minimal business impact.

Improve

Use a content delivery network (CDN)

Serving static assets can be offloaded from your server to a content delivery network (CDN), thereby reducing the load.

The primary function of a CDN is to deliver content to users quickly by providing a large network of servers that are located close to users. However, most CDNs also offer additional performance-related features like compression, load balancing, and media optimization.

Set up a CDN

CDNs benefit from scale, so operating your own CDN rarely makes sense. A basic CDN configuration is fairly quick to set up (~30 minutes) and consists of updating DNS records to point at the CDN.

Optimize CDN Usage

Diagnose

Identify resources that are not being served from a CDN (but should be) by running WebPageTest. On the results page, click on the square above ‘Effective use of CDN’ to see the list of resources that should be served from a CDN.

Arrow pointing to the 'Effective use of CDN' button
WebPageTest results

Fix

If a resource is not being cached by the CDN, check that the following conditions are met:

Scale compute resources

The decision to scale compute resources should be made carefully. Although it is often necessary to scale compute resources, doing so prematurely can generate unnecessary architectural complexity and financial costs.

Diagnose

A high Time To First Byte (TTFB) can be a sign that a server is nearing its capacity. You can find this information in the Lighthouse Reduce server response times (TTFB) audit.

To investigate further, use a monitoring tool to assess CPU usage. If current or anticipated CPU usage exceeds 80% you should consider increasing your servers.

Fix

Adding a load balancer makes it possible to distribute traffic across multiple servers. A load balancer sits in front of a pool of servers and routes traffic to the appropriate server. Cloud providers offer their own load balancers (GCP, AWS, Azure) or you can set up your own using HAProxy or NGINX. Once a load balancer is in place, additional servers can be added.

In addition to load balancing, most cloud providers offer autoscaling (GCP, AWS, Azure). Autoscaling works in conjunction with load balancing – autoscaling automatically scales compute resources up and down given demand at a given time. That being said, autoscaling is not magical – it takes time for new instances to come online and it requires significant configuration. Because of the additional complexity that autoscaling entails, a simpler load balancer-based setup should be considered first.

Enable compression

Text-based resources should be compressed using gzip or brotli. Gzip can reduce the transfer size of these resources by ~70%.

Diagnose

Use the Lighthouse Enable text compression audit to identify resources that should be compressed.

Fix

Enable compression by updating your server configuration. Instructions:

Optimize images and media

Images make up the majority of the file size of most websites; optimizing images can quickly and significantly reduce the size of a site.

Diagnose

Lighthouse has a variety of audits that flag potential image optimizations. Alternatively, another strategy is to use DevTools to identify the largest image files – these images will likely be good candidates for optimization.

Relevant Lighthouse audits:

Chrome DevTools workflow:

Fix

If you have limited time…

Focus your time on Identifying large and frequently loaded images and manually optimizing them with a tool like Squoosh. Hero images are often good candidates for optimization.

Things to keep in mind:

  • Size: Images should be no larger than necessary.
  • Compression: Generally speaking, a quality level of 80-85 will have a minimal effect on image quality while yielding a 30-40% reduction in file size.
  • Format: Use JPEGs for photos rather than PNG; use MP4 for animated content rather than GIF.

If you have more time…

Consider setting up an image CDN if images make up a substantial portion of your site. Image CDNs are designed for serving and optimizing images and they will offload image serving from the origin server. Setting up an image CDN is straightforward but requires updating existing image URLs to point at the image CDN.

Further reading:

Minify JS and CSS

Minification removes unnecessary characters from JavaScript and CSS.

Diagnose

Use the Minify CSS and Minify JavaScript Lighthouse audits to identify resources that are in need of minification.

Fix

If you have limited time, focus on minifying your JavaScript. Most sites have more JavaScript than CSS, so this will be more impactful.

Monitor

Server monitoring tools provide data collection, dashboards, and alerting regarding server performance. Their usage can help prevent and mitigate future server performance issues.

A monitoring setup should be kept as simple as possible. Excessive data collection and alerting has its costs: the greater the scope or frequency of data collection, the more expensive it is to collect and store; excessive alerting inevitably leads to ignored pages.

Alerting should use metrics that consistently and accurately detect issues. Server response time (latency) is a metric that works particularly well for this: it catches a wide variety of issues and correlates directly with user experience. Alerting based on lower-level metrics like CPU usage can be a useful supplement but will catch a smaller subset of issues. In addition, alerting should be based on the performance observed at the tail (in the other words the 95th or 99th percentiles), rather than averages. Otherwise, averages can easily obscure issues that don’t affect all users.

Fix

All major cloud providers offer their own monitoring tooling (GCP, AWS, Azure). In addition, Netdata is an excellent free and open-source alternative. Regardless of which tool you choose, you will need to install the tool’s monitoring agent on each server that you want to monitor. Once complete, make sure to set up alerting.

Instructions:


Print Share Comment Cite Upload Translate
APA
Katie Hempenius | Sciencx (2024-03-29T05:28:05+00:00) » Fix an overloaded server. Retrieved from https://www.scien.cx/2020/03/31/fix-an-overloaded-server/.
MLA
" » Fix an overloaded server." Katie Hempenius | Sciencx - Tuesday March 31, 2020, https://www.scien.cx/2020/03/31/fix-an-overloaded-server/
HARVARD
Katie Hempenius | Sciencx Tuesday March 31, 2020 » Fix an overloaded server., viewed 2024-03-29T05:28:05+00:00,<https://www.scien.cx/2020/03/31/fix-an-overloaded-server/>
VANCOUVER
Katie Hempenius | Sciencx - » Fix an overloaded server. [Internet]. [Accessed 2024-03-29T05:28:05+00:00]. Available from: https://www.scien.cx/2020/03/31/fix-an-overloaded-server/
CHICAGO
" » Fix an overloaded server." Katie Hempenius | Sciencx - Accessed 2024-03-29T05:28:05+00:00. https://www.scien.cx/2020/03/31/fix-an-overloaded-server/
IEEE
" » Fix an overloaded server." Katie Hempenius | Sciencx [Online]. Available: https://www.scien.cx/2020/03/31/fix-an-overloaded-server/. [Accessed: 2024-03-29T05:28:05+00:00]
rf:citation
» Fix an overloaded server | Katie Hempenius | Sciencx | https://www.scien.cx/2020/03/31/fix-an-overloaded-server/ | 2024-03-29T05:28:05+00:00
https://github.com/addpipe/simple-recorderjs-demo