Skip to content

Commit

Permalink
set datafusion.execution.parquet.schema_force_view_types = false
Browse files Browse the repository at this point in the history
  • Loading branch information
milenkovicm committed Feb 18, 2025
1 parent 7f6a99e commit d366b13
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion ballista/core/src/extension.rs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,15 @@ impl SessionStateExt for SessionState {
.clone()
.with_option_extension(new_config.clone())
// Ballista disables this option
.with_round_robin_repartition(false);
.with_round_robin_repartition(false)
// There is issue with Utv8View(s) where Arrow IPC will generate
// frames which would be too big to send using Arrow Flight.
// We disable this option temporary
// TODO: enable this option once we get to root of the problem
.set_bool(
"datafusion.execution.parquet.schema_force_view_types",
false,
);

let builder = SessionStateBuilder::new_from_existing(self)
.with_config(session_config)
Expand Down

0 comments on commit d366b13

Please sign in to comment.