deemoliu commented on code in PR #14444: URL: https://github.com/apache/pinot/pull/14444#discussion_r1842855965
########## pinot-segment-local/src/main/java/org/apache/pinot/segment/local/segment/creator/impl/SegmentColumnarIndexCreator.java: ########## @@ -182,6 +182,14 @@ public void init(SegmentGeneratorConfig segmentCreationSpec, SegmentIndexCreatio LOGGER.info("Creating dictionary index in column {}.{} even when it is disabled in config", segmentCreationSpec.getTableName(), columnName); } + + // override dictionary type if configured to do so + if (_config.isOptimizeDictionaryType()) { + LOGGER.info("Overriding dictionary type for column: {} using var-length dictionary: {}", columnName, + columnIndexCreationInfo.isUseVarLengthDictionary()); + dictConfig = new DictionaryIndexConfig(dictConfig, columnIndexCreationInfo.isUseVarLengthDictionary()); Review Comment: what is the default dictionary type? shall we name it `OptimizeWithVarLengthDictionaryType`? -- 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: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org