Blame view

benchmarks/reranker/benchmark_reranker_random_titles.py 9.99 KB
00c8ddb9   tangwang   suggest rank opti...
1
2
3
4
5
6
7
8
  #!/usr/bin/env python3
  """
  Single-request rerank latency probe using real title lines (e.g. 1.8w export).
  
  Randomly samples N titles from a text file (one title per line), POSTs to the
  rerank HTTP API, prints wall-clock latency.
  
  Supports multiple N values (comma-separated) and multiple repeats per N.
52ea6529   tangwang   性能测试:
9
  Each invocation runs 3 warmup requests with n=400 first; those are not timed for summaries.
00c8ddb9   tangwang   suggest rank opti...
10
11
12
  
  Example:
    source activate.sh
3abbc95a   tangwang   重构(scripts): 整理sc...
13
14
15
16
    python benchmarks/reranker/benchmark_reranker_random_titles.py 386
    python benchmarks/reranker/benchmark_reranker_random_titles.py 40,80,100
    python benchmarks/reranker/benchmark_reranker_random_titles.py 40,80,100 --repeat 3 --seed 42
    RERANK_BASE=http://127.0.0.1:6007 python benchmarks/reranker/benchmark_reranker_random_titles.py 200
00c8ddb9   tangwang   suggest rank opti...
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
  """
  
  from __future__ import annotations
  
  import argparse
  import json
  import os
  import random
  import statistics
  import sys
  import time
  from pathlib import Path
  from typing import List, Optional, Tuple
  
  import httpx
  
  
  def _load_titles(path: Path) -> List[str]:
      lines: List[str] = []
      with path.open(encoding="utf-8", errors="replace") as f:
          for line in f:
              s = line.strip()
              if s:
                  lines.append(s)
      return lines
  
  
  def _parse_doc_counts(s: str) -> List[int]:
      parts = [p.strip() for p in s.split(",") if p.strip()]
      if not parts:
          raise ValueError("empty doc-count list")
      out: List[int] = []
      for p in parts:
          v = int(p, 10)
          if v <= 0:
              raise ValueError(f"doc count must be positive, got {v}")
          out.append(v)
      return out
  
  
  def _do_rerank(
      client: httpx.Client,
      url: str,
      query: str,
      docs: List[str],
      *,
      top_n: int,
      normalize: bool,
  ) -> Tuple[bool, int, float, Optional[int], str]:
      payload: dict = {"query": query, "docs": docs, "normalize": normalize}
      if top_n > 0:
          payload["top_n"] = top_n
      body = json.dumps(payload, ensure_ascii=False)
      headers = {"Content-Type": "application/json"}
      t0 = time.perf_counter()
      try:
          resp = client.post(url, content=body.encode("utf-8"), headers=headers)
      except httpx.HTTPError:
          raise
      elapsed_ms = (time.perf_counter() - t0) * 1000.0
      text = resp.text or ""
      ok = resp.status_code == 200
      scores_len: Optional[int] = None
      if ok:
          try:
              data = resp.json()
              sc = data.get("scores")
              if isinstance(sc, list):
                  scores_len = len(sc)
          except json.JSONDecodeError:
              scores_len = None
      return ok, resp.status_code, elapsed_ms, scores_len, text
  
  
  def main() -> int:
      parser = argparse.ArgumentParser(
          description="POST /rerank with N random titles from a file and print latency."
      )
      parser.add_argument(
          "n",
          type=str,
          metavar="N[,N,...]",
          help="Doc counts: one integer or comma-separated list, e.g. 40,80,100.",
      )
      parser.add_argument(
          "--repeat",
          type=int,
          default=3,
          help="Number of runs per doc count (default: 3).",
      )
      parser.add_argument(
          "--titles-file",
          type=Path,
          default=Path(os.environ.get("RERANK_TITLE_FILE", "/home/ubuntu/rerank_test/titles.1.8w")),
          help="Path to newline-separated titles (default: %(default)s or env RERANK_TITLE_FILE).",
      )
      parser.add_argument(
          "--url",
          type=str,
          default=os.environ.get("RERANK_BASE", "http://127.0.0.1:6007").rstrip("/") + "/rerank",
          help="Full rerank URL (default: $RERANK_BASE/rerank or http://127.0.0.1:6007/rerank).",
      )
      parser.add_argument(
          "--query",
          type=str,
          default="健身女生T恤短袖",
          help="Rerank query string.",
      )
      parser.add_argument(
          "--seed",
          type=int,
          default=None,
          help="RNG base seed; each (n, run) uses a derived seed when set (optional).",
      )
      parser.add_argument(
          "--top-n",
          type=int,
          default=0,
          help="If > 0, include top_n in JSON body (omit field when 0).",
      )
      parser.add_argument(
          "--no-normalize",
          action="store_true",
          help="Send normalize=false (default: normalize=true).",
      )
      parser.add_argument(
          "--timeout",
          type=float,
          default=float(os.environ.get("RERANK_TIMEOUT_SEC", "240")),
          help="HTTP timeout seconds.",
      )
      parser.add_argument(
          "--print-body-preview",
          action="store_true",
          help="Print first ~500 chars of response body on success (last run only).",
      )
52ea6529   tangwang   性能测试:
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
      parser.add_argument(
          "--tag",
          type=str,
          default=os.environ.get("BENCH_TAG", ""),
          help="Optional label stored in --json-summary-out (default: env BENCH_TAG or empty).",
      )
      parser.add_argument(
          "--json-summary-out",
          type=Path,
          default=None,
          help="Write one JSON object with per-n latencies and aggregates for downstream tables.",
      )
      parser.add_argument(
          "--quiet-runs",
          action="store_true",
          help="Suppress per-run lines; still prints warmup lines and text summaries.",
      )
00c8ddb9   tangwang   suggest rank opti...
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
      args = parser.parse_args()
  
      try:
          doc_counts = _parse_doc_counts(args.n)
      except ValueError as exc:
          print(f"error: invalid N list {args.n!r}: {exc}", file=sys.stderr)
          return 2
  
      repeat = int(args.repeat)
      if repeat <= 0:
          print("error: --repeat must be positive", file=sys.stderr)
          return 2
  
      if not args.titles_file.is_file():
          print(f"error: titles file not found: {args.titles_file}", file=sys.stderr)
          return 2
  
      titles = _load_titles(args.titles_file)
52ea6529   tangwang   性能测试:
188
189
190
      warmup_n = 400
      warmup_runs = 3
      max_n = max(max(doc_counts), warmup_n)
00c8ddb9   tangwang   suggest rank opti...
191
192
193
194
195
196
197
198
199
200
201
202
203
      if len(titles) < max_n:
          print(
              f"error: file has only {len(titles)} non-empty lines, need at least {max_n}",
              file=sys.stderr,
          )
          return 2
  
      top_n = int(args.top_n)
      normalize = not args.no_normalize
      any_fail = False
      summary: dict[int, List[float]] = {n: [] for n in doc_counts}
  
      with httpx.Client(timeout=args.timeout) as client:
52ea6529   tangwang   性能测试:
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
          for w in range(warmup_runs):
              if args.seed is not None:
                  random.seed(args.seed + 8_000_000 + w)
              docs_w = random.sample(titles, warmup_n)
              try:
                  ok_w, status_w, _elapsed_w, scores_len_w, _text_w = _do_rerank(
                      client,
                      args.url,
                      args.query,
                      docs_w,
                      top_n=top_n,
                      normalize=normalize,
                  )
              except httpx.HTTPError as exc:
                  print(
                      f"warmup n={warmup_n} {w + 1}/{warmup_runs} error: request failed: {exc}",
                      file=sys.stderr,
                  )
                  any_fail = True
                  continue
              if not ok_w:
                  any_fail = True
              print(
                  f"warmup n={warmup_n} {w + 1}/{warmup_runs} status={status_w} "
                  f"scores={scores_len_w if scores_len_w is not None else 'n/a'} (not timed)"
              )
  
00c8ddb9   tangwang   suggest rank opti...
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
          for n in doc_counts:
              for run_idx in range(repeat):
                  if args.seed is not None:
                      random.seed(args.seed + n * 10_000 + run_idx)
                  docs = random.sample(titles, n)
                  try:
                      ok, status, elapsed_ms, scores_len, text = _do_rerank(
                          client,
                          args.url,
                          args.query,
                          docs,
                          top_n=top_n,
                          normalize=normalize,
                      )
                  except httpx.HTTPError as exc:
                      print(
                          f"n={n} run={run_idx + 1}/{repeat} error: request failed: {exc}",
                          file=sys.stderr,
                      )
                      any_fail = True
                      continue
  
                  if ok:
                      summary[n].append(elapsed_ms)
                  else:
                      any_fail = True
  
52ea6529   tangwang   性能测试:
258
259
260
261
262
                  if not args.quiet_runs:
                      print(
                          f"n={n} run={run_idx + 1}/{repeat} status={status} "
                          f"latency_ms={elapsed_ms:.2f} scores={scores_len if scores_len is not None else 'n/a'}"
                      )
00c8ddb9   tangwang   suggest rank opti...
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
                  if args.print_body_preview and text and run_idx == repeat - 1 and n == doc_counts[-1]:
                      preview = text[:500] + ("…" if len(text) > 500 else "")
                      print(preview)
  
      for n in doc_counts:
          lat = summary[n]
          if not lat:
              print(f"summary n={n} runs=0 (all failed)")
              continue
          avg = statistics.mean(lat)
          lo, hi = min(lat), max(lat)
          extra = ""
          if len(lat) >= 2:
              extra = f" stdev_ms={statistics.stdev(lat):.2f}"
          print(
              f"summary n={n} runs={len(lat)} min_ms={lo:.2f} max_ms={hi:.2f} avg_ms={avg:.2f}{extra}"
          )
  
52ea6529   tangwang   性能测试:
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
      if args.json_summary_out is not None:
          per_n: dict = {}
          for n in doc_counts:
              lat = summary[n]
              row: dict = {"values_ms": lat, "runs": len(lat)}
              if lat:
                  row["mean_ms"] = statistics.mean(lat)
                  row["min_ms"] = min(lat)
                  row["max_ms"] = max(lat)
                  if len(lat) >= 2:
                      row["stdev_ms"] = statistics.stdev(lat)
              per_n[str(n)] = row
          out_obj = {
              "tag": args.tag or None,
              "doc_counts": doc_counts,
              "repeat": repeat,
              "url": args.url,
              "per_n": per_n,
              "failed": bool(any_fail),
          }
          args.json_summary_out.parent.mkdir(parents=True, exist_ok=True)
          args.json_summary_out.write_text(
              json.dumps(out_obj, ensure_ascii=False, indent=2) + "\n",
              encoding="utf-8",
          )
          print(f"wrote json summary -> {args.json_summary_out}")
  
00c8ddb9   tangwang   suggest rank opti...
308
309
310
311
312
      return 1 if any_fail else 0
  
  
  if __name__ == "__main__":
      raise SystemExit(main())