Skip to content

Commit

Permalink
Add hash_join_single_partition_threshold_rows config (#8720)
Browse files Browse the repository at this point in the history
Co-authored-by: Andrew Lamb <[email protected]>
  • Loading branch information
maruschin and alamb committed Jan 20, 2024
1 parent 95e739c commit f5a97d5
Show file tree
Hide file tree
Showing 4 changed files with 165 additions and 126 deletions.
4 changes: 4 additions & 0 deletions datafusion/common/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,10 @@ config_namespace! {
/// will be collected into a single partition
pub hash_join_single_partition_threshold: usize, default = 1024 * 1024

/// The maximum estimated size in rows for one input side of a HashJoin
/// will be collected into a single partition
pub hash_join_single_partition_threshold_rows: usize, default = 1024 * 128

/// The default filter selectivity used by Filter Statistics
/// when an exact selectivity cannot be determined. Valid values are
/// between 0 (no selectivity) and 100 (all rows are selected).
Expand Down
Loading

0 comments on commit f5a97d5

Please sign in to comment.