forked from apache/pinot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] allow dim table config to detect/disallow duplicate PK (apa…
…che#12290) * added dim table PK duplicate config key * use false as default and change it to named as: error-on-duplicate-pk; --------- Co-authored-by: Rong Rong <rongr@startree.ai>
- Loading branch information
Showing
8 changed files
with
102 additions
and
22 deletions.
There are no files selected for viewing
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
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
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
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
18 changes: 18 additions & 0 deletions
18
pinot-core/src/test/resources/data/dimBaseballTeams_config.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"tableName": "dimBaseballTeams", | ||
"tableType": "OFFLINE", | ||
"isDimTable": true, | ||
"segmentsConfig": { | ||
"segmentPushType": "REFRESH", | ||
"replication": "1" | ||
}, | ||
"tenants": { | ||
}, | ||
"tableIndexConfig": { | ||
"loadMode": "MMAP" | ||
}, | ||
"metadata": { | ||
"customConfigs": { | ||
} | ||
} | ||
} |
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