-
Notifications
You must be signed in to change notification settings - Fork 1.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
Allow all raw index config in star-tree index #13225
Allow all raw index config in star-tree index #13225
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #13225 +/- ##
============================================
+ Coverage 61.75% 62.18% +0.43%
+ Complexity 207 198 -9
============================================
Files 2436 2533 +97
Lines 133233 138872 +5639
Branches 20636 21504 +868
============================================
+ Hits 82274 86355 +4081
- Misses 44911 46065 +1154
- Partials 6048 6452 +404
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Can we add the 'breaking-change' and / or 'incompatible' labels to the PR since this will break in cases where both configs were being used at the same time. |
@satwik-pachigolla It won't break existing tables since it is checked during table config validation. Pinot won't allow new table config/table config update with both configs |
@Jackie-Jiang It isn't a breaking change but I would still label it incompatible / backwards-incompat. If someone pulls in this commit without realising this change in behavior, it will break any unrelated config change automation or be confusing for users who are not as knowledgeable about Pinot. This will force Pinot maintainers to either revert this or rush an update to all table configs. |
for future viewers, clarification on
it should be: Add a check to |
Fixed, thanks for pointing it out @jadami10 |
Add the following configs into
StarTreeAggregationConfig
as counterpart ofForwardIndexConfig
:During table config validation:
functionColumnPairs
oraggregationConfigs
to be configuredBackward Incompatible