hit-lacus commented on a change in pull request #1662:
URL: https://github.com/apache/kylin/pull/1662#discussion_r655089493
##########
File path:
core-common/src/main/java/org/apache/kylin/common/KylinConfigBase.java
##########
@@ -3125,4 +3125,32 @@ public int getRepartitionNumAfterEncode() {
public boolean rePartitionEncodedDatasetWithRowKey() {
return
Boolean.valueOf(getOptional("kylin.engine.spark.repartition.encoded.dataset",
"false"));
}
+
+ /*
+ * Detect dataset skew in dictionary encode step.
+ * */
+ public boolean detectDataSkewInDictEncodingEnabled() {
+ return
Boolean.valueOf(getOptional("detect.data.skew.in.dict.encoding", "false"));
Review comment:
Use something like
`kylin.dictionary.data.skew.detect.in.encoding-enabled` for better name?
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]