[typo][docs] Fix a parameter error (#20841)
This commit is contained in:
@ -105,7 +105,7 @@ For query options related to Runtime Filter, please refer to the following secti
|
||||
|
||||
- `runtime_bloom_filter_size`: The default length of Bloom Filter in Runtime Filter, the default is 2097152 (2M)
|
||||
|
||||
- `runtime_filter_max_in_num`: If the number of rows in the right table of the join is greater than this value, we will not generate an IN predicate, the default is 102400
|
||||
- `runtime_filter_max_in_num`: If the number of rows in the right table of the join is greater than this value, we will not generate an IN predicate, the default is 1024
|
||||
|
||||
The query options are further explained below.
|
||||
|
||||
|
||||
@ -102,7 +102,7 @@ Runtime Filter主要用于大表join小表的优化,如果左表的数据量
|
||||
- `runtime_bloom_filter_min_size`: Runtime Filter中Bloom Filter的最小长度,默认1048576(1M)
|
||||
- `runtime_bloom_filter_max_size`: Runtime Filter中Bloom Filter的最大长度,默认16777216(16M)
|
||||
- `runtime_bloom_filter_size`: Runtime Filter中Bloom Filter的默认长度,默认2097152(2M)
|
||||
- `runtime_filter_max_in_num`: 如果join右表数据行数大于这个值,我们将不生成IN predicate,默认102400
|
||||
- `runtime_filter_max_in_num`: 如果join右表数据行数大于这个值,我们将不生成IN predicate,默认1024
|
||||
|
||||
下面对查询选项做进一步说明。
|
||||
|
||||
|
||||
Reference in New Issue
Block a user