-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(perf): continuosly measure on single conn (iperf-style)
Our current throughput tests open a connection, open a stream, up- or download 100MB and close the connection. 100 MB is not enough on the given path (60ms, ~5gbit/s) to exit congestion controller's slow-start. See #261 for details. Instead of downloading 100MB multiple times, each on a new connection, establish a single connection and continuously measure the throughput for a fixed duration (60s).
- Loading branch information
Showing
7 changed files
with
751 additions
and
4,456 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,24 +1,15 @@ | ||
GO_SUBDIRS := $(wildcard go-libp2p/*/.) | ||
RUST_SUBDIRS := $(wildcard rust-libp2p/*/.) | ||
RUST_QUINN_SUBDIRS := $(wildcard rust-libp2p-quinn/*/.) | ||
HTTPS_SUBDIRS := $(wildcard https/*/.) | ||
QUIC_GO_SUBDIRS := $(wildcard quic-go/*/.) | ||
|
||
all: $(RUST_SUBDIRS) $(RUST_QUINN_SUBDIRS) $(GO_SUBDIRS) $(HTTPS_SUBDIRS) $(QUIC_GO_SUBDIRS) | ||
all: $(RUST_SUBDIRS) $(HTTPS_SUBDIRS) | ||
$(RUST_SUBDIRS): | ||
$(MAKE) -C $@ | ||
$(RUST_QUINN_SUBDIRS): | ||
$(MAKE) -C $@ | ||
$(GO_SUBDIRS): | ||
$(MAKE) -C $@ | ||
$(HTTPS_SUBDIRS): | ||
$(MAKE) -C $@ | ||
$(QUIC_GO_SUBDIRS): | ||
$(MAKE) -C $@ | ||
|
||
clean: $(RUST_SUBDIRS:%=%clean) $(RUST_QUINN_SUBDIRS:%=%clean) $(GO_SUBDIRS:%=%clean) $(HTTPS_SUBDIRS:%=%clean) $(QUIC_GO_SUBDIRS:%=%clean) | ||
clean: $(RUST_SUBDIRS:%=%clean) $(HTTPS_SUBDIRS:%=%clean) | ||
|
||
%clean: | ||
$(MAKE) -C $* clean | ||
|
||
.PHONY: $(RUST_SUBDIRS) $(RUST_QUINN_SUBDIRS) $(GO_SUBDIRS) $(HTTPS_SUBDIRS) $(QUIC_GO_SUBDIRS) all clean | ||
.PHONY: $(RUST_SUBDIRS) $(HTTPS_SUBDIRS) |
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
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
Oops, something went wrong.