Standardize null pyworker load/perf on 100

Using 1 confused the serverless capacity math. Set workload_calculator,
benchmark target throughput, and client cost all to 100 — the conventional
default the rest of the system expects.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Rob Ballantyne
2026-05-11 18:09:16 +01:00
parent ef3f34a515
commit 9d969e376e
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ async def reserve(
start = time.monotonic()
log.info("[%s] POST /reserve duration=%ss", label, duration)
try:
resp = await endpoint.request("/reserve", payload, cost=1)
resp = await endpoint.request("/reserve", payload, cost=100)
elapsed = time.monotonic() - start
log.info("[%s] returned after %.1fs: %s", label, elapsed, resp.get("response"))
return resp["response"]