RussellSpitzer commented on code in PR #6828:
URL: https://github.com/apache/iceberg/pull/6828#discussion_r1105028978
##########
spark/v3.3/spark/src/main/java/org/apache/iceberg/spark/SparkWriteConf.java:
##########
@@ -228,6 +228,16 @@ private DistributionMode
adjustWriteDistributionMode(DistributionMode mode) {
}
}
+ private DistributionMode defaultDistributionMode() {
+ if (table.sortOrder().isSorted()) {
+ return RANGE;
+ } else if (table.spec().isPartitioned()) {
+ return HASH;
+ } else {
+ return NONE;
Review Comment:
I would think we could just cluster by all columns
--
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]