klsince commented on code in PR #10553:
URL: https://github.com/apache/pinot/pull/10553#discussion_r1163315275
##########
pinot-tools/src/main/resources/examples/batch/airlineStats/airlineStats_offline_table_config.json:
##########
@@ -23,6 +23,33 @@
"MONTH"
]
}
+ },
+ {
+ "name": "ArrTimeBlk",
+ "encodingType": "DICTIONARY",
+ "indexes": {
+ "inverted": {
+ "enabled": "true"
+ }
+ },
+ "tierOverwrites": {
+ "hotTier": {
+ "encodingType": "DICTIONARY",
+ "indexes": {
+ "bloom": {
+ "enabled": "true"
+ }
+ }
+ },
+ "coldTier": {
+ "encodingType": "RAW",
Review Comment:
It's allowed to overwrite encoding type, as done by
`FieldConfig.withTierOverwrites(tier)` method, where the tier specific
FieldConfig object is constructed and may use tier specific encoding type,
indexes or properties.
DictionaryIndexType has this`fieldConfig =
fieldConfig.withTierOverwrites(tier);`, but I missed it for ForwardIndexType.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]