-
Notifications
You must be signed in to change notification settings - Fork 517
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
Add the support of the restore command #1684
Conversation
b245c32
to
2152faa
Compare
1f71fe6
to
f3cd8f1
Compare
…mand - Port the crc64 and lzf algorithm from the Redis - Implement the restore command but only supports the string type - Add the support of verifying payload checksum - Add the support of parsing string type payload
10a80a3
to
5871ea5
Compare
PR is ready to be reviewed, but I need some time to add test cases for all encoding types. |
For compatibility testing, I think we can start a redis service in CI and do some mutual en/decoding? e.g. |
Aha, my test case values are dumped from the Redis, it should be difficult since those encoding types are located in many Redis versions, for example, the zip map exists in Redis 2.x. |
Co-authored-by: Twice <[email protected]>
Sorry for the big PR but the good news is it only affects the restore command itself :) |
@git-hulk Yeah, a massive PR! But I believe we will handle it :) |
Thank you! That's a bit hard to review since most of them are Redis encoding-related implementations. All test values are dumped from the Redis from Redis 2.6(dump command was supported from this version), and now test cases can cover all sorts of encoding types to guarantee it works. |
I have tested the RedisShake to migrate Redis data into Kvrocks and it works well now. |
Co-authored-by: Twice <[email protected]>
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.
great jobs. i added some minor comments.
did not review the RDB part since i'm not familiar with it, i am not able th give the advice.
Thanks all, I will merge this PR and can submit an issue to followup if you found any issues. |
This PR will close #1648 which supports the restore command for making Redis migration tools happy. To achieve this feature, we need to implement all encoding types now supported by Redis from 2.x to 7.x which includes:
For test cases, I have dumped value for Redis according to encoding types and confirmed it works well with the RedisShake migration tool. Another thing to be noticed, we haven't supported the stream and module type yet, because our stream type is partially implemented, so we can go back to support it after all commands are supported.