You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/03/01 02:18:56 UTC

[GitHub] [arrow-datafusion] Ted-Jiang commented on a change in pull request #1883: Separate cpu-bound (query-execution) and IO-bound(heartbeat) to …

Ted-Jiang commented on a change in pull request #1883:
URL: https://github.com/apache/arrow-datafusion/pull/1883#discussion_r816398331



##########
File path: ballista/rust/executor/src/executor_server.rs
##########
@@ -261,6 +262,8 @@ impl<T: 'static + AsLogicalPlan, U: 'static + AsExecutionPlan> TaskRunnerPool<T,
         let executor_server = self.executor_server.clone();
         tokio::spawn(async move {
             info!("Starting the task runner pool");
+            //TODO make it configurable
+            let dedicated_executor = DedicatedExecutor::new("task_runner", 4);

Review comment:
       set default to 4 due to: in ballista conf  `concurrent_tasks` set 4 . We will make it configurable




-- 
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: github-unsubscribe@arrow.apache.org

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