You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors.md
+14-11Lines changed: 14 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,18 +23,9 @@ export const options = {
23
23
```
24
24
25
25
26
-
<Blockquotemod="note"title="VUs might not distribute uniformely over iterations">
27
-
28
-
For any given scenario, you can't guarantee that a specific VU can run a specific iteration.
29
-
30
-
With [`SharedArray`](/javascript-api/k6-data/sharedarray/) and [execution context variables](/using-k6/execution-context-variables/), you can map a specific VU to a specific value in your test data.
31
-
So the tenth VU could use the tenth item in your array (or the sixth iteration to the sixth item).
32
-
33
-
But, you _cannot_ reliably map, for example, the tenth VU to the tenth iteration.
34
-
35
-
</Blockquote>
36
-
26
+
## All executors
37
27
28
+
The following table lists all k6 executors and links to their documentation.
@@ -45,3 +36,15 @@ But, you _cannot_ reliably map, for example, the tenth VU to the tenth iteration
45
36
|[Constant Arrival Rate](/using-k6/scenarios/executors/constant-arrival-rate)|`constant-arrival-rate`| A fixed number of iterations are executed<br/> in a specified period of time. |
46
37
|[Ramping Arrival Rate](/using-k6/scenarios/executors/ramping-arrival-rate)|`ramping-arrival-rate`| A variable number of iterations are <br/> executed in a specified period of time. |
47
38
|[Externally Controlled](/using-k6/scenarios/executors/externally-controlled)|`externally-controlled`| Control and scale execution at runtime<br/> via [k6's REST API](/misc/k6-rest-api) or the [CLI](https://k6.io/blog/how-to-control-a-live-k6-test). |
39
+
40
+
41
+
<Blockquotemod="note"title="VUs might not distribute uniformely over iterations">
42
+
43
+
For any given scenario, you can't guarantee that a specific VU can run a specific iteration.
44
+
45
+
With [`SharedArray`](/javascript-api/k6-data/sharedarray/) and [execution context variables](/using-k6/execution-context-variables/), you can map a specific VU to a specific value in your test data.
46
+
So the tenth VU could use the tenth item in your array (or the sixth iteration to the sixth item).
47
+
48
+
But, you _cannot_ reliably map, for example, the tenth VU to the tenth iteration.
0 commit comments