mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-23 04:39:04 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 82bff87f19 | |||
| 78b6879043 | |||
| 520b93c5fc |
@@ -34,8 +34,8 @@ CONCURRENCY=8
|
|||||||
DURATION="60s"
|
DURATION="60s"
|
||||||
ROUNDS=3
|
ROUNDS=3
|
||||||
COOLDOWN_SECS=20
|
COOLDOWN_SECS=20
|
||||||
DATASET_SETUP_DURATION="10s"
|
|
||||||
HEALTH_TIMEOUT_SECS=180
|
HEALTH_TIMEOUT_SECS=180
|
||||||
|
DATASET_OBJECTS_PER_WORKER=8
|
||||||
FAIL_PCT=10
|
FAIL_PCT=10
|
||||||
WARN_PCT=5
|
WARN_PCT=5
|
||||||
ALLOW_REGRESSION=false
|
ALLOW_REGRESSION=false
|
||||||
@@ -100,9 +100,6 @@ Benchmark:
|
|||||||
--duration <dur> warp duration per cell (default 60s).
|
--duration <dur> warp duration per cell (default 60s).
|
||||||
--rounds <n> rounds per cell; must be >= 3 (default 3).
|
--rounds <n> rounds per cell; must be >= 3 (default 3).
|
||||||
--cooldown <n> cooldown seconds between rounds/sizes (default 20).
|
--cooldown <n> cooldown seconds between rounds/sizes (default 20).
|
||||||
--dataset-setup-duration <dur>
|
|
||||||
isolated Warp PUT warm-up for get/mixed legs
|
|
||||||
(default 10s; not included in the measurement).
|
|
||||||
--concurrency <n> warp concurrency (default 8).
|
--concurrency <n> warp concurrency (default 8).
|
||||||
--warp-bin <path> warp binary (default warp).
|
--warp-bin <path> warp binary (default warp).
|
||||||
|
|
||||||
@@ -173,7 +170,6 @@ while [[ $# -gt 0 ]]; do
|
|||||||
--duration) DURATION="$2"; shift 2 ;;
|
--duration) DURATION="$2"; shift 2 ;;
|
||||||
--rounds) ROUNDS="$2"; shift 2 ;;
|
--rounds) ROUNDS="$2"; shift 2 ;;
|
||||||
--cooldown) COOLDOWN_SECS="$2"; shift 2 ;;
|
--cooldown) COOLDOWN_SECS="$2"; shift 2 ;;
|
||||||
--dataset-setup-duration) DATASET_SETUP_DURATION="$2"; shift 2 ;;
|
|
||||||
--health-timeout) HEALTH_TIMEOUT_SECS="$2"; shift 2 ;;
|
--health-timeout) HEALTH_TIMEOUT_SECS="$2"; shift 2 ;;
|
||||||
--fail-pct) FAIL_PCT="$2"; shift 2 ;;
|
--fail-pct) FAIL_PCT="$2"; shift 2 ;;
|
||||||
--warn-pct) WARN_PCT="$2"; shift 2 ;;
|
--warn-pct) WARN_PCT="$2"; shift 2 ;;
|
||||||
@@ -366,29 +362,18 @@ measure() {
|
|||||||
--duration "$DURATION" --rounds "$ROUNDS" --cooldown-secs "$COOLDOWN_SECS"
|
--duration "$DURATION" --rounds "$ROUNDS" --cooldown-secs "$COOLDOWN_SECS"
|
||||||
--out-dir "$cell"
|
--out-dir "$cell"
|
||||||
)
|
)
|
||||||
[[ "$mode" == "put" ]] || args+=(--extra-args "--noclear")
|
if [[ "$mode" != "put" ]]; then
|
||||||
|
# Warp defaults to 2,500 setup objects per round. At 10 MiB that writes
|
||||||
|
# 25 GiB before every 12-second measurement, so the matrix cannot finish
|
||||||
|
# inside the workflow budget. Eight objects per worker keeps preparation
|
||||||
|
# bounded while retaining a multi-object working set for relative A/B.
|
||||||
|
args+=(--extra-args "--objects $((CONCURRENCY * DATASET_OBJECTS_PER_WORKER)) --noclear")
|
||||||
|
fi
|
||||||
[[ -n "$baseline_csv" ]] && args+=(--baseline-csv "$baseline_csv")
|
[[ -n "$baseline_csv" ]] && args+=(--baseline-csv "$baseline_csv")
|
||||||
run "$ENHANCED_BENCH" "${args[@]}" >&2
|
run "$ENHANCED_BENCH" "${args[@]}" >&2
|
||||||
echo "$cell"
|
echo "$cell"
|
||||||
}
|
}
|
||||||
|
|
||||||
prepare_dataset() {
|
|
||||||
local leg="$1" workload="$2" mode="$3" size="$4" sync_label="$5" bucket="$6"
|
|
||||||
[[ "$mode" != "put" ]] || return 0
|
|
||||||
|
|
||||||
local setup_cell="$OUT_DIR/$workload/$sync_label/$leg/dataset-setup"
|
|
||||||
local args=(
|
|
||||||
--tool warp --warp-bin "$WARP_BIN" --warp-mode put
|
|
||||||
--endpoint "$ADDRESS" --access-key "$ACCESS_KEY" --secret-key "$SECRET_KEY"
|
|
||||||
--region "$REGION" --bucket "$bucket" --sizes "$size" --concurrency "$CONCURRENCY"
|
|
||||||
--duration "$DATASET_SETUP_DURATION" --rounds 1 --cooldown-secs 0
|
|
||||||
--extra-args "--noclear"
|
|
||||||
--out-dir "$setup_cell"
|
|
||||||
)
|
|
||||||
log "preparing isolated dataset: $sync_label/$workload/$leg bucket=$bucket"
|
|
||||||
run "$ENHANCED_BENCH" "${args[@]}" >&2
|
|
||||||
}
|
|
||||||
|
|
||||||
write_schedule_header() {
|
write_schedule_header() {
|
||||||
echo "sync_label,drive_sync,workload,mode,size,leg,phase,binary,out_dir,bucket,dataset_setup" >"$OUT_DIR/abba_schedule.csv"
|
echo "sync_label,drive_sync,workload,mode,size,leg,phase,binary,out_dir,bucket,dataset_setup" >"$OUT_DIR/abba_schedule.csv"
|
||||||
}
|
}
|
||||||
@@ -399,7 +384,7 @@ append_schedule() {
|
|||||||
phase="$(phase_for_leg "$leg")"
|
phase="$(phase_for_leg "$leg")"
|
||||||
bin="$(binary_for_leg "$leg")"
|
bin="$(binary_for_leg "$leg")"
|
||||||
local dataset_setup="none"
|
local dataset_setup="none"
|
||||||
[[ "$mode" == "put" ]] || dataset_setup="warp-put"
|
[[ "$mode" == "put" ]] || dataset_setup="warp-native-bounded"
|
||||||
echo "$sync_label,$drive_sync,$workload,$mode,$size,$leg,$phase,$bin,$OUT_DIR/$workload/$sync_label/$leg,$bucket,$dataset_setup" >>"$OUT_DIR/abba_schedule.csv"
|
echo "$sync_label,$drive_sync,$workload,$mode,$size,$leg,$phase,$bin,$OUT_DIR/$workload/$sync_label/$leg,$bucket,$dataset_setup" >>"$OUT_DIR/abba_schedule.csv"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -481,7 +466,8 @@ dataset_namespace=$DATASET_NAMESPACE
|
|||||||
local_run_data_root=$RUN_DATA_ROOT
|
local_run_data_root=$RUN_DATA_ROOT
|
||||||
bucket_isolation=per-leg
|
bucket_isolation=per-leg
|
||||||
bucket_prefix=rustfs-abba-$DATASET_NAMESPACE
|
bucket_prefix=rustfs-abba-$DATASET_NAMESPACE
|
||||||
dataset_setup=get-and-mixed-via-warp-put
|
dataset_setup=get-and-mixed-via-bounded-warp-native
|
||||||
|
dataset_objects=$((CONCURRENCY * DATASET_OBJECTS_PER_WORKER))
|
||||||
endpoint=$ADDRESS
|
endpoint=$ADDRESS
|
||||||
warp_version=$("$WARP_BIN" --version 2>/dev/null | head -n1 || echo unknown)
|
warp_version=$("$WARP_BIN" --version 2>/dev/null | head -n1 || echo unknown)
|
||||||
EOF
|
EOF
|
||||||
@@ -502,7 +488,6 @@ for ds_spec in "${DRIVE_SYNC_MATRIX[@]}"; do
|
|||||||
log "=== $sync_label $workload leg $leg ($(phase_for_leg "$leg")) ==="
|
log "=== $sync_label $workload leg $leg ($(phase_for_leg "$leg")) ==="
|
||||||
bucket="$(bucket_for_leg "$sync_label" "$workload" "$leg")"
|
bucket="$(bucket_for_leg "$sync_label" "$workload" "$leg")"
|
||||||
bring_up "$leg" "$drive_sync" "$workload" "$mode" "$size" "$sync_label" "$bucket"
|
bring_up "$leg" "$drive_sync" "$workload" "$mode" "$size" "$sync_label" "$bucket"
|
||||||
prepare_dataset "$leg" "$workload" "$mode" "$size" "$sync_label" "$bucket"
|
|
||||||
append_schedule "$sync_label" "$drive_sync" "$workload" "$mode" "$size" "$leg" "$bucket"
|
append_schedule "$sync_label" "$drive_sync" "$workload" "$mode" "$size" "$leg" "$bucket"
|
||||||
|
|
||||||
baseline_csv=""
|
baseline_csv=""
|
||||||
|
|||||||
@@ -672,7 +672,7 @@ extract_report_line() {
|
|||||||
local regex="$1"
|
local regex="$1"
|
||||||
local file="$2"
|
local file="$2"
|
||||||
awk -v regex="$regex" '
|
awk -v regex="$regex" '
|
||||||
/^Report:/ {
|
/^(Report|Operation):/ {
|
||||||
in_report = 1
|
in_report = 1
|
||||||
next
|
next
|
||||||
}
|
}
|
||||||
@@ -703,9 +703,9 @@ normalize_duration_metric() {
|
|||||||
extract_metrics() {
|
extract_metrics() {
|
||||||
local log_file="$1"
|
local log_file="$1"
|
||||||
|
|
||||||
local average_line reqs_line throughput reqps latency req_p90 req_p99 reqps_num
|
local average_line request_line throughput reqps latency req_p90 req_p99 reqps_num
|
||||||
average_line="$(extract_report_line '^[[:space:]]*[*][[:space:]]+Average:' "$log_file")"
|
average_line="$(extract_report_line '^[[:space:]]*[*][[:space:]]+Average:' "$log_file")"
|
||||||
reqs_line="$(extract_report_line '^[[:space:]]*[*][[:space:]]+Reqs:' "$log_file")"
|
request_line="$(extract_report_line '^[[:space:]]*[*][[:space:]]+(Reqs:[[:space:]]+)?Avg:' "$log_file")"
|
||||||
|
|
||||||
if [[ -n "$average_line" ]]; then
|
if [[ -n "$average_line" ]]; then
|
||||||
throughput="$(echo "$average_line" | sed -E 's/^.*Average:[[:space:]]*//; s/,[[:space:]]*.*$//')"
|
throughput="$(echo "$average_line" | sed -E 's/^.*Average:[[:space:]]*//; s/,[[:space:]]*.*$//')"
|
||||||
@@ -715,20 +715,16 @@ extract_metrics() {
|
|||||||
reqps="$(extract_first '[0-9]+(\.[0-9]+)?[[:space:]]*(obj/s|req/s|ops/s|requests/s)' "$log_file")"
|
reqps="$(extract_first '[0-9]+(\.[0-9]+)?[[:space:]]*(obj/s|req/s|ops/s|requests/s)' "$log_file")"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n "$reqs_line" ]]; then
|
if [[ -n "$request_line" ]]; then
|
||||||
latency="$(echo "$reqs_line" | rg -o 'Avg:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' | sed -E 's/^Avg:[[:space:]]+//')"
|
latency="$(echo "$request_line" | rg -o 'Avg:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' | sed -E 's/^Avg:[[:space:]]+//')"
|
||||||
req_p90="$(echo "$reqs_line" | rg -o '90%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' | sed -E 's/^90%:[[:space:]]+//')"
|
req_p90="$(echo "$request_line" | rg -o '90%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' | sed -E 's/^90%:[[:space:]]+//')"
|
||||||
req_p99="$(echo "$reqs_line" | rg -o '99%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' | sed -E 's/^99%:[[:space:]]+//')"
|
req_p99="$(echo "$request_line" | rg -o '99%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' | sed -E 's/^99%:[[:space:]]+//')"
|
||||||
else
|
else
|
||||||
latency="$(rg -o 'Reqs:[[:space:]]+Avg:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' "$log_file" | head -n1 | sed -E 's/^Reqs:[[:space:]]+Avg:[[:space:]]+//')"
|
latency="$(rg -o 'Reqs:[[:space:]]+Avg:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' "$log_file" | head -n1 | sed -E 's/^Reqs:[[:space:]]+Avg:[[:space:]]+//')"
|
||||||
req_p90="$(rg -o '90%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' "$log_file" | head -n1 | sed -E 's/^90%:[[:space:]]+//')"
|
req_p90="$(rg -o '90%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' "$log_file" | head -n1 | sed -E 's/^90%:[[:space:]]+//')"
|
||||||
req_p99="$(rg -o '99%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' "$log_file" | head -n1 | sed -E 's/^99%:[[:space:]]+//')"
|
req_p99="$(rg -o '99%:[[:space:]]+[0-9]+(\.[0-9]+)?(ms|us|µs|s)' "$log_file" | head -n1 | sed -E 's/^99%:[[:space:]]+//')"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -z "$latency" ]]; then
|
|
||||||
latency="$(extract_first '[0-9]+(\.[0-9]+)?[[:space:]]*(ms|us|µs|s)' "$log_file")"
|
|
||||||
fi
|
|
||||||
|
|
||||||
throughput="$(trim "${throughput:-N/A}")"
|
throughput="$(trim "${throughput:-N/A}")"
|
||||||
reqps="$(trim "${reqps:-N/A}")"
|
reqps="$(trim "${reqps:-N/A}")"
|
||||||
latency="$(trim "${latency:-N/A}")"
|
latency="$(trim "${latency:-N/A}")"
|
||||||
@@ -1128,6 +1124,8 @@ run_one_attempt() {
|
|||||||
"--concurrent" "$CONCURRENCY"
|
"--concurrent" "$CONCURRENCY"
|
||||||
"--duration" "$DURATION"
|
"--duration" "$DURATION"
|
||||||
"--region" "$REGION"
|
"--region" "$REGION"
|
||||||
|
"--no-color"
|
||||||
|
"--analyze.v"
|
||||||
)
|
)
|
||||||
if [[ "$INSECURE" == "true" ]]; then
|
if [[ "$INSECURE" == "true" ]]; then
|
||||||
cmd+=("--insecure")
|
cmd+=("--insecure")
|
||||||
@@ -1212,6 +1210,12 @@ run_one_attempt() {
|
|||||||
req_p99_ms="$(to_ms "$req_p99_human")"
|
req_p99_ms="$(to_ms "$req_p99_human")"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ "$DRY_RUN" != "true" && "$TOOL" == "warp" && "$status" == "ok" ]] \
|
||||||
|
&& rg -q '^[[:space:]]*(Total[[:space:]]+)?Errors:[[:space:]]+[1-9][0-9]*[.]?([[:space:]]|$)' "$log_file"; then
|
||||||
|
status="failed"
|
||||||
|
exit_code=1
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ "$DRY_RUN" != "true" && "$status" == "ok" ]]; then
|
if [[ "$DRY_RUN" != "true" && "$status" == "ok" ]]; then
|
||||||
if [[ "$throughput_bps" == "N/A" && "$reqps" == "N/A" ]]; then
|
if [[ "$throughput_bps" == "N/A" && "$reqps" == "N/A" ]]; then
|
||||||
status="failed"
|
status="failed"
|
||||||
@@ -1318,10 +1322,21 @@ compare_baseline() {
|
|||||||
|
|
||||||
dr="N/A"; dl="N/A"; dt="N/A"; dp90="N/A"; dp99="N/A"; ne="N/A"; be="N/A"; de="N/A"
|
dr="N/A"; dl="N/A"; dt="N/A"; dp90="N/A"; dp99="N/A"; ne="N/A"; be="N/A"; de="N/A"
|
||||||
if (br!="N/A" && n_req!="N/A" && br+0!=0) dr=sprintf("%.2f", ((n_req-br)/br)*100)
|
if (br!="N/A" && n_req!="N/A" && br+0!=0) dr=sprintf("%.2f", ((n_req-br)/br)*100)
|
||||||
if (bl!="N/A" && n_lat!="N/A" && bl+0!=0) dl=sprintf("%.2f", ((n_lat-bl)/bl)*100)
|
if (bl!="N/A" && n_lat!="N/A") {
|
||||||
|
if (bl+0!=0) dl=sprintf("%.2f", ((n_lat-bl)/bl)*100)
|
||||||
|
else if (n_lat+0==0) dl="0.00"
|
||||||
|
}
|
||||||
if (bt!="N/A" && n_thr!="N/A" && bt+0!=0) dt=sprintf("%.2f", ((n_thr-bt)/bt)*100)
|
if (bt!="N/A" && n_thr!="N/A" && bt+0!=0) dt=sprintf("%.2f", ((n_thr-bt)/bt)*100)
|
||||||
if (bp90!="N/A" && n_p90!="N/A" && bp90+0!=0) dp90=sprintf("%.2f", ((n_p90-bp90)/bp90)*100)
|
# Warp v1 rounds sub-millisecond latency to 0s. Two zero readings are
|
||||||
if (bp99!="N/A" && n_p99!="N/A" && bp99+0!=0) dp99=sprintf("%.2f", ((n_p99-bp99)/bp99)*100)
|
# the same below-resolution bucket; a nonzero candidate remains invalid.
|
||||||
|
if (bp90!="N/A" && n_p90!="N/A") {
|
||||||
|
if (bp90+0!=0) dp90=sprintf("%.2f", ((n_p90-bp90)/bp90)*100)
|
||||||
|
else if (n_p90+0==0) dp90="0.00"
|
||||||
|
}
|
||||||
|
if (bp99!="N/A" && n_p99!="N/A") {
|
||||||
|
if (bp99+0!=0) dp99=sprintf("%.2f", ((n_p99-bp99)/bp99)*100)
|
||||||
|
else if (n_p99+0==0) dp99="0.00"
|
||||||
|
}
|
||||||
if (n_ok!="N/A" && n_fail!="N/A" && n_ok+n_fail>0) ne=sprintf("%.2f", (n_fail/(n_ok+n_fail))*100)
|
if (n_ok!="N/A" && n_fail!="N/A" && n_ok+n_fail>0) ne=sprintf("%.2f", (n_fail/(n_ok+n_fail))*100)
|
||||||
if (bok!="N/A" && bfail!="N/A" && bok+bfail>0) be=sprintf("%.2f", (bfail/(bok+bfail))*100)
|
if (bok!="N/A" && bfail!="N/A" && bok+bfail>0) be=sprintf("%.2f", (bfail/(bok+bfail))*100)
|
||||||
if (ne!="N/A" && be!="N/A") de=sprintf("%.2f", ne-be)
|
if (ne!="N/A" && be!="N/A") de=sprintf("%.2f", ne-be)
|
||||||
|
|||||||
@@ -58,8 +58,13 @@ rg -qx 'evidence_mode=dry-run' "$OUT_DIR/manifest.env"
|
|||||||
rg -qx 'formal_evidence=false' "$OUT_DIR/manifest.env"
|
rg -qx 'formal_evidence=false' "$OUT_DIR/manifest.env"
|
||||||
rg -qx 'performance_conclusion=not_measured_dry_run' "$OUT_DIR/manifest.env"
|
rg -qx 'performance_conclusion=not_measured_dry_run' "$OUT_DIR/manifest.env"
|
||||||
rg -qx 'bucket_isolation=per-leg' "$OUT_DIR/manifest.env"
|
rg -qx 'bucket_isolation=per-leg' "$OUT_DIR/manifest.env"
|
||||||
rg -qx 'dataset_setup=get-and-mixed-via-warp-put' "$OUT_DIR/manifest.env"
|
rg -qx 'dataset_setup=get-and-mixed-via-bounded-warp-native' "$OUT_DIR/manifest.env"
|
||||||
[[ "$(rg -c -- '--extra-args --noclear' "$TRACE_FILE")" == "64" ]]
|
rg -qx 'dataset_objects=64' "$OUT_DIR/manifest.env"
|
||||||
|
[[ "$(rg -c -- '--extra-args --objects\\ 64\\ --noclear' "$TRACE_FILE")" == "32" ]]
|
||||||
|
if rg -q -- 'dataset-setup' "$TRACE_FILE"; then
|
||||||
|
echo "unexpected redundant dataset setup command" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
! rg -q -- 'rustfs-bench' "$TRACE_FILE"
|
! rg -q -- 'rustfs-bench' "$TRACE_FILE"
|
||||||
|
|
||||||
if "$RUNNER" \
|
if "$RUNNER" \
|
||||||
|
|||||||
@@ -74,13 +74,28 @@ FAKE_WARP="${TMP_DIR}/fake-warp"
|
|||||||
cat >"$FAKE_WARP" <<'EOF'
|
cat >"$FAKE_WARP" <<'EOF'
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
[[ " $* " == *" --analyze.v "* ]]
|
||||||
|
[[ " $* " == *" --no-color "* ]]
|
||||||
|
if [[ "${FAKE_WARP_ZERO_LATENCY:-0}" == "1" ]]; then
|
||||||
|
cat <<'LOG'
|
||||||
|
Operation: GET. Concurrency: 8. Ran: 7s
|
||||||
|
Requests considered: 1000:
|
||||||
|
* Average: 160.00 MiB/s, 40960.00 obj/s
|
||||||
|
* Avg: 0s, 50%: 0s, 90%: 0s, 99%: 0s, Fastest: 0s, Slowest: 1ms, StdDev: 0s
|
||||||
|
LOG
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
cat <<'LOG'
|
cat <<'LOG'
|
||||||
- PUT Average: 161 Obj/s, 5.0MiB/s; Current 161 Obj/s, 5.0MiB/s.
|
- PUT Average: 161 Obj/s, 5.0MiB/s; Current 161 Obj/s, 5.0MiB/s.
|
||||||
Report: GET. Concurrency: 64. Ran: 7s
|
Operation: GET. Concurrency: 64. Ran: 7s
|
||||||
|
Requests considered: 1000:
|
||||||
* Average: 653.90 MiB/s, 20925.58 obj/s
|
* Average: 653.90 MiB/s, 20925.58 obj/s
|
||||||
* Reqs: Avg: 3.5ms, 50%: 2.0ms, 90%: 3.6ms, 99%: 24.1ms, Fastest: 0.2ms, Slowest: 607.7ms, StdDev: 20.6ms
|
* Avg: 3.5ms, 50%: 2.0ms, 90%: 3.6ms, 99%: 24.1ms, Fastest: 0.2ms, Slowest: 607.7ms, StdDev: 20.6ms
|
||||||
Throughput, split into 7 x 1s:
|
Throughput, split into 7 x 1s:
|
||||||
LOG
|
LOG
|
||||||
|
if [[ "${FAKE_WARP_ERRORS:-0}" == "1" ]]; then
|
||||||
|
echo 'Total Errors: 1.'
|
||||||
|
fi
|
||||||
EOF
|
EOF
|
||||||
chmod +x "$FAKE_WARP"
|
chmod +x "$FAKE_WARP"
|
||||||
|
|
||||||
@@ -103,6 +118,32 @@ chmod +x "$FAKE_WARP"
|
|||||||
|
|
||||||
rg -q '^32767B,warp,1,1,128,ok,0,[^,]+,[^,]+,653.90 MiB/s,685663846.400000,20925.58,3.5 ms,3.500000,[^,]+,3.6 ms,3.600000,24.1 ms,24.100000$' "${TMP_DIR}/fake-warp-run/round_results.csv"
|
rg -q '^32767B,warp,1,1,128,ok,0,[^,]+,[^,]+,653.90 MiB/s,685663846.400000,20925.58,3.5 ms,3.500000,[^,]+,3.6 ms,3.600000,24.1 ms,24.100000$' "${TMP_DIR}/fake-warp-run/round_results.csv"
|
||||||
|
|
||||||
|
cat >"${TMP_DIR}/warp-no-details.log" <<'EOF'
|
||||||
|
warp: Starting benchmark in 3s...
|
||||||
|
Operation: PUT. Concurrency: 8
|
||||||
|
* Average: 2.76 MiB/s, 707.03 obj/s
|
||||||
|
EOF
|
||||||
|
"$RUNNER" --extract-metrics-from-log "${TMP_DIR}/warp-no-details.log" >"${TMP_DIR}/warp-no-details.csv"
|
||||||
|
rg -qx '2.76 MiB/s,2894069.760000,707.03,N/A,N/A,N/A,N/A,N/A,N/A' "${TMP_DIR}/warp-no-details.csv"
|
||||||
|
|
||||||
|
if FAKE_WARP_ERRORS=1 "$RUNNER" \
|
||||||
|
--tool warp \
|
||||||
|
--endpoint http://127.0.0.1:9000 \
|
||||||
|
--access-key test-access \
|
||||||
|
--secret-key test-secret \
|
||||||
|
--sizes 32767B \
|
||||||
|
--rounds 1 \
|
||||||
|
--retry-per-round 1 \
|
||||||
|
--retry-sleep-secs 1 \
|
||||||
|
--cooldown-secs 0 \
|
||||||
|
--duration 1s \
|
||||||
|
--out-dir "${TMP_DIR}/fake-warp-errors" \
|
||||||
|
--warp-bin "$FAKE_WARP" >/dev/null 2>&1; then
|
||||||
|
echo "expected Warp request errors to fail the benchmark" >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
rg -q ',failed,1,' "${TMP_DIR}/fake-warp-errors/round_results.csv"
|
||||||
|
|
||||||
"$RUNNER" \
|
"$RUNNER" \
|
||||||
--tool warp \
|
--tool warp \
|
||||||
--endpoint http://127.0.0.1:9000 \
|
--endpoint http://127.0.0.1:9000 \
|
||||||
@@ -132,4 +173,28 @@ awk -F',' '
|
|||||||
END { exit found ? 0 : 1 }
|
END { exit found ? 0 : 1 }
|
||||||
' "${TMP_DIR}/fake-warp-candidate/baseline_compare.csv"
|
' "${TMP_DIR}/fake-warp-candidate/baseline_compare.csv"
|
||||||
|
|
||||||
|
for leg in baseline candidate; do
|
||||||
|
zero_args=(
|
||||||
|
--tool warp
|
||||||
|
--endpoint http://127.0.0.1:9000
|
||||||
|
--access-key test-access
|
||||||
|
--secret-key test-secret
|
||||||
|
--sizes 4KiB
|
||||||
|
--rounds 1
|
||||||
|
--retry-per-round 1
|
||||||
|
--cooldown-secs 0
|
||||||
|
--duration 1s
|
||||||
|
--out-dir "${TMP_DIR}/fake-warp-zero-${leg}"
|
||||||
|
--warp-bin "$FAKE_WARP"
|
||||||
|
)
|
||||||
|
if [[ "$leg" == "candidate" ]]; then
|
||||||
|
zero_args+=(--baseline-csv "${TMP_DIR}/fake-warp-zero-baseline/median_summary.csv")
|
||||||
|
fi
|
||||||
|
FAKE_WARP_ZERO_LATENCY=1 "$RUNNER" "${zero_args[@]}" >/dev/null 2>&1
|
||||||
|
done
|
||||||
|
|
||||||
|
"${SCRIPT_DIR}/hotpath_warp_ab_gate.sh" \
|
||||||
|
--compare-csv "${TMP_DIR}/fake-warp-zero-candidate/baseline_compare.csv" \
|
||||||
|
--require-tail-error >/dev/null
|
||||||
|
|
||||||
echo "object batch benchmark enhanced tests passed"
|
echo "object batch benchmark enhanced tests passed"
|
||||||
|
|||||||
Reference in New Issue
Block a user