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 2021/07/06 04:38:16 UTC

[GitHub] [arrow-datafusion] andygrove commented on a change in pull request #683: Introduce (default) number of partitions option, use it in DataFusion/Ballista

andygrove commented on a change in pull request #683:
URL: https://github.com/apache/arrow-datafusion/pull/683#discussion_r664229657



##########
File path: ballista/rust/core/src/utils.rs
##########
@@ -234,7 +234,9 @@ fn build_exec_plan_diagram(
 
 /// Create a DataFusion context that is compatible with Ballista
 pub fn create_datafusion_context() -> ExecutionContext {
-    let config = ExecutionConfig::new().with_concurrency(2); // TODO: this is hack to enable partitioned joins
+    let config = ExecutionConfig::new()
+        .with_concurrency(1)
+        .with_partitions(4); // TODO: make it easier to configure from Ballista

Review comment:
       I filed https://github.com/apache/arrow-datafusion/issues/682 for 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: github-unsubscribe@arrow.apache.org

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