-
Notifications
You must be signed in to change notification settings - Fork 24k
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
improve performance for scan command when matching pattern or data type #12209
Conversation
…fying a definite type
CI failed again and seem that nothing to with this pr... |
don't worry, it looks like the failure has nothing to do with this PR. |
Do we have any confirmation from benchmarks or profiling which show that this provides any performance benefits? |
@vitarb thank you and sorry for the late reply, we indeed need a benchmark and I will test it when all advises are fixed. |
@vitarb @oranagra hi, here is the perfomance result:
|
Co-authored-by: sundb <[email protected]>
Co-authored-by: sundb <[email protected]>
Co-authored-by: sundb <[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.
thanks. mostly LGTM>
@oranagra I just finished it according to your last review and compare the benchmark performance bettwen before and after the lastest commit. benchmark command:
benchmark command:
result analysis:
|
@judeng thanks for following all my requests (both the tips to incrementally further improve SCAN compared to what this PR initially meant to do), and also the rollback process, tests and comments. one last comment to handle IMHO is #12209 (comment) after that, please refresh the top comment, which i'll use as a squash-merge commit comment. if you can also include some raw benchmark numbers to give an idea of the impact of this PR on performance. and then i'll merge it. |
Looks all set, I'm going to retest the performance impact tomorrow. |
@judeng I updated the top comment. let me know if you see any problem. |
i checked out this PR, to do two things:
|
i now realize that this was already covered by expire.tcl (i only tested coverage by running scan.tcl). |
Co-authored-by: sundb <[email protected]>
@oranagra I have updated the performance test results in the top comment, it seems that except for the type filter, the other results have not changed much |
Thanks. |
yes, I used the
yes, I used the no-volatile keys to better display the perfermance improvement :-) |
merged. |
@judeng can you make a PR? i'm afraid to forget... |
@oranagra Sorry, I didn't forget about it, just had a couple of nasty accidents last week so I didn't have time, I'll to work on it this week. |
Move the TYPE filtering to the scan callback so that avoided the `lookupKey` operation. This is the follow-up to #12209 . In this thread we introduced two breaking changes: 1. we will not attempt to do lazy expire (delete) a key that was filtered by not matching the TYPE (like we already do for MATCH pattern). 2. when the specified key TYPE filter is an unknown type, server will reply a error immediately instead of doing a full scan that comes back empty handed.
…2395) Move the TYPE filtering to the scan callback so that avoided the `lookupKey` operation. This is the follow-up to redis#12209 . In this thread we introduced two breaking changes: 1. we will not attempt to do lazy expire (delete) a key that was filtered by not matching the TYPE (like we already do for MATCH pattern). 2. when the specified key TYPE filter is an unknown type, server will reply a error immediately instead of doing a full scan that comes back empty handed.
Optimized the performance of the SCAN command in a few ways:
Changes postponed for a later version (8.0):
Benchmark result:
For different scenarios, we obtained about 30% more performance improvement: