dramaticlly commented on code in PR #16108:
URL: https://github.com/apache/iceberg/pull/16108#discussion_r3327073465
##########
core/src/main/java/org/apache/iceberg/SnapshotProducer.java:
##########
@@ -227,6 +239,14 @@ protected ExecutorService workerPool() {
return workerPool;
}
+ protected ExecutorService writePool() {
+ if (writePool == null) {
+ this.writePool = ThreadPools.getWorkerPool();
+ }
+
+ return writePool;
Review Comment:
That's my initial plan but Huaxin suggested that in
https://github.com/apache/iceberg/pull/16108#discussion_r3261046119 I can
follow existing pattern of workerPool. I am not too opinionated on this
--
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]