Skip to content

Commit

Permalink
disable parallelism by default
Browse files Browse the repository at this point in the history
  • Loading branch information
devinjdangelo committed Sep 16, 2023
1 parent bd7835d commit c9110b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion datafusion/common/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,9 @@ config_namespace! {
/// large parquet files by first writing multiple smaller files
/// and then stitching them together into a single large file.
/// This will result in faster write speeds, but higher memory usage.
pub allow_single_file_parallelism: bool, default = true
/// Also currently unsupported are bloom filters and column indexes
/// when single_file_parallelism is enabled.
pub allow_single_file_parallelism: bool, default = false

}
}
Expand Down

0 comments on commit c9110b5

Please sign in to comment.