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

feat(perf): support iperf-style intermittent results #4382

Merged
merged 32 commits into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d57ae7b
Revert "refactor(perf): use libp2p-request-response"
mxinden Aug 23, 2023
f45070c
Implement reporting via genawaiter
mxinden Aug 23, 2023
3f49d8e
Replace genawaiter with plain channel
mxinden Aug 23, 2023
a5df071
Basic printing
mxinden Aug 23, 2023
9788b53
intermittent -> intermediate
mxinden Aug 24, 2023
066d44c
Max out quic connection and stream data
mxinden Aug 25, 2023
9a1865e
Set send_window
mxinden Aug 25, 2023
14db268
Log config
mxinden Aug 25, 2023
d85382c
Revert logging
mxinden Aug 25, 2023
0f99dd4
Be reasonable
mxinden Aug 25, 2023
b901b6b
Merge branch 'master' of https://github.com/libp2p/rust-libp2p into i…
mxinden Oct 19, 2023
257c101
Simplify binary
mxinden Oct 19, 2023
f897297
Reduce tokio features
mxinden Oct 19, 2023
1ac5543
Revert changes to dockerfile
mxinden Oct 19, 2023
ce4384d
Remove quic window bumps
mxinden Oct 19, 2023
b82b684
Revert quic transport send_window hack
mxinden Oct 19, 2023
2126bf6
Handle client error
mxinden Oct 19, 2023
b3ab270
Simplify client protocol
mxinden Oct 19, 2023
61c83be
Remove outdated todo
mxinden Oct 19, 2023
fd9443f
Address minor review comments
mxinden Oct 22, 2023
4facef9
Use SwarmBuilder
mxinden Oct 23, 2023
9048af2
Use loop
mxinden Oct 23, 2023
a33842b
Use futures-bounded in server handler
mxinden Oct 23, 2023
5d4a7c4
Make RunError::NotConnected an empty struct
mxinden Oct 23, 2023
b8a7066
Refactor import
mxinden Oct 24, 2023
9111752
fmt
mxinden Oct 25, 2023
d124a46
fix(.github): allow perf to depend on meta crate
mxinden Oct 25, 2023
f082fbe
Merge branch 'master' of https://github.com/libp2p/rust-libp2p into i…
mxinden Oct 25, 2023
affdfce
Bump version and add changelog entry
mxinden Oct 25, 2023
0218fcf
Bump workspace dependency version
mxinden Oct 25, 2023
9090ede
Merge branch 'master' into iperf-style
mergify[bot] Oct 25, 2023
f817667
Remove keep alive handling
mxinden Oct 25, 2023
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
3 changes: 1 addition & 2 deletions Cargo.lock

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

7 changes: 3 additions & 4 deletions protocols/perf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,24 @@ categories = ["network-programming", "asynchronous"]

[dependencies]
anyhow = "1"
async-trait = "0.1"
clap = { version = "4.3.23", features = ["derive"] }
env_logger = "0.10.0"
futures = "0.3.28"
futures-timer = "3.0"
instant = "0.1.12"
libp2p-core = { workspace = true }
libp2p-dns = { workspace = true, features = ["tokio"] }
libp2p-identity = { workspace = true, features = ["rand"] }
libp2p-tls = { workspace = true }
libp2p-quic = { workspace = true, features = ["tokio"] }
libp2p-request-response = { workspace = true }
libp2p-swarm = { workspace = true, features = ["macros", "tokio"] }
libp2p-tcp = { workspace = true, features = ["tokio"] }
libp2p-tls = { workspace = true }
libp2p-yamux = { workspace = true }
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1.33.0", features = ["full"] }
tokio = { version = "1.33", default-features = false, features = ["macros", "rt", "rt-multi-thread"] }
void = "1"

[dev-dependencies]
Expand Down
Loading
Loading