Skip to content

Commit 010bd6b

Browse files
committed
Dropping the number of clients in the large-scale and small-scale scenarios
Fixes: cloud-bulldozer#451 Signed-off-by: Raul Sevilla <[email protected]>
1 parent f3991ff commit 010bd6b

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

workloads/router-perf-v2/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ It's possible to tune the default configuration through environment variables. T
4545
| KUBE_BURNER_RELEASE_URL | Kube-burner binary URL | `https://github.com/cloud-bulldozer/kube-burner/releases/download/v0.16/kube-burner-0.16-Linux-x86_64.tar.gz` |
4646
| LARGE_SCALE_THRESHOLD | Number of worker nodes required to consider a large scale scenario | `24` |
4747
| SMALL_SCALE_ROUTES | Number of routes of each termination to create in the small scale scenario | `100` |
48-
| SMALL_SCALE_CLIENTS | Threads/route to use in the small scale scenario | `1 40 200` |
49-
| SMALL_SCALE_CLIENTS_MIX | Threads/route to use in the small scale scenario with mix termination | `1 20 80` |
48+
| SMALL_SCALE_CLIENTS | Threads/route to use in the small scale scenario | `1 100` |
49+
| SMALL_SCALE_CLIENTS_MIX | Threads/route to use in the small scale scenario with mix termination | `1 50` |
5050
| LARGE_SCALE_ROUTES | Number of routes of each termination to create in the large scale scenario | `500` |
51-
| LARGE_SCALE_CLIENTS | Threads/route to use in the large scale scenario | `1 20 80` |
52-
| LARGE_SCALE_CLIENTS_MIX | Threads/route to use in the large scale scenario with mix termination | `1 10 20` |
51+
| LARGE_SCALE_CLIENTS | Threads/route to use in the large scale scenario | `1 20` |
52+
| LARGE_SCALE_CLIENTS_MIX | Threads/route to use in the large scale scenario with mix termination | `1 10` |
5353
| DEPLOYMENT_REPLICAS | Number of pod replicas per deployment | `1` |
5454
| TLS_REUSE | Reuse TLS session | `true` |
5555
| SAMPLES | Number of samples to perform of each test | `2` |

workloads/router-perf-v2/common.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ get_scenario(){
1010
if [[ ${NUM_NODES} -ge ${LARGE_SCALE_THRESHOLD} ]]; then
1111
log "Large scale scenario detected: #workers >= ${LARGE_SCALE_THRESHOLD}"
1212
export NUMBER_OF_ROUTES=${LARGE_SCALE_ROUTES:-500}
13-
CLIENTS=${LARGE_SCALE_CLIENTS:-"1 20 80"}
14-
CLIENTS_MIX=${LARGE_SCALE_CLIENTS_MIX:-"1 10 20"}
13+
CLIENTS=${LARGE_SCALE_CLIENTS:-"1 20"}
14+
CLIENTS_MIX=${LARGE_SCALE_CLIENTS_MIX:-"1 10"}
1515
else
1616
log "Small scale scenario detected: #workers < ${LARGE_SCALE_THRESHOLD}"
1717
export NUMBER_OF_ROUTES=${SMALL_SCALE_ROUTES:-100}
18-
CLIENTS=${SMALL_SCALE_CLIENTS:-"1 40 200"}
19-
CLIENTS_MIX=${SMALL_SCALE_CLIENTS_MIX:-"1 20 80"}
18+
CLIENTS=${SMALL_SCALE_CLIENTS:-"1 100"}
19+
CLIENTS_MIX=${SMALL_SCALE_CLIENTS_MIX:-"1 50"}
2020
fi
2121
}
2222

0 commit comments

Comments
 (0)