File size: 11,993 Bytes
0e99f05 b0666d9 0e99f05 b0666d9 0e99f05 b0666d9 0e99f05 b0666d9 0e99f05 b0666d9 0e99f05 b0666d9 0e99f05 b0666d9 0e99f05 | 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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 | """
Locust load test for the STT / LLM / TTS stack.
GPU layout under test:
GPU0 β LLM (:8000) + STT (:8002)
GPU1 β TTS (:8003) dedicated (stream+pcm by default)
Metrics (appear as separate rows in the Locust Statistics table):
llm_ttfb β time to first SSE token (ms) [= TTFT]
llm_e2e β full streaming completion (ms)
tts_ttfa β time to first PCM/WAV byte (ms)
tts_e2e β full audio download (ms)
stt_ttfb β time to first response byte (ms)
stt_e2e β full transcription (ms)
pipe_e2e β STT β LLM β TTS pipeline (ms)
Usage:
./run_locust_ui.sh # web UI
./run_loadtest.sh # headless concurrency ramp (recommended)
TTS_STREAM=0 ./run_loadtest.sh # compare against full-WAV path
"""
from __future__ import annotations
import io
import json
import math
import os
import struct
import time
import wave
from typing import Any
import requests
from locust import HttpUser, between, events, task
# ---------------------------------------------------------------------------
# Endpoints / models (override via env)
# ---------------------------------------------------------------------------
LLM_BASE = os.getenv("LLM_BASE", "http://127.0.0.1:8000")
STT_BASE = os.getenv("STT_BASE", "http://127.0.0.1:8002")
TTS_BASE = os.getenv("TTS_BASE", "http://127.0.0.1:8003")
LLM_MODEL = os.getenv("LLM_MODEL", "ibm-granite/granite-4.1-8b")
TTS_MODEL = os.getenv("TTS_MODEL", "Rabe3/Moss-Saudi-3")
# Empty β resolve from STT /v1/models on first use (local snapshot path).
STT_MODEL = os.getenv("STT_MODEL", "")
LLM_PROMPT = os.getenv(
"LLM_PROMPT",
"Reply in one short Arabic sentence saying hello.",
)
TTS_TEXT = os.getenv("TTS_TEXT", "Marhaba, kayf halak?")
LLM_MAX_TOKENS = int(os.getenv("LLM_MAX_TOKENS", "64"))
# Wait between tasks per user (think time). Lower = more aggressive.
WAIT_MIN = float(os.getenv("WAIT_MIN", "0.5"))
WAIT_MAX = float(os.getenv("WAIT_MAX", "1.5"))
_stt_model_cache: str | None = None
_fixture_wav: bytes | None = None
def _fire(
name: str,
response_time_ms: float,
response_length: int = 0,
exception: BaseException | None = None,
request_type: str = "METRIC",
) -> None:
events.request.fire(
request_type=request_type,
name=name,
response_time=response_time_ms,
response_length=response_length,
exception=exception,
context={},
)
def _resolve_stt_model() -> str:
global _stt_model_cache
if STT_MODEL:
return STT_MODEL
if _stt_model_cache:
return _stt_model_cache
r = requests.get(f"{STT_BASE}/v1/models", timeout=30)
r.raise_for_status()
_stt_model_cache = r.json()["data"][0]["id"]
return _stt_model_cache
def _sine_wav(seconds: float = 1.0, sr: int = 16000, hz: float = 440.0) -> bytes:
"""Small mono PCM WAV used as STT input."""
n = int(sr * seconds)
buf = io.BytesIO()
with wave.open(buf, "wb") as w:
w.setnchannels(1)
w.setsampwidth(2)
w.setframerate(sr)
for i in range(n):
sample = int(8000 * math.sin(2 * math.pi * hz * i / sr))
w.writeframes(struct.pack("<h", sample))
return buf.getvalue()
def _fixture() -> bytes:
global _fixture_wav
if _fixture_wav is None:
path = os.getenv("STT_WAV", "")
if path and os.path.isfile(path):
with open(path, "rb") as f:
_fixture_wav = f.read()
else:
_fixture_wav = _sine_wav(1.0)
return _fixture_wav
def measure_llm_stream(
session: requests.Session, prompt: str | None = None
) -> dict[str, Any]:
"""Streaming chat/completions β llm_ttfb + llm_e2e."""
payload = {
"model": LLM_MODEL,
"messages": [{"role": "user", "content": prompt or LLM_PROMPT}],
"max_tokens": LLM_MAX_TOKENS,
"temperature": 0,
"stream": True,
}
t0 = time.perf_counter()
ttfb_ms: float | None = None
tokens = 0
text_parts: list[str] = []
exc: BaseException | None = None
try:
with session.post(
f"{LLM_BASE}/v1/chat/completions",
json=payload,
stream=True,
timeout=(10, 300),
) as resp:
if resp.status_code >= 400:
body = resp.text[:300]
raise RuntimeError(f"LLM HTTP {resp.status_code}: {body}")
for raw in resp.iter_lines(decode_unicode=True):
if not raw:
continue
if ttfb_ms is None:
ttfb_ms = (time.perf_counter() - t0) * 1000
line = raw.strip()
if not line.startswith("data:"):
continue
data = line[5:].strip()
if data == "[DONE]":
break
try:
chunk = json.loads(data)
except json.JSONDecodeError:
continue
delta = (chunk.get("choices") or [{}])[0].get("delta") or {}
content = delta.get("content") or ""
if content:
tokens += 1
text_parts.append(content)
except BaseException as e:
exc = e
if ttfb_ms is None:
ttfb_ms = (time.perf_counter() - t0) * 1000
e2e_ms = (time.perf_counter() - t0) * 1000
_fire("llm_ttfb", ttfb_ms or e2e_ms, exception=exc)
_fire("llm_e2e", e2e_ms, response_length=tokens, exception=exc)
if exc:
raise exc
return {
"ttfb_ms": ttfb_ms,
"e2e_ms": e2e_ms,
"tokens": tokens,
"text": "".join(text_parts),
}
# Default: real Moss streaming (PCM). Set TTS_STREAM=0 for full-WAV path.
TTS_STREAM = os.getenv("TTS_STREAM", "1").lower() not in ("0", "false", "no")
def measure_tts(session: requests.Session, text: str | None = None) -> dict[str, Any]:
"""TTS /v1/audio/speech β tts_ttfa (first audio byte) + tts_e2e.
With TTS_STREAM=1 (default): stream=true + response_format=pcm.
With TTS_STREAM=0: full WAV (previous load-test path).
"""
payload: dict[str, Any] = {"model": TTS_MODEL, "input": text or TTS_TEXT}
if TTS_STREAM:
payload["stream"] = True
payload["response_format"] = "pcm"
t0 = time.perf_counter()
ttfa_ms: float | None = None
audio = bytearray()
exc: BaseException | None = None
try:
with session.post(
f"{TTS_BASE}/v1/audio/speech",
json=payload,
stream=True,
timeout=(10, 300),
) as resp:
if resp.status_code >= 400:
body = resp.text[:300]
raise RuntimeError(f"TTS HTTP {resp.status_code}: {body}")
for chunk in resp.iter_content(chunk_size=4 * 1024):
if not chunk:
continue
if ttfa_ms is None:
ttfa_ms = (time.perf_counter() - t0) * 1000
audio.extend(chunk)
if ttfa_ms is None:
ttfa_ms = (time.perf_counter() - t0) * 1000
if TTS_STREAM:
if len(audio) < 1024:
raise RuntimeError(f"TTS PCM too short ({len(audio)} bytes)")
elif len(audio) < 44 or audio[:4] != b"RIFF":
raise RuntimeError(f"TTS did not return WAV (got {len(audio)} bytes)")
except BaseException as e:
exc = e
if ttfa_ms is None:
ttfa_ms = (time.perf_counter() - t0) * 1000
e2e_ms = (time.perf_counter() - t0) * 1000
_fire("tts_ttfa", ttfa_ms or e2e_ms, response_length=len(audio), exception=exc)
_fire("tts_e2e", e2e_ms, response_length=len(audio), exception=exc)
if exc:
raise exc
return {
"ttfa_ms": ttfa_ms,
"e2e_ms": e2e_ms,
"bytes": len(audio),
"audio": bytes(audio),
}
def measure_stt(session: requests.Session, wav: bytes | None = None) -> dict[str, Any]:
"""Multipart /v1/audio/transcriptions β stt_ttfb + stt_e2e."""
model = _resolve_stt_model()
audio = wav or _fixture()
t0 = time.perf_counter()
ttfb_ms: float | None = None
body = b""
text = ""
exc: BaseException | None = None
try:
with session.post(
f"{STT_BASE}/v1/audio/transcriptions",
files={"file": ("input.wav", audio, "audio/wav")},
data={"model": model},
stream=True,
timeout=(10, 300),
) as resp:
if resp.status_code >= 400:
raise RuntimeError(f"STT HTTP {resp.status_code}: {resp.text[:300]}")
for chunk in resp.iter_content(chunk_size=4096):
if not chunk:
continue
if ttfb_ms is None:
ttfb_ms = (time.perf_counter() - t0) * 1000
body += chunk
if ttfb_ms is None:
ttfb_ms = (time.perf_counter() - t0) * 1000
parsed = json.loads(body.decode("utf-8"))
text = parsed.get("text", "")
except BaseException as e:
exc = e
if ttfb_ms is None:
ttfb_ms = (time.perf_counter() - t0) * 1000
e2e_ms = (time.perf_counter() - t0) * 1000
_fire("stt_ttfb", ttfb_ms or e2e_ms, response_length=len(body), exception=exc)
_fire("stt_e2e", e2e_ms, response_length=len(body), exception=exc)
if exc:
raise exc
return {"ttfb_ms": ttfb_ms, "e2e_ms": e2e_ms, "text": text}
# ---------------------------------------------------------------------------
# Locust users β pick one (or several) in the UI via class picker
# ---------------------------------------------------------------------------
class LLMUser(HttpUser):
"""Isolate LLM concurrency (GPU0). Watch llm_ttfb / llm_e2e."""
host = LLM_BASE
wait_time = between(WAIT_MIN, WAIT_MAX)
weight = 3
def on_start(self) -> None:
self.session = requests.Session()
def on_stop(self) -> None:
self.session.close()
@task
def chat(self) -> None:
measure_llm_stream(self.session)
class TTSUser(HttpUser):
"""Isolate TTS concurrency (GPU1, shared with STT). Watch tts_ttfa / tts_e2e."""
host = TTS_BASE
wait_time = between(WAIT_MIN, WAIT_MAX)
weight = 2
def on_start(self) -> None:
self.session = requests.Session()
def on_stop(self) -> None:
self.session.close()
@task
def speak(self) -> None:
measure_tts(self.session)
class STTUser(HttpUser):
"""Isolate STT concurrency (GPU1, shared with TTS). Watch stt_ttfb / stt_e2e."""
host = STT_BASE
wait_time = between(WAIT_MIN, WAIT_MAX)
weight = 2
def on_start(self) -> None:
self.session = requests.Session()
_resolve_stt_model()
_fixture()
def on_stop(self) -> None:
self.session.close()
@task
def transcribe(self) -> None:
measure_stt(self.session)
class PipelineUser(HttpUser):
"""Realistic voice turn: STT β LLM β TTS. Watch pipe_e2e plus per-stage metrics."""
host = LLM_BASE
wait_time = between(WAIT_MIN, WAIT_MAX)
weight = 1
def on_start(self) -> None:
self.session = requests.Session()
_resolve_stt_model()
_fixture()
def on_stop(self) -> None:
self.session.close()
@task
def voice_turn(self) -> None:
t0 = time.perf_counter()
exc: BaseException | None = None
try:
stt = measure_stt(self.session)
prompt = (stt.get("text") or "").strip() or LLM_PROMPT
llm = measure_llm_stream(self.session, prompt=prompt)
speak = (llm.get("text") or "").strip() or TTS_TEXT
measure_tts(self.session, text=speak[:200])
except BaseException as e:
exc = e
e2e_ms = (time.perf_counter() - t0) * 1000
_fire("pipe_e2e", e2e_ms, exception=exc)
if exc:
raise exc
|