Skip to content
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

Merged
merged 26 commits into from
Aug 28, 2023

Conversation

git-hulk
Copy link
Member

@git-hulk git-hulk commented Aug 19, 2023

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:

  • All kinds of data objects like String/List/Set/Hash/Sorted Set
  • Binary encoding types: ZipMap/ZipList/IntSet/ListPack

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.

@git-hulk git-hulk force-pushed the feature/restore-command branch 2 times, most recently from b245c32 to 2152faa Compare August 19, 2023 12:40
@git-hulk git-hulk changed the title [WIP] add the support of the restore command [WIP] Add the support of the restore command Aug 19, 2023
@git-hulk git-hulk force-pushed the feature/restore-command branch from 1f71fe6 to f3cd8f1 Compare August 21, 2023 16:15
@git-hulk git-hulk force-pushed the feature/restore-command branch from 10a80a3 to 5871ea5 Compare August 22, 2023 14:29
@git-hulk git-hulk changed the title [WIP] Add the support of the restore command Add the support of the restore command Aug 24, 2023
@git-hulk git-hulk marked this pull request as ready for review August 24, 2023 13:18
@git-hulk
Copy link
Member Author

PR is ready to be reviewed, but I need some time to add test cases for all encoding types.

@PragmaTwice
Copy link
Member

For compatibility testing, I think we can start a redis service in CI and do some mutual en/decoding? e.g. KvrocksDecode(RedisEncode(x)) = x or RedisDecode(KvrocksEncode(y)) = y

@git-hulk
Copy link
Member Author

For compatibility testing, I think we can start a redis service in CI and do some mutual en/decoding? e.g. KvrocksDecode(RedisEncode(x)) = x or RedisDecode(KvrocksEncode(y)) = y

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.

@git-hulk
Copy link
Member Author

Sorry for the big PR but the good news is it only affects the restore command itself :)

@torwig
Copy link
Contributor

torwig commented Aug 25, 2023

@git-hulk Yeah, a massive PR! But I believe we will handle it :)

@git-hulk
Copy link
Member Author

@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.

@git-hulk
Copy link
Member Author

I have tested the RedisShake to migrate Redis data into Kvrocks and it works well now.

Copy link
Member

@enjoy-binbin enjoy-binbin left a 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.

@git-hulk
Copy link
Member Author

Thanks all, I will merge this PR and can submit an issue to followup if you found any issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add the support of the RESTORE command [NEW]Please support restore command
4 participants