-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
store/tikv: define KVFilter for customized mutation initialization #24021
Conversation
Signed-off-by: Yilin Chen <sticnarf@gmail.com>
if len(value) > 0 { | ||
if tablecodec.IsUntouchedIndexKValue(key, value) { | ||
if isUnnecessaryKV { |
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.
Only un-empty value need the filter, so could we move the filter logic in L350~L351?
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.
Rest LGTM
Signed-off-by: Yilin Chen <sticnarf@gmail.com>
Ah, it's a test inside tikv that wants to remove untouched index... |
Signed-off-by: Yilin Chen <sticnarf@gmail.com>
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
[REVIEW NOTIFICATION] This pull request has been approved by:
To complete the pull request process, please ask the reviewers in the list to review by filling The full list of commands accepted by this bot can be found here. Reviewer can indicate their review by writing |
/merge |
This pull request has been accepted and is ready to merge. Commit hash: d4528b7
|
/run-tics-test |
/run-unit-test |
/merge |
1 similar comment
/merge |
@zhouqiang-cl: In response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
/run-all-tests |
@sticnarf CI fail. |
Signed-off-by: Yilin Chen <sticnarf@gmail.com>
/merge |
This pull request has been accepted and is ready to merge. Commit hash: bdcb96f
|
/run-all-tests |
@sticnarf: Your PR was out of date, I have automatically updated it for you. At the same time I will also trigger all tests for you: /run-all-tests If the CI test fails, you just re-trigger the test that failed and the bot will merge the PR for you after the CI passes. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the ti-community-infra/tichi repository. |
/run-unit-test |
What problem does this PR solve?
Part of #22513
tablecodec.IsUntouchedIndexKValue
is a TiDB specific optimization. It should not be used in thestore/tikv
package.For such custom kv initialization requirements, a
KVFilter
is defined for TiKV client users.Check List
Tests
Release note
No release note