avantgardnerio commented on code in PR #6138:
URL: https://github.com/apache/arrow-datafusion/pull/6138#discussion_r1183777356
##########
datafusion/common/src/config.rs:
##########
@@ -226,6 +226,11 @@ config_namespace! {
/// Aggregate options
pub aggregate: AggregateOptions, default = Default::default()
+
+ /// Fan-out during initial physical planning.
+ ///
+ /// This is mostly use to plan `UNION` children in parallel.
+ pub planning_concurrency: usize, default = 10
Review Comment:
Github doesn't let me link, but online 216 is this:
```
/// Number of partitions for query execution. Increasing partitions
can increase
/// concurrency. Defaults to the number of CPU cores on the system
pub target_partitions: usize, default = num_cpus::get()
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]