caiconghui commented on a change in pull request #5205:
URL: https://github.com/apache/incubator-doris/pull/5205#discussion_r559307315



##########
File path: fe/fe-core/src/main/java/org/apache/doris/common/Config.java
##########
@@ -593,12 +593,19 @@
     public static int max_running_txn_num_per_db = 100;
 
     /**
-     * The load task executor pool size. This pool size limits the max running 
load tasks.
-     * Currently, it only limits the load task of broker load, pending and 
loading phases.
+     * The pending_load task executor pool size. This pool size limits the max 
running pending_load tasks.
+     * Currently, it only limits the pending_load task of broker load and 
spark load.
      * It should be less than 'max_running_txn_num_per_db'
      */
     @ConfField(mutable = false, masterOnly = true)
-    public static int async_load_task_pool_size = 10;
+    public static int async_pending_load_task_pool_size = 5;
+
+    /**
+     * The loading_load task executor pool size. This pool size limits the max 
running loading_load tasks.
+     * Currently, it only limits the loading_load task of broker load.
+     */
+    @ConfField(mutable = false, masterOnly = true)
+    public static int async_loading_load_task_pool_size = 20;

Review comment:
       pending task not execute heavy task,while loading task cost much time




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

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