Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ plans/

# Benchmark result directories
bench_results*/
soak-results/
jobs/**/*.*
pytest-of-*/

Expand Down
15 changes: 15 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ members = [
"crates/protocol",
"crates/switchyard-server",
"crates/switchyard-skill-distillation",
"crates/switchyard-soak",
"crates/switchyard-translation",
]

Expand Down
30 changes: 30 additions & 0 deletions crates/switchyard-soak/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

[package]
name = "switchyard-soak"
version = "0.1.0"
description = "Sustained load tester for a live Switchyard server"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true

[[bin]]
name = "switchyard-soak"
path = "src/main.rs"

[dependencies]
clap = { version = "4", features = ["derive"] }
futures-util.workspace = true
parking_lot.workspace = true
rand.workspace = true
reqwest.workspace = true
serde_json.workspace = true
tokio.workspace = true

[dev-dependencies]
axum = "0.8"
tempfile = "3"
tokio.workspace = true
Loading
Loading