Skip to content

Commit 0a0055d

Browse files
committed
update config
1 parent f76eba1 commit 0a0055d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/source/user-guide/configs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Environment variables are read during `SessionConfig` initialisation so they mus
114114
| datafusion.optimizer.max_passes | 3 | Number of times that the optimizer will attempt to optimize the plan |
115115
| datafusion.optimizer.top_down_join_key_reordering | true | When set to true, the physical plan optimizer will run a top down process to reorder the join keys |
116116
| datafusion.optimizer.prefer_hash_join | true | When set to true, the physical plan optimizer will prefer HashJoin over SortMergeJoin. HashJoin can work more efficiently than SortMergeJoin but consumes more memory |
117-
| datafusion.optimizer.prefer_hash_selection_vector_partitioning_agg | false | When set to true, the physical plan optimizer will prefer HashSelectionVectorPartitioning for HashAggregate over HashPartitioning. HashSelectionVectorPartitioning can work without data copying. |
117+
| datafusion.optimizer.prefer_hash_selection_bitmap_partitioning_agg | false | When set to true, the physical plan optimizer will prefer HashSelectionBitmapPartitioning for HashAggregate over HashPartitioning. HashSelectionBitmapPartitioning can work without data copying. |
118118
| datafusion.optimizer.hash_join_single_partition_threshold | 1048576 | The maximum estimated size in bytes for one input side of a HashJoin will be collected into a single partition |
119119
| datafusion.optimizer.hash_join_single_partition_threshold_rows | 131072 | The maximum estimated size in rows for one input side of a HashJoin will be collected into a single partition |
120120
| datafusion.optimizer.default_filter_selectivity | 20 | 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). |

0 commit comments

Comments
 (0)