rdblue commented on a change in pull request #4147:
URL: https://github.com/apache/iceberg/pull/4147#discussion_r810656695



##########
File path: api/src/main/java/org/apache/iceberg/SnapshotUpdate.java
##########
@@ -52,4 +53,13 @@
    */
   ThisT stageOnly();
 
+  /**
+   * Use a particular executor to plan. The default worker pool will be used 
by default.
+   *
+   * @param executorService the provided executor.
+   * @return this for method chaining.
+   */
+  default ThisT planWith(ExecutorService executorService) {
+    throw new UnsupportedOperationException();

Review comment:
       No need to throw `UnsupportedOperationException`. While this is an API, 
it is for user consumption. All of the implementations exist in core so we can 
just make sure our implementations are all up to date.




-- 
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]

Reply via email to