xy720 commented on code in PR #46959:
URL: https://github.com/apache/doris/pull/46959#discussion_r1916274202


##########
fe/fe-core/src/main/java/org/apache/doris/catalog/TabletStatMgr.java:
##########
@@ -43,12 +43,24 @@
 public class TabletStatMgr extends MasterDaemon {
     private static final Logger LOG = 
LogManager.getLogger(TabletStatMgr.class);
 
-    private ForkJoinPool taskPool = new 
ForkJoinPool(Runtime.getRuntime().availableProcessors());
+    private ForkJoinPool taskPool = new ForkJoinPool(Math.max(8, 
Runtime.getRuntime().availableProcessors()));
 
     public TabletStatMgr() {
         super("tablet stat mgr", Config.tablet_stat_update_interval_second * 
1000);
     }
 
+    private ForkJoinPool adjustThreadPool(int backendSize) {
+        int minimunParallelism = Math.max(8, 
Runtime.getRuntime().availableProcessors());

Review Comment:
   @SWJTU-ZhangLei TabletInvertedIndex will not be modified in this commit as 
its ForkJoinPool is hard to be directly replaced with a regular thread pool.



-- 
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: commits-unsubscr...@doris.apache.org

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


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

Reply via email to