Help build the future of open source observability software Open positions

Check out the open source projects we support Downloads

Grot cannot remember your choice unless you click the consent notice at the bottom.

Stress testing: A beginner's guide

Stress testing: A beginner's guide

30 Jan, 2024 4 min

This content was originally published on k6.io.
30 Jan 2024

Stress testing assesses how the system performs when loads are heavier than usual.

The load pattern of a stress test resembles that of an average-load test. The main difference is higher load. To account for higher load, the ramp-up period takes longer in proportion to the load increase. Similarly, after the test reaches the desired load, it might last for slightly longer than it would in the average-load test.

Stress test overview chart in Grafana k6.

In some testing conversations, stress tests might also be called rush-hour, surge, or scale tests.

When to perform a stress test

Stress tests are a type of load testing that verifies the stability and reliability of the system under conditions of heavy use. Systems may receive higher than usual workloads on unusual moments, such as process deadlines, paydays, rush hours, ends of the workweek, and many other behaviors that might cause frequent higher-than-average traffic.

Considerations

When you run a stress test, consider the following:

  • Load should be higher than what the system experiences on average.

    Some testers might have default targets for stress tests—say an increase of 50 or 100 percent compared to an average load. Overall, there’s no fixed percentage.

    The load simulated in a stress test depends on the situations that the system may be subjected to during the test. Sometimes this may be just a few percentage points above that average. Other times, it can be 50 to 100 percent higher, as mentioned. Some stressful situations can even be orders of magnitude higher.

    In the end, define the load in stress testing according to the risk load patterns that the system may receive.

  • Only run stress tests after running average-load tests.

    Identify performance issues under average-load tests before trying anything more challenging. This sequence is essential.

  • Re-use the average-load test script.

    Modify the parameters to have higher load or VUs.

  • Expect performance to be worse than an average-load test.

    This test determines how much the performance degrades with the extra load and whether the system survives it. The goal is a well-performing system that produces consistent response times when handling a constant workload for an extended period.

Stress testing in k6

The load in a stress test starts in a way that resembles load in an average-load test. The difference is that it reaches a higher level of load over the course of the test.

  1. Increase the script’s activity further in a slower ramp-up until it reaches an above-average number of users or throughput.
  2. Maintain that load for a while.
  3. Depending on the test case, stop or ramp down gradually.

Here is a test script for the open source load testing tool Grafana k6:

JavaScript
import http from 'k6/http';
import { sleep } from 'k6';

export const options = {
  // Key configurations for Stress in this section
  stages: [
    { duration: '10m', target: 200 }, // traffic ramp-up from 1 to a higher 200 users over 10 minutes.
    { duration: '30m', target: 200 }, // stay at higher 200 users for 30 minutes
    { duration: '5m', target: 0 }, // ramp-down to 0 users
  ],
};

export default () => {
  const urlRes = http.get('https://test-api.k6.io');
  sleep(1);
  // MORE STEPS
  // Here you can have more steps or complex script
  // Step1
  // Step2
  // etc.
};

For more complex behavior, refer to more load testing examples in our k6 documentation.

The VU or throughput chart of a stress test looks similar to this:

Stress test chart in Grafana k6.

Note that similar to the average-load test, the stress test starts at 0 but increases beyond the point tested in the average-load type. The ramp-up and ramp-down periods are longer to allow for a more realistic response.

Note: Run stress tests only after smoke and average-load tests. Running this test type earlier may be wasteful and make it hard to pinpoint problems if they appear at low volumes or at loads under the average utilization.

Stress test results: analysis

Like the average-load test, an initial outcome for the stress test shows up during the ramp-up period to identify response time degradation as the load increases further than the average utilization. Commonly, the performance degrades, and even the system’s stability crashes as we push the system further than the average-load test.

During the full load period, verification is vital if the system’s performance and resource consumption stays stable with a higher load.

Now that you know that your system can handle outstanding load events, the teams generally check if the system performs well over extended periods. That is, they run a soak test.

Grafana Cloud is the easiest way to get started with Grafana k6 and performance testing. We have a generous forever-free tier and plans for every use case. Sign up for free now!