File tree Expand file tree Collapse file tree 1 file changed +8
-13
lines changed
src/components/shared/blocking-aws-blockquote Expand file tree Collapse file tree 1 file changed +8
-13
lines changed Original file line number Diff line number Diff line change @@ -6,19 +6,14 @@ const BlockingAwsBlockquote = () => (
6
6
mod = "Attention"
7
7
title = "Performance considerations and recommended practices"
8
8
>
9
- The APIs provided by this jslib operate synchronously, which means k6 must
10
- wait for operations that use the client classes to finish before proceeding
11
- with the rest of the script.
12
- < p >
13
- In some cases, such as downloading large files from S3, this could affect
14
- performance and test results. To minimize the impact on test performance,
15
- we recommend using these operations in the
16
- < span className = "code-inline" > setup</ span > and{ ' ' }
17
- < span className = "code-inline" > teardown</ span > { ' ' }
18
- < a href = "/docs/using-k6/test-lifecycle/" > lifecycle functions</ a > . These
19
- functions run before and after the test run and thus do not influence test
20
- results.
21
- </ p >
9
+ In some cases, such as downloading large files from S3, this could affect
10
+ performance and test results. To minimize the impact on test performance, we
11
+ recommend using these operations in the
12
+ < span className = "code-inline" > setup</ span > and{ ' ' }
13
+ < span className = "code-inline" > teardown</ span > { ' ' }
14
+ < a href = "/docs/using-k6/test-lifecycle/" > lifecycle functions</ a > . These
15
+ functions run before and after the test run and thus do not influence test
16
+ results.
22
17
</ Blockquote >
23
18
) ;
24
19
You can’t perform that action at this time.
0 commit comments