Skip to content

Commit 30eb7b8

Browse files
[feat] fix executor intro
Put dense detail at bottom
1 parent d0b3d1c commit 30eb7b8

File tree

1 file changed

+14
-11
lines changed
  • src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios

1 file changed

+14
-11
lines changed

src/data/markdown/translated-guides/en/02 Using k6/14 Scenarios/01 Executors.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,9 @@ export const options = {
2323
```
2424

2525

26-
<Blockquote mod="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
3727

28+
The following table lists all k6 executors and links to their documentation.
3829

3930
| Name | Value | Description |
4031
| ---------------------------------------------------------------------------- | ----------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
@@ -45,3 +36,15 @@ But, you _cannot_ reliably map, for example, the tenth VU to the tenth iteration
4536
| [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. |
4637
| [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. |
4738
| [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+
<Blockquote mod="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.
49+
50+
</Blockquote>

0 commit comments

Comments
 (0)