RussellSpitzer commented on code in PR #12201:
URL: https://github.com/apache/iceberg/pull/12201#discussion_r1947861228


##########
core/src/main/java/org/apache/iceberg/util/TableScanUtil.java:
##########
@@ -236,6 +236,9 @@ public static long adjustSplitSize(long scanSize, int 
parallelism, long splitSiz
     // use the configured split size if it produces at least one split per slot
     // otherwise, adjust the split size to target parallelism with a 
reasonable minimum
     // increasing the split size may cause expensive spills and is not done 
automatically
+    if (splitSize <= 0) {

Review Comment:
   Why are we allowing this at all? Shouldn't we just throw an error on Split 
size less than or = to 0?



-- 
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...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to