No results for

Powered byAlgolia

Distribute workloads across VUs

k6 can schedule different load patterns for different VU functions. A test with multiple workloads might better simulate traffic in the real world, where user behavior is rarely uniform. For example, most traffic to an e-commerce site might come from users who only search for items and read reviews. A small percentage of users might actively shop, performing actions that involve writes to the database and calls to different APIs.

The following sections provide examples of how to structure k6 scripts to split logic across VUs. To inspect the results for a certain behavior, you can create a custom metric or use Tags to filter by scenario, code block, or individual request.

Aim for simplicity

These techniques can create very complex configurations. However, more complexity creates more ambiguity in result interpretation

Split logic across scenarios

note

In this context, workload refers to the traffic pattern simulated by a scenario.

One way to distribute traffic is to use scenarios to schedule different workloads for different functions.

  1. Define multiple scenarios in your options.
  2. Use the scenario exec property to execute different VU functions with a workload.

For example, imagine a social media site that typically receives 100 concurrent users. Of those, 80 might visit their contacts page, and 20 might view the news. To configure such a distribution, make two scenarios with different throughput or VUs:

import http from "k6/http";
export const options = {
//scenario to view contacts
scenarios: {
contacts: {
executor: "shared-iterations",
exec: "contacts",
vus: 80,
iterations: 100,
},
//scenario to view news
news: {
executor: "shared-iterations",
exec: "news",
vus: 20,
iterations: 100,
},
},
};
//use the exec property to run different scenarios for different functions
export function contacts() {
http.get("https://test.k6.io/contacts.php");
}
export function news() {
http.get("https://test.k6.io/news.php");
}

To view granular results for a specific scenario, you can filter by the built-in scenario tag.

Distribute logic by VU ID

In some cases, writing a scenario for each behavior might be inconvenient or impractical. As an alternative, you can distribute logic across a range of VUs with the execution context variables from the k6/execution module. With the exec object, you can scope logic to a specific instance, scenario, or across all VUs.

For example, this statement assigns behavior to the first 25 VUs in a test.

if (exec.vu.idInTest <= 25) {
//do something;
}

For more flexibility, you can use modulo expressions to distribute VUs according to percentages. For example, the following script distributes logic according to different user profiles:

  • 40 percent of users check the news.
  • 60 percent play a coinflip game.
    • Half bet heads, and half bet tails.
behavior-based-on-exec-context.js
1import http from "k6/http";
2import exec from "k6/execution";
3
4export const options = {
5 scenarios: {
6 quickRamp: {
7 executor: "ramping-arrival-rate",
8 startRate: 0,
9 timeUnit: "1s",
10 preAllocatedVUs: 100,
11 stages: [
12 { target: 10, duration: "10s" },
13 { target: 10, duration: "15s" },
14 { target: 0, duration: "5s" },
15 ],
16 },
17 },
18};
19
20export default function () {
21 if (exec.vu.idInTest % 10 < 4) {
22 // 0-3 range, read the news
23 http.get("http://test.k6.io/news");
24 } else if (exec.vu.idInTest % 10 < 7) {
25 // 4-6 range, bet heads
26 http.get("http://test.k6.io/flip_coin.php?bet=heads");
27 } else {
28 // 7-9 range, bet tails
29 http.get("http://test.k6.io/flip_coin.php?bet=tails");
30 }
31}

Randomize behavior

To add a degree of random behavior, consider one of the randomizing functions from the k6 utils.

For example, this script randomly assigns one behavior to happen one-third of the time, and another to happen all other times.

random-behavior.js
import { sleep } from "k6";
import { randomIntBetween } from "https://jslib.k6.io/k6-utils/1.2.0/index.js";
export default function () {
if (randomIntBetween(1, 3) % 3 > 1) {
console.log("1 in 3 times");
} else {
console.log("2 in 3 times");
}
}

For a more sophisticated example of randomizing, read this forum post.