-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Mplex does not implement backpressure, our implementation will randomly reset streams if buffers overflow instead of risking deadlocks. In the past we had a bug where kubo nodes would prefer mplex over yamux. Turning off mplex make our connections to thoses nodes negociate yamux. Closes ipfs#9958
- Loading branch information
Showing
7 changed files
with
41 additions
and
62 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
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,28 @@ | ||
# Kubo changelog v0.22 | ||
|
||
- [v0.23.0](#v0230) | ||
|
||
## v0.23.0 | ||
|
||
- [Overview](#overview) | ||
- [🔦 Highlights](#-highlights) | ||
- [Mplex removal](#mplex-removal) | ||
- [📝 Changelog](#-changelog) | ||
- [👨👩👧👦 Contributors](#-contributors) | ||
|
||
### Overview | ||
|
||
### 🔦 Highlights | ||
|
||
#### Mplex removal | ||
|
||
Support for Mplex was removed, this is because it is unreliable and would | ||
randomly drop streams when sending data too fast. | ||
|
||
New pieces of code rely on backpressure, that means the stream will dynamicaly | ||
slow down if the sending rate if data is getting backed up. | ||
Backpressure is provided by Yamux and QUIC. | ||
|
||
### 📝 Changelog | ||
|
||
### 👨👩👧👦 Contributors |
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
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
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