-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (37 loc) · 849 Bytes
/
Makefile
File metadata and controls
43 lines (37 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
capacity_v2_macrostrat:
uv sync
export LOGFILE=access.log
export START_USERS=50
export STEP_USERS=50
export MAX_USERS=1000
export STEP_DURATION_S=60
export SPAWN_RATE=10
# Optional tuning
export TIME_COMPRESSION_FACTOR=0.5
export MAX_DELAY_PER_REQUEST=2
uv run locust \
-f locustfile_capacity.py \
--host https://v2.macrostrat.org
capacity_v2_tiles:
uv sync
uv run locust \
--master \
-f locustfile_capacity.py \
--host https://tiles.v2.macrostrat.org &
uv run locust \
-f locustfile_capacity.py \
--worker &
uv run locust \
-f locustfile_capacity.py \
--worker &
uv run locust \
-f locustfile_capacity.py \
--worker &
uv run locust \
-f locustfile_capacity.py \
--worker
capacity_v1_tiles:
uv sync
uv run locust \
-f locustfile_capacity.py \
--host https://tiles.macrostrat.org