cxzl25 commented on code in PR #2371: URL: https://github.com/apache/orc/pull/2371#discussion_r2320677366
########## java/core/src/java/org/apache/orc/OrcConf.java: ########## @@ -118,6 +118,11 @@ public enum OrcConf { "If the number of distinct keys in a dictionary is greater than this\n" + "fraction of the total number of non-null rows, turn off \n" + "dictionary encoding. Use 1 to always use dictionary encoding."), + DICTIONARY_MAX_SIZE_IN_BYTES("orc.dictionary.maxSizeInBytes", + "hive.exec.orc.dictionary.maxSizeInBytes", + 16 * 1024 * 1024, + "If the total size of the dictionary is greater than this\n" + + ", turn off dictionary encoding. Use 1 to always use dictionary encoding."), Review Comment: > Use 1 to always use dictionary encoding. It seems that this logic is not implemented. -- 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: issues-unsubscr...@orc.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org