-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Golang Benchmarks don't take Package Name into consideration #264
Comments
Hey @gaby We could append the package name to the name of the benchmark so it would be eg
This should create a unique name to compare |
@ktrz Adding both cases is probably the way to go now. Other option I can think is having a config option to specify if you want benchmarks with suffix or not. |
@ktrz Any progress on this issue? Thanks! |
@ktrz what is the status? the package name after the name of the benchmark would be good and would solve the problem |
problem output PASS
ok github.com/gofiber/fiber/v3/log 0.173s
PASS
ok github.com/gofiber/fiber/v3/middleware/adaptor 0.184s
PASS
ok github.com/gofiber/fiber/v3/middleware/basicauth 0.173s
goos: darwin
goarch: arm64
pkg: github.com/gofiber/fiber/v3/middleware/cache
BenchmarkAppendMsgitem
BenchmarkAppendMsgitem-12 63634455 19.01 ns/op 3103.57 MB/s 0 B/op 0 allocs/op
BenchmarkAppendMsgitem-12 66411781 18.42 ns/op 3202.97 MB/s 0 B/op 0 allocs/op
PASS
ok github.com/gofiber/fiber/v3/middleware/cache 2.649s
PASS
ok github.com/gofiber/fiber/v3/middleware/compress 0.219s
PASS
ok github.com/gofiber/fiber/v3/middleware/cors 0.188s
goos: darwin
goarch: arm64
pkg: github.com/gofiber/fiber/v3/middleware/csrf
BenchmarkAppendMsgitem
BenchmarkAppendMsgitem-12 1000000000 0.2926 ns/op 3417.23 MB/s 0 B/op 0 allocs/op
BenchmarkAppendMsgitem-12 1000000000 0.2883 ns/op 3468.54 MB/s 0 B/op 0 allocs/op
PASS
ok github.com/gofiber/fiber/v3/middleware/csrf 0.842s
PASS current code github-action-benchmark/src/extract.ts Lines 342 to 392 in 6bae118
possible improvement function extractGoResult(output: string): BenchmarkResult[] {
const lines = output.split(/\r?\n/g);
const results: BenchmarkResult[] = [];
let currentPackage = '';
// Regular expression to extract the package path
const packageRegex = /^pkg:\s+(.+)$/;
// Regular expression to extract benchmark information
const benchmarkRegex =
/^(?<name>Benchmark\w+[\w()$%^&*-=|,[\]{}"#]*?)(?<procs>-\d+)?\s+(?<times>\d+)\s+(?<remainder>.+)$/;
for (const line of lines) {
// Check if the line contains the package path
const packageMatch = line.match(packageRegex);
if (packageMatch) {
currentPackage = packageMatch[1];
continue;
}
// Check if the line contains benchmark information
const benchmarkMatch = line.match(benchmarkRegex);
if (benchmarkMatch?.groups) {
const { name, procs, times, remainder } = benchmarkMatch.groups;
const procsNumber = procs ? procs.slice(1) : null;
const pieces = remainder.split(/\s+/);
// For backward compatibility with Go benchmarks that had multiple metrics in the output,
// but were not extracted properly before v1.18.0
if (pieces.length > 2) {
pieces.unshift(pieces[0], remainder.slice(remainder.indexOf(pieces[1])));
}
for (let i = 0; i < pieces.length; i += 2) {
const value = parseFloat(pieces[i]);
const unit = pieces[i + 1];
const fullName = `${currentPackage}.${name}${i > 0 ? ' - ' + unit : ''}`;
const extra = `${times} times${procsNumber ? `\n${procsNumber} procs` : ''}`.trim();
results.push({ name: fullName, value, unit, extra });
}
}
}
return results;
} I just don't know if the complete package changes the output too much |
for now I have applied a hack by hand in our workflow until you fix the problem in the action and thus help all consumers with this problem |
When running benchmarks in a repo with a lot of packages, if two benchmarks have the same name this
github-action
doesn't take into account the package name cause the comparison to fail randomly.This can be seen on this run: https://github.com/gofiber/fiber/actions/runs/10873073504
Where
BenchmarkAppendMsgitem
shows up multiple times with different values even though they are in different packages.The text was updated successfully, but these errors were encountered: