From f597c0ce0a9b10ca38c0ac35e143495d12c3397c Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Sun, 27 Jun 2021 10:31:00 -0600 Subject: [PATCH] hack --- ballista/rust/core/src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ballista/rust/core/src/utils.rs b/ballista/rust/core/src/utils.rs index c0307056b1dbe..0b2b06ab58c55 100644 --- a/ballista/rust/core/src/utils.rs +++ b/ballista/rust/core/src/utils.rs @@ -227,7 +227,7 @@ 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(1); + let config = ExecutionConfig::new().with_concurrency(2); // TODO: this is hack to enable partitioned joins ExecutionContext::with_config(config) }