Skip to content

Commit 30ff6e6

Browse files
committed
fix config test
1 parent 1c50402 commit 30ff6e6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

docs/source/user-guide/configs.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ Environment variables are read during `SessionConfig` initialisation so they mus
112112
| datafusion.optimizer.max_passes | 3 | Number of times that the optimizer will attempt to optimize the plan |
113113
| 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 |
114114
| 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 |
115+
| datafusion.optimizer.prefer_hash_selection_vector_partitioning | false | When set to true, the physical plan optimizer will prefer HashSelectionVectorPartitioning for RepartitionExec over HashPartitioning. HashSelectionVectorPartitioning can work without data copying. |
115116
| 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 |
116117
| 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 |
117118
| 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)