crepererum commented on code in PR #6138:
URL: https://github.com/apache/arrow-datafusion/pull/6138#discussion_r1183449510
##########
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:
I think the config system currently doesn't allow dependent defaults (this
would require a full DAG-style resolution).
--
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]