-
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
Move vreplication to vitess json parser #12761
Merged
rohit-nayak-ps
merged 12 commits into
vitessio:main
from
planetscale:rn-vrep-move-to-vitess-json-parser
Apr 6, 2023
Merged
Move vreplication to vitess json parser #12761
rohit-nayak-ps
merged 12 commits into
vitessio:main
from
planetscale:rn-vrep-move-to-vitess-json-parser
Apr 6, 2023
Conversation
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
vitess-bot
bot
added
NeedsDescriptionUpdate
The description is not clear or comprehensive enough, and needs work
NeedsWebsiteDocsUpdate
What it says
labels
Mar 29, 2023
Review ChecklistHello reviewers! 👋 Please follow this checklist when reviewing this Pull Request. General
If a new flag is being introduced:
If a workflow is added or modified:
Bug fixes
Non-trivial changes
New/Existing features
Backward compatibility
|
vmg
force-pushed
the
rn-vrep-move-to-vitess-json-parser
branch
from
March 29, 2023 16:33
eee0706
to
2822a1f
Compare
vmg
requested review from
harshit-gangal,
systay,
shlomi-noach,
frouioui,
GuptaManan100,
mattlord and
deepthi
as code owners
March 29, 2023 16:33
dbussink
force-pushed
the
rn-vrep-move-to-vitess-json-parser
branch
from
March 30, 2023 07:46
c778177
to
5fe03bc
Compare
vmg
added
Type: Internal Cleanup
Component: Query Serving
and removed
NeedsDescriptionUpdate
The description is not clear or comprehensive enough, and needs work
NeedsWebsiteDocsUpdate
What it says
Skip CI
Skip CI actions from running
labels
Mar 30, 2023
…at and replication constants required for json parser into sqltypes. Currently has import cycles due to use of CellAlias in json parser Signed-off-by: Rohit Nayak <rohit@planetscale.com>
…w vitess json parser Signed-off-by: Rohit Nayak <rohit@planetscale.com>
rohit-nayak-ps
force-pushed
the
rn-vrep-move-to-vitess-json-parser
branch
from
April 2, 2023 20:16
a9ad6a5
to
25c4589
Compare
Signed-off-by: Vicent Marti <vmg@strn.cat>
Signed-off-by: Vicent Marti <vmg@strn.cat>
…ore json values in a lossless manner using JSON_OBJECT/JSON_ARRAYs Signed-off-by: Rohit Nayak <rohit@planetscale.com>
Signed-off-by: Rohit Nayak <rohit@planetscale.com>
…rings as part of all vrep e2e tests Signed-off-by: Rohit Nayak <rohit@planetscale.com>
Signed-off-by: Rohit Nayak <rohit@planetscale.com>
…12799) * Give mysqlctld time to shutdown properly before restarting to account for delays in CI Signed-off-by: Rohit Nayak <rohit@planetscale.com> * Address review comments Signed-off-by: Rohit Nayak <rohit@planetscale.com> --------- Signed-off-by: Rohit Nayak <rohit@planetscale.com>
…fix vdiff failure Signed-off-by: Rohit Nayak <rohit@planetscale.com>
mattlord
approved these changes
Apr 4, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you @rohit-nayak-ps, @vmg, and @dbussink !
rohit-nayak-ps
changed the title
[WIP] Move vreplication to vitess json parser
Move vreplication to vitess json parser
Apr 4, 2023
…ookupUpdateBecauseUncomparableTypes Signed-off-by: Rohit Nayak <rohit@planetscale.com>
rohit-nayak-ps
requested review from
dbussink
and removed request for
systay,
frouioui and
GuptaManan100
April 4, 2023 20:43
… space b/w key and value added by the new serialization Signed-off-by: Rohit Nayak <rohit@planetscale.com>
This was referenced Apr 5, 2023
dbussink
approved these changes
Apr 6, 2023
4 tasks
This was referenced Sep 9, 2023
frouioui
pushed a commit
to planetscale/vitess
that referenced
this pull request
Nov 21, 2023
…itessio#1836) * cherry pick of 12761 Signed-off-by: Vitess Cherry-Pick Bot <vitess-cherrypick-bot@planetscale.com> * Fix conflicts Signed-off-by: Rohit Nayak <rohit@planetscale.com> --------- Signed-off-by: Vitess Cherry-Pick Bot <vitess-cherrypick-bot@planetscale.com> Signed-off-by: Rohit Nayak <rohit@planetscale.com> Co-authored-by: Vitess Cherry-Pick Bot <vitess-cherrypick-bot@planetscale.com> Co-authored-by: Rohit Nayak <rohit@planetscale.com>
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.
Description
This PR moves away from using the
ajson
based binlog parser, switching instead to the new internal json parser created as part of the new evalengine work which was refactored in #12757 to be usable by other Vitess modules.The primary motivation for this work was to resolve the problem we have today where decimals and numerics are vreplicated in a lossy manner.
Key Changes
Related Issue(s)
Fixes: #8686
Checklist