milenkovicm commented on code in PR #1435:
URL: 
https://github.com/apache/datafusion-ballista/pull/1435#discussion_r2751797414


##########
benchmarks/src/bin/tpch.rs:
##########
@@ -417,6 +424,17 @@ async fn benchmark_ballista(opt: BallistaBenchmarkOpt) -> 
Result<()> {
             config = config.set_str(BALLISTA_SHUFFLE_SORT_BASED_ENABLED, 
"true");

Review Comment:
   Maybe it can be removed now?



##########
benchmarks/src/bin/tpch.rs:
##########
@@ -417,6 +424,17 @@ async fn benchmark_ballista(opt: BallistaBenchmarkOpt) -> 
Result<()> {
             config = config.set_str(BALLISTA_SHUFFLE_SORT_BASED_ENABLED, 
"true");
         }
 
+        for kv in &opt.config_overrides {
+            if let Some((key, value)) = kv.split_once('=') {
+                config = config.set_str(key.trim(), value.trim());
+            } else {
+                return Err(DataFusionError::Configuration(format!(

Review Comment:
   Not sure if we need to throw error or just print warning. When comparing two 
branches one may not have (new) config. Wdyt?



-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to