-
Notifications
You must be signed in to change notification settings - Fork 43
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
refactor(perf): expose single latency measurement #207
Conversation
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.
LGTM, module the updated quic-go/perf commit hash. Feel free to merge once you've made that change.
perf/impl/quic-go/v0.34/Makefile
Outdated
@@ -10,7 +10,7 @@ perf-${commitSha}: perf-${commitSha}.zip | |||
unzip -o perf-${commitSha}.zip | |||
|
|||
perf-${commitSha}.zip: | |||
wget -O $@ "https://github.com/quic-go/perf/archive/${commitSha}.zip" | |||
wget -O $@ "https://github.com/mxinden/perf/archive/${commitSha}.zip" |
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 just merged quic-go/perf#12, let's update the PR here.
Instead of exposing the time to establish a connection, the time to upload the bytes and the time to download the bytes, expose a single time including all three.
The rational here is, that differentiation of the three is flawed. E.g. when does one stop the upload timer and start the download timer? When the last byte is sent? When the last byte is flushed? When the first byte is received?
See #184 (review) for past discussion.
I will update the dashboard once this is merged.
Blocked on libp2p/rust-libp2p#4105 and quic-go/perf#12.