Skip to content
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

Add automation for Netperf with Azure VMs #3974

Merged
merged 65 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
65 commits
Select commit Hold shift + click to select a range
1221b9f
init netperf kickoff
ProjectsByJackHe Nov 27, 2023
22ef852
update secnetperf.ps1 to toggle logging and improve test execution
ProjectsByJackHe Nov 28, 2023
450eb9a
fix syntax issues
ProjectsByJackHe Nov 29, 2023
96aa0e3
add a sleep to wait until remote gets spun up
ProjectsByJackHe Nov 29, 2023
e7848f9
add NULL to fix pipeline issue
ProjectsByJackHe Nov 29, 2023
67ee093
add logic to persist the results of a test
ProjectsByJackHe Nov 30, 2023
555459d
parameterize everything
ProjectsByJackHe Dec 4, 2023
f87b8b7
delete hard-coded defaults
ProjectsByJackHe Dec 4, 2023
357d250
introduce sqlite
ProjectsByJackHe Dec 8, 2023
1e1214d
get rid of metadata
ProjectsByJackHe Dec 9, 2023
f86bd98
fix sql statements
ProjectsByJackHe Dec 9, 2023
ddc0ead
match
ProjectsByJackHe Dec 9, 2023
0802dbc
output is an array, not a string
ProjectsByJackHe Dec 9, 2023
79edee5
add code to save to json
ProjectsByJackHe Dec 12, 2023
a5981d8
adjust secnetperf.ps1 script to accomodate for linux
ProjectsByJackHe Dec 15, 2023
74e8313
modify directory to /home instead of /_work
ProjectsByJackHe Dec 15, 2023
5e679b2
skipping prepare-machine in linux for now
ProjectsByJackHe Dec 15, 2023
7b44cad
chmod +x binaries
ProjectsByJackHe Dec 16, 2023
444272c
print rawoutput for observability
ProjectsByJackHe Dec 16, 2023
e1452d1
Merge branch 'main' into jackhe/netperf
nibanks Dec 16, 2023
b7c37e5
Test more commands
nibanks Dec 16, 2023
90acf89
Remove maxtput
nibanks Dec 16, 2023
dc70e3d
use built in pwsh params instead of relying on passed in params
ProjectsByJackHe Dec 18, 2023
9ae78e7
skipping prepare machine on windows as well
ProjectsByJackHe Dec 19, 2023
1a4d3b9
fail gracefully if cmd failed to run
ProjectsByJackHe Dec 19, 2023
43e6249
add catch block to try
ProjectsByJackHe Dec 19, 2023
3bf4cde
add reading and saving data
ProjectsByJackHe Dec 20, 2023
ca4f655
Add a few comments to the script inputs
nibanks Jan 10, 2024
e28871f
Merge branch 'main' into jackhe/netperf
nibanks Jan 10, 2024
0f2e182
Update commands for new format
nibanks Jan 10, 2024
8286536
Refactor to simplify test definition and adds multiple tries
nibanks Jan 10, 2024
dc1e908
Small improvements to secnetperf
nibanks Jan 10, 2024
5e8e07a
Improve error handling
nibanks Jan 10, 2024
07da36a
Better error handling in PS1
nibanks Jan 10, 2024
95a23cc
Try to fix things?
nibanks Jan 10, 2024
d6815f0
Cleanup
nibanks Jan 10, 2024
a9610fe
Improve server fail to start scenario
nibanks Jan 10, 2024
2a71ddc
More improvements
nibanks Jan 10, 2024
02348c1
Undo googletest change
nibanks Jan 10, 2024
7568ba8
Fix copy/paste issue
nibanks Jan 10, 2024
ddb5c16
Another typo
nibanks Jan 10, 2024
dce0f40
add start restarting behavior
ProjectsByJackHe Jan 10, 2024
c1f1687
Merge branch 'jackhe/netperf' of https://github.com/microsoft/msquic …
ProjectsByJackHe Jan 10, 2024
320ae62
remove restarting logic to rule out confounding issues
ProjectsByJackHe Jan 10, 2024
b8c7a31
start / restart server without maxtput, but with lowlat
ProjectsByJackHe Jan 10, 2024
0271446
prepare machine for windows, add per-test logging
ProjectsByJackHe Jan 11, 2024
e6542ef
try disabling param binding and fix write-output
ProjectsByJackHe Jan 11, 2024
ea8a6d4
error function is available in parent scope
ProjectsByJackHe Jan 11, 2024
508d587
non null checks
ProjectsByJackHe Jan 11, 2024
0cd5b97
guard against null values
ProjectsByJackHe Jan 11, 2024
7cbcd60
stopping logging
ProjectsByJackHe Jan 11, 2024
b92edb4
Copy wprp profile to remote too
nibanks Jan 11, 2024
25fd4d4
Refactoring
nibanks Jan 11, 2024
cf641c4
More fixes and refactoring
nibanks Jan 11, 2024
23bacdc
Fixes
nibanks Jan 11, 2024
ce16a5f
Debugging
nibanks Jan 11, 2024
bfeb0f5
one more fix
nibanks Jan 11, 2024
e3f211b
One more linux path issue
nibanks Jan 11, 2024
4d454d3
Fixes
nibanks Jan 11, 2024
ef2a9af
More fixes
nibanks Jan 11, 2024
28ab7df
Write-Host instead?
nibanks Jan 11, 2024
5ad242b
debugging
nibanks Jan 11, 2024
0aa986c
refactoring
nibanks Jan 11, 2024
804b8d2
Fix stop
nibanks Jan 11, 2024
6f297e1
Another try at stop
nibanks Jan 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/netperf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Netperf

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main

concurrency:
# Cancel any workflow currently in progress for the same PR.
# Allow running concurrently with any other commits.
group: perf-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

permissions: read-all

jobs:
run:
name: Run Perf
runs-on: windows-latest
steps:
- name: Run NetPerf Workflow
shell: pwsh
run: |
$url = "https://raw.githubusercontent.com/microsoft/netperf/main/run-workflow.ps1"
if ('${{ secrets.NET_PERF_TRIGGER }}' -eq '') {
Write-Host "Not able to run because no secrets are available!"
return
}
iex "& { $(irm $url) } ${{ secrets.NET_PERF_TRIGGER }} quic ${{ github.sha }} ${{ github.ref }} ${{ github.event.pull_request.number }}"
165 changes: 165 additions & 0 deletions scripts/secnetperf-helpers.psm1
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
<#
.SYNOPSIS
Various helper functions for running secnetperf tests.
#>

# Write a GitHub error message to the console.
function Write-GHError($msg) {
Write-Host "::error::$msg"
}

# Write a GitHub warning message to the console.
function Write-GHWarning($msg) {
Write-Host "::warning::$msg"
}

# Waits for a remote job to be ready based on looking for a particular string in
# the output.
function Start-RemoteServer {
param ($Session, $Command)
# Start the server on the remote in an async job.
$Job = Invoke-Command -Session $Session -ScriptBlock { iex $Using:Command } -AsJob
# Poll the job for 10 seconds to see if it started.
$StopWatch = [system.diagnostics.stopwatch]::StartNew()
while ($StopWatch.ElapsedMilliseconds -lt 10000) {
$CurrentResults = Receive-Job -Job $Job -Keep -ErrorAction Continue
if (![string]::IsNullOrWhiteSpace($CurrentResults)) {
$DidMatch = $CurrentResults -match "Started!" # Look for the special string to indicate success.
if ($DidMatch) {
return $Job
}
}
Start-Sleep -Seconds 0.1 | Out-Null
}

# On failure, dump the output of the job.
Stop-Job -Job $Job
$RemoteResult = Receive-Job -Job $Job -ErrorAction Stop
$RemoteResult = $RemoteResult -join "`n"
Write-GHWarning $RemoteResult.ToString()
throw "Server failed to start!"
}

# Sends a special UDP packet to tell the remote secnetperf to shutdown, and then
# waits for the job to complete. Finally, it returns the console output of the
# job.
function Stop-RemoteServer {
param ($Job, $RemoteAddress)
# Ping side-channel socket on 9999 to tell the app to die
$Socket = New-Object System.Net.Sockets.UDPClient
$BytesToSend = @(
0x57, 0xe6, 0x15, 0xff, 0x26, 0x4f, 0x0e, 0x57,
0x88, 0xab, 0x07, 0x96, 0xb2, 0x58, 0xd1, 0x1c
)
for ($i = 0; $i -lt 30; $i++) {
$Socket.Send($BytesToSend, $BytesToSend.Length, $RemoteAddress, 9999) | Out-Null
$Completed = Wait-Job -Job $Job -Timeout 1
if ($null -ne $Completed) {
return
}
}

# On failure, dump the output of the job.
Stop-Job -Job $Job
$RemoteResult = Receive-Job -Job $Job -ErrorAction Stop
$RemoteResult = $RemoteResult -join "`n"
Write-GHWarning $RemoteResult.ToString()
throw "Server failed to stop!"
}

# Invokes all the secnetperf tests.
function Invoke-SecnetperfTest($testIds, $commands, $exe, $json, $LogProfile) {

Write-Host "Running Secnetperf tests..."

$SQL = @"
"@
$json = @{}

for ($i = 0; $i -lt $commands.Count; $i++) {
for ($tcp = 0; $tcp -lt 2; $tcp++) {

$command = "$exe -target:netperf-peer $($commands[$i]) -tcp:$tcp -trimout"
Write-Host "> $command"

if ($LogProfile -ne "" -and $LogProfile -ne "NULL") { # Start logging.
Write-Host "Starting logging with log profile: $LogProfile..."
.\scripts\log.ps1 -Start -Profile $LogProfile
}

for ($try = 0; $try -lt 3; $try++) {
try {
$rawOutput = Invoke-Expression $command
} catch {
Write-GHError "Failed to run test: $($commands[$i])"
Write-GHError $_
$script:encounterFailures = $true
continue
}

if ($null -eq $rawOutput) {
Write-GHError "RawOutput is null. Failed to run test: $($commands[$i])"
$script:encounterFailures = $true
continue
}

if ($rawOutput.Contains("Error")) {
$rawOutput = $rawOutput.Substring(7) # Skip over the 'Error: ' prefix
Write-GHError $rawOutput
$script:encounterFailures = $true
continue
}

Write-Host $rawOutput

if ($testIds[$i].Contains("rps")) {
$latency_percentiles = '(?<=\d{1,3}(?:\.\d{1,2})?th: )\d+'
$Perc = [regex]::Matches($rawOutput, $latency_percentiles) | ForEach-Object {$_.Value}
$json[$testIds[$i]] = $Perc
# TODO: SQL += ...
continue
}

$throughput = '@ (\d+) kbps'

$testId = $testIds[$i]
if ($tcp -eq 1) {
$testId += "-tcp"
} else {
$testId += "quic"
}
$testId += "-$MsQuicCommit"

foreach ($line in $rawOutput) {
if ($line -match $throughput) {

$num = $matches[1]

# Generate SQL statement
$SQL += @"

INSERT INTO Secnetperf_test_runs (Secnetperf_test_ID, Client_environment_ID, Server_environment_ID, Result, Latency_stats_ID, Units)
VALUES ('$($testIds[$i])', 'azure_vm', 'azure_vm', $num, NULL, 'kbps');

"@

# Generate JSON
$json[$testIds[$i]] = $num
break
}
}

if ($LogProfile -ne "" -and $LogProfile -ne "NULL") { # Stop logging.
Write-Host "Stopping logging..."
.\scripts\log.ps1 -Stop -OutputPath ".\artifacts\logs\$command"
}

Start-Sleep -Seconds 1
}



}}

return $SQL
}
Loading