Files
windmill/benchmarks/benchmark_suite.ts
2023-09-22 14:35:05 +02:00

199 lines
5.2 KiB
TypeScript

import { Command } from "https://deno.land/x/cliffy@v0.25.7/command/mod.ts";
import { UpgradeCommand } from "https://deno.land/x/cliffy@v0.25.7/command/upgrade/upgrade_command.ts";
import { DenoLandProvider } from "https://deno.land/x/cliffy@v0.25.7/command/upgrade/mod.ts";
import { main as runBenchmark } from "./benchmark_oneoff.ts";
import { drawGraph, drawGraphMulti } from "./graph.ts";
import { VERSION } from "./lib.ts";
type Config = {
benchmarks: [
{
graph_title: string;
kind: string;
jobs: number;
}
];
extra_graphs?: [
{
graph_title: string;
kinds: string[];
}
];
};
async function warmUp(
host: string,
email: string | undefined,
password: string | undefined,
token: string | undefined,
workspace: string
) {
console.log("%cWarming up...", "font-weight: bold;");
await runBenchmark({
host,
email,
password,
token,
workspace,
kind: "noop",
jobs: 5000,
});
}
async function main({
host,
email,
password,
token,
workspace,
configPath,
}: {
host: string;
email?: string;
password?: string;
token?: string;
workspace: string;
configPath: string;
}) {
async function getConfig(configPath: string): Promise<Config> {
if (configPath.startsWith("http")) {
const response = await fetch(configPath);
return await response.json();
} else {
return JSON.parse(await Deno.readTextFile(configPath));
}
}
await warmUp(host, email, password, token, workspace);
try {
const config = await getConfig(configPath);
for (const benchmark of config.benchmarks) {
try {
console.log(
"%cRunning benchmark " + benchmark.kind,
"font-weight: bold;"
);
const result = await runBenchmark({
host,
email,
password,
token,
workspace,
kind: benchmark.kind,
jobs: benchmark.jobs,
});
if (!result) {
throw new Error("No result returned");
}
const stat = {
value: result.throughput,
ts: Date.now(),
};
let data: (typeof stat)[] = [];
const jsonFilePath = `${benchmark.kind}_benchmark.json`;
try {
const existing = await Deno.readTextFile(jsonFilePath);
data = JSON.parse(existing);
} catch (_) {
console.log("No existing data file found, creating new one.");
}
data.push(stat);
await Deno.writeTextFile(jsonFilePath, JSON.stringify(data, null, 4));
const svg = drawGraph(
data.slice(-10).map((d) => ({ ...d, date: new Date(d.ts) })),
benchmark.graph_title
);
await Deno.writeTextFile(`${benchmark.kind}_benchmark.svg`, svg);
} catch (err) {
console.error("Failed to run benchmark", benchmark.kind, err);
}
}
for (const extraGraph of config.extra_graphs || []) {
const data: {
value: number;
ts: number;
date: Date;
kind: string;
}[] = [];
for (const kind of extraGraph.kinds) {
try {
const existing = await Deno.readTextFile(`${kind}_benchmark.json`);
const existingData = JSON.parse(existing)
.map((d: { value: number; ts: number }) => ({
...d,
date: new Date(d.ts),
kind,
}))
.slice(-10);
data.push(...existingData);
} catch (err) {
console.log("Error while loading", kind, "benchmark data", err);
}
}
const svg = drawGraphMulti(data, extraGraph.graph_title);
await Deno.writeTextFile(`${extraGraph.kinds.join("_vs_")}.svg`, svg);
}
Deno.exit(0); // JSDOM from drawGraph doesn't exit cleanly
} catch (err) {
console.error(`Failed to read config file ${configPath}: ${err}`);
Deno.exit(0); // JSDOM from drawGraph doesn't exit cleanly
}
}
await new Command()
.name("wmillbenchsuite")
.description("Run benchmark suite to measure throughput of windmill.")
.version(VERSION)
.option("--host <url:string>", "The windmill host to benchmark.", {
default: "http://127.0.0.1:8000",
})
.option("-e --email <email:string>", "The email to use to login.", {
default: "admin@windmill.dev",
})
.option("-p --password <password:string>", "The password to use to login.", {
default: "changeme",
})
.env(
"WM_TOKEN=<token:string>",
"The token to use when talking to the API server. Preferred over manual login."
)
.option(
"-t --token <token:string>",
"The token to use when talking to the API server. Preferred over manual login."
)
.env(
"WM_WORKSPACE=<workspace:string>",
"The workspace to spawn scripts from."
)
.option(
"-w --workspace <workspace:string>",
"The workspace to spawn scripts from.",
{ default: "admins" }
)
.option("-c --config-path <config:string>", "The path of the config file", {
required: true,
})
.action(main)
.command(
"upgrade",
new UpgradeCommand({
main: "main.ts",
args: [
"--allow-net",
"--allow-read",
"--allow-write",
"--allow-env",
"--unstable",
],
provider: new DenoLandProvider({ name: "wmillbench" }),
})
)
.parse();