-
Notifications
You must be signed in to change notification settings - Fork 554
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
Unify data storage #4148
Unify data storage #4148
Conversation
scripts/secnetperf.ps1
Outdated
# Create file to persist full latency curve data: | ||
New-Item -ItemType File -Name "full-latency-curve.txt" |
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.
This is unnecessary. secnetperf will create the file (it does fopen("w")
).
This comment was marked as outdated.
This comment was marked as outdated.
e2982f6
to
07eee4a
Compare
https://github.com/microsoft/netperf/actions/runs/8027444653/job/21932394979 most recent run, where all the latency curves are successfully produced / uploaded. |
# Create intermediary files. | ||
New-Item -ItemType File -Name "latency.txt" |
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 think this is unnecessary now, but we can remove in a future PR.
Description
This PR attempts to unify everything data-storage related.
It will accommodate the next stage in netperf development where we have dynamically changing test environments.
In addition, this PR will persist the full latency txt curves, and netperf will handle parsing/condensing/saving it.
Testing
CI
Documentation
N/A