-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
[feat](inverted index) Adding Storage Format V3 for Inverted Index #46124
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
run buildall |
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
zzzxl1993
force-pushed
the
branch-3.0.202412231725
branch
from
December 28, 2024 09:32
ba44be6
to
18ff3de
Compare
run buildall |
TPC-H: Total hot run time: 40759 ms
|
TPC-DS: Total hot run time: 197670 ms
|
ClickBench: Total hot run time: 33.63 s
|
…pache#44414) Problem Summary: 1. "Mainly added the functionality for compressing inverted index position information and dictionary information." 2. "Position information compression must be enabled by setting inverted_index_storage_format to v3 when creating the table." e.g. ``` CREATE TABLE tbl ( ... ) ENGINE=OLAP DUPLICATE KEY(`x`) COMMENT "OLAP" DISTRIBUTED BY RANDOM BUCKETS 1 PROPERTIES ( "inverted_index_storage_format" = "V3" ); ``` 4. "The dictionary compression feature requires setting inverted_index_storage_format to v3 and configuring dict_compression to true in the properties." e.g. ``` INDEX x_idx (`x`) USING INVERTED PROPERTIES("dict_compression" = "true") COMMENT '' ```
…CT_COMPRESS (apache#45738) Related PR: apache#44414 Problem Summary: In inverted index version 3 mode, using dictionary compression may lead to incorrect results after a seek operation.
…#45805) Related PR: apache#44414 Problem Summary: 1. dict_compression is only supported in v3 mode. 2. dict_compression is only supported for string-type fields.
zzzxl1993
force-pushed
the
branch-3.0.202412231725
branch
from
December 31, 2024 10:06
18ff3de
to
002192f
Compare
run buildall |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#44414
#45738
#45805