Migrate Mysql protocol and NIO to Rust - #1246
Merged
Merged
Conversation
Member
Author
|
The mapping Dima issue is [Migrate seekdb to Rust]( |
hnwyllmm
force-pushed
the
task/2026071400117432064
branch
from
August 4, 2026 03:25
0a0da23 to
f66c6d2
Compare
footka
approved these changes
Aug 4, 2026
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Task Description
Migrate mysql protocol and nio networking part to Rust.
Solution Description
A new folder named rust is created under the codebase of seekdb, where a crate sql-nio can be found. This crate implements mysql protocol for encoding and decoding mysql packets and nio part with mio. In the original version of seekdb, linux uses SO_REUSEPORT for scaling incoming connections whereas mac/windows delivers all connections to only one thread. In this migration, all platform uses one thread to accept incoming connections and dispatch them to multiple io threads.
Passed Regressions
This version shows same performance on sysbench compared to baseline.
Upgrade Compatibility
Other Information
Release Note