milenkovicm commented on code in PR #1374:
URL:
https://github.com/apache/datafusion-ballista/pull/1374#discussion_r2678523308
##########
ballista/core/src/config.rs:
##########
@@ -69,38 +80,49 @@ static CONFIG_ENTRIES: LazyLock<HashMap<String,
ConfigEntry>> = LazyLock::new(||
ConfigEntry::new(BALLISTA_STANDALONE_PARALLELISM.to_string(),
"Standalone processing parallelism ".to_string(),
DataType::UInt16,
Some(std::thread::available_parallelism().map(|v|
v.get()).unwrap_or(1).to_string())),
+
+ // Arrow IPC configuration
+ ConfigEntry::new(BALLISTA_ARROW_IPC_READER_SKIP_VALIDATION.to_string(),
Review Comment:
I'm not sure if we should propagate this configuration o users. In which
cases this configuration should be changed?
I'd say if we want to make it configurable it should be build time
configuration. Wdyt @killzoner ?
--
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]