-
Notifications
You must be signed in to change notification settings - Fork 411
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
Storages: support build inverted index query info from RSOperator #9998
Conversation
90f4e93
to
cc19567
Compare
cc19567
to
9dd528d
Compare
virtual BitmapFilterPtr check(std::function<BitmapFilterPtr(const ColumnRangePtr &, size_t)> search, size_t size) | ||
= 0; |
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.
Add some comments about the param of the function check
and its params
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.
Do this in Next PR #10006.
Some refine Lloyd-Pottiger#23 |
if (auto set = IntegerSet::createValueSet(attr.type->getTypeId(), values); set) | ||
{ | ||
auto iter = std::find_if(index_info->begin(), index_info->end(), [&](const auto & info) { | ||
return info.column_id == attr.col_id && info.kind == TiDB::ColumnarIndexKind::Inverted; | ||
}); | ||
if (iter != index_info->end()) | ||
return SingleColumnRange::create(iter->column_id, iter->index_id, set); | ||
} |
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.
If the user write thousands or more values in the value list of in (...)
. Would it bring OOM issue or performance regression? I think this can be an issue that you should verify later.
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.
For OOM, in this case, the bottleneck would not be the ColumnRange
.
For performance, we will decide whether to use inverted index in optimizer based on the selectivity.
Signed-off-by: Lloyd-Pottiger <[email protected]>
Signed-off-by: Lloyd-Pottiger <[email protected]>
Signed-off-by: Lloyd-Pottiger <[email protected]>
Signed-off-by: Lloyd-Pottiger <[email protected]>
Signed-off-by: Lloyd-Pottiger <[email protected]>
Signed-off-by: JaySon-Huang <[email protected]> Co-authored-by: Lloyd-Pottiger <[email protected]>
Signed-off-by: Lloyd-Pottiger <[email protected]>
Co-authored-by: jinhelin <[email protected]>
Signed-off-by: Lloyd-Pottiger <[email protected]>
6a1642b
to
fcc1f0d
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: JaySon-Huang, JinheLin The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[LGTM Timeline notifier]Timeline:
|
Signed-off-by: Lloyd-Pottiger <[email protected]>
What problem does this PR solve?
Issue Number: ref #9843
Problem Summary:
What is changed and how it works?
Check List
Tests
Side effects
Documentation
Release note