-
-
Notifications
You must be signed in to change notification settings - Fork 432
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: split ServerStreaming Benchmark to other VM [skip ci]
- Loading branch information
1 parent
a8d8fca
commit dba05d7
Showing
4 changed files
with
99 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
type: loader | ||
# max 3 items are allowed | ||
branch-configs: | ||
- suffix: "" # suffix should be unique with others | ||
branch: main | ||
config: ./perf/BenchmarkApp/configs/schedule_config.yaml | ||
config: ./perf/BenchmarkApp/configs/schedule_ci.yaml | ||
- suffix: "-1" | ||
branch: main | ||
config: ./perf/BenchmarkApp/configs/schedule_serverstreaming.yaml | ||
- suffix: "-2" | ||
branch: feature/ImprovePerformance | ||
config: ./perf/BenchmarkApp/configs/workflow_dispatch_messagepack_h2c.yaml |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
# template: https://github.com/Cysharp/Actions/tree/main/.github/scripts/_template_benchmark_config.yaml | ||
# config2args script: https://github.com/Cysharp/Actions/tree/main/.github/scripts/benchmark_config2args.sh | ||
apt-tools: "libmsquic" | ||
dotnet-version: 8.0 | ||
benchmark-expire-min: 15 | ||
#benchmark-location: "japaneast" | ||
benchmark-location: "eastus" | ||
benchmark-timeout-min: 10 | ||
benchmark-client-run-script-path: ".github/scripts/benchmark-client-run.sh" | ||
benchmark-client-run-script-args: '--run-args "-u http://${BENCHMARK_SERVER_NAME}:5000 --protocol {{ protocol }} -s ServerStreaming --rounds 3 --channels {{ channels }} --streams {{ streams }} --serialization {{ serialization }} --validate true --tags {{ tags }}" --build-args "{{ buildArgsClient }}"' | ||
benchmark-server-run-script-path: ".github/scripts/benchmark-server-run.sh" | ||
benchmark-server-run-script-args: '--run-args "-u http://0.0.0.0:5000 --protocol {{ protocol }} --serialization {{ serialization }} --validate true --tags {{ tags }}" --build-args "{{ buildArgsServer }}"' | ||
benchmark-server-stop-script-path: ".github/scripts/benchmark-server-stop.sh" | ||
jobs: | ||
##### MessagePack ##### | ||
# h2c | ||
- tags: legend:messagepack-h2c-linux,streams:1x1,protocol:h2c,serialization:messagepack | ||
protocol: h2c | ||
channels: 1 | ||
streams: 1 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2c-linux,streams:1x28,protocol:h2c,serialization:messagepack | ||
protocol: h2c | ||
channels: 28 | ||
streams: 1 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2c-linux,streams:28x1,protocol:h2c,serialization:messagepack | ||
protocol: h2c | ||
channels: 1 | ||
streams: 28 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2c-linux,streams:70x1,protocol:h2c,serialization:messagepack | ||
protocol: h2c | ||
channels: 1 | ||
streams: 70 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2c-linux,streams:70x28,protocol:h2c,serialization:messagepack | ||
protocol: h2c | ||
channels: 28 | ||
streams: 70 | ||
serialization: messagepack | ||
# h2 | ||
- tags: legend:messagepack-h2-linux,streams:1x1,protocol:h2,serialization:messagepack | ||
protocol: h2 | ||
channels: 1 | ||
streams: 1 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2-linux,streams:1x28,protocol:h2,serialization:messagepack | ||
protocol: h2 | ||
channels: 28 | ||
streams: 1 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2-linux,streams:28x1,protocol:h2,serialization:messagepack | ||
protocol: h2 | ||
channels: 1 | ||
streams: 28 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2-linux,streams:70x1,protocol:h2,serialization:messagepack | ||
protocol: h2 | ||
channels: 1 | ||
streams: 70 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h2-linux,streams:70x28,protocol:h2,serialization:messagepack | ||
protocol: h2 | ||
channels: 28 | ||
streams: 70 | ||
serialization: messagepack | ||
# h3 | ||
- tags: legend:messagepack-h3-linux,streams:1x1,protocol:h3,serialization:messagepack | ||
protocol: h3 | ||
channels: 1 | ||
streams: 1 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h3-linux,streams:1x28,protocol:h3,serialization:messagepack | ||
protocol: h3 | ||
channels: 28 | ||
streams: 1 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h3-linux,streams:28x1,protocol:h3,serialization:messagepack | ||
protocol: h3 | ||
channels: 1 | ||
streams: 28 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h3-linux,streams:70x1,protocol:h3,serialization:messagepack | ||
protocol: h3 | ||
channels: 1 | ||
streams: 70 | ||
serialization: messagepack | ||
- tags: legend:messagepack-h3-linux,streams:70x28,protocol:h3,serialization:messagepack | ||
protocol: h3 | ||
channels: 28 | ||
streams: 70 | ||
serialization: messagepack |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters