-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
VTTablet: Transmit raw MySQL packets for Fields and Rows over wire with grpc buffer #17135
base: main
Are you sure you want to change the base?
Conversation
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
Tests
Documentation
New flags
If a workflow is added or modified:
Backward compatibility
|
Signed-off-by: Harshit Gangal <[email protected]>
9fafcb1
to
6313ead
Compare
cc6ea94
to
8c5edf6
Compare
…retreive query result Signed-off-by: Harshit Gangal <[email protected]>
363f2dd
to
ab80841
Compare
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Hello! 👋 This Pull Request is now handled by arewefastyet. The current HEAD and future commits will be benchmarked. You can find the performance comparison on the arewefastyet website. |
Signed-off-by: Harshit Gangal <[email protected]>
7305f33
to
846022c
Compare
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
1a92368
to
4f9b3d6
Compare
Signed-off-by: Harshit Gangal <[email protected]>
4f9b3d6
to
6057421
Compare
Signed-off-by: Harshit Gangal <[email protected]>
07a7260
to
e0d5217
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #17135 +/- ##
==========================================
- Coverage 67.39% 67.34% -0.06%
==========================================
Files 1570 1571 +1
Lines 252917 253250 +333
==========================================
+ Hits 170446 170541 +95
- Misses 82471 82709 +238 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
881851f
to
050a239
Compare
Signed-off-by: Harshit Gangal <[email protected]>
45da34f
to
a5382bb
Compare
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
Signed-off-by: Harshit Gangal <[email protected]>
818b3de
to
35d913c
Compare
Signed-off-by: Vicent Marti <[email protected]>
Signed-off-by: Vicent Marti <[email protected]>
Signed-off-by: Vicent Marti <[email protected]>
Description
In this PR, VTTablet sends raw MySQL packets to VTGate avoiding two conversion
In this approach, the raw packets received from the MySQL is prefixed with the proto header and using mem.BufferSlice are send as-is over GRPC transport layer avoiding the double cost of conversions.
VTGate on the receiving side will convert the raw packets to sqltypes.Result, earlier the conversion was from proto to sqltypes.Result.
Related Issue(s)
Checklist