-
Notifications
You must be signed in to change notification settings - Fork 363
Print percentiles in benchmark #2699
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
base: master
Are you sure you want to change the base?
Conversation
85139c5
to
b02f03f
Compare
go.mod
Outdated
@@ -72,6 +72,7 @@ require ( | |||
github.com/OneOfOne/xxhash v1.2.8 // indirect | |||
github.com/agnivade/levenshtein v1.1.1 // indirect | |||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect | |||
github.com/benburkert/pbench v0.0.0-20160623210926-4ec5821845ef // indirect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dependency from 2016, do we need this or can we copy a function into our code base?
@@ -93,6 +94,7 @@ require ( | |||
github.com/envoyproxy/protoc-gen-validate v1.0.2 // indirect | |||
github.com/felixge/httpsnoop v1.0.3 // indirect | |||
github.com/fsnotify/fsnotify v1.6.0 // indirect | |||
github.com/gavv/monotime v0.0.0-20190418164738-30dba4353424 // indirect |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
dependency from 2019 maybe we can copy a func to our own repository
803d0c9
to
ede5467
Compare
This is needed to improve the performance impact of this component. Signed-off-by: Roman Zavodskikh <[email protected]>
b02f03f
to
29fb706
Compare
@@ -6,6 +6,7 @@ require ( | |||
github.com/abbot/go-http-auth v0.4.0 | |||
github.com/andybalholm/brotli v1.1.0 | |||
github.com/aryszka/jobqueue v0.0.3 | |||
github.com/benburkert/pbench v0.0.0-20160623210926-4ec5821845ef |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Linking since will be helpful here when trying out with go 1.24, benburkert/pbench#2
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't like that we pull in a dependency that was last updated 9 years ago TBH.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After reading the code I am not even sure it does the right thing, e.g. I don't see how it accounts for warmup benchmark runs.
This is needed to improve the performance impact of this component.