kgusakov commented on code in PR #936:
URL: https://github.com/apache/ignite-3/pull/936#discussion_r928783137
##########
modules/table/src/main/java/org/apache/ignite/internal/table/distributed/TableManager.java:
##########
@@ -260,6 +268,14 @@ public TableManager(
rebalanceScheduler = new
ScheduledThreadPoolExecutor(REBALANCE_SCHEDULER_POOL_SIZE,
new NamedThreadFactory("rebalance-scheduler", LOG));
+
+ ioExecutor = new ThreadPoolExecutor(
+ 25,
+ Integer.MAX_VALUE,
+ 100,
+ TimeUnit.MILLISECONDS,
+ new LinkedBlockingQueue<>(),
+ new NamedThreadFactory("tableManager-io", LOG));
Review Comment:
This LOG is a part of one-line NamedThreadFactory constructor, not the
previous one multiline ThreadPoolExecutor
--
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]