This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch dev-1.0.1 in repository https://gitbox.apache.org/repos/asf/incubator-doris.git
commit de5928ae4df8849751e56e5dac8c62e3309a2d87 Author: EmmyMiao87 <522274...@qq.com> AuthorDate: Tue Mar 29 18:20:09 2022 +0800 [typo] Fix runtime filter docs (#8702) Fix runtime filter docs --- docs/en/administrator-guide/runtime-filter.md | 4 ++-- docs/zh-CN/administrator-guide/runtime-filter.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/administrator-guide/runtime-filter.md b/docs/en/administrator-guide/runtime-filter.md index 5db59cc..9d5c584 100644 --- a/docs/en/administrator-guide/runtime-filter.md +++ b/docs/en/administrator-guide/runtime-filter.md @@ -91,7 +91,7 @@ For query options related to Runtime Filter, please refer to the following secti - The first query option is to adjust the type of Runtime Filter used. In most cases, you only need to adjust this option, and keep the other options as default. - - `runtime_filter_type`: Including Bloom Filter, MinMax Filter, IN predicate and IN_OR_BLOOM Filter. By default, only IN_OR_BLOOM Filter will be used. In some cases, the performance will be higher when both Bloom Filter, MinMax Filter and IN predicate are used at the same time. + - `runtime_filter_type`: Including Bloom Filter, MinMax Filter, IN predicate and IN Or Bloom Filter. By default, only IN Or Bloom Filter will be used. In some cases, the performance will be higher when both Bloom Filter, MinMax Filter and IN predicate are used at the same time. - Other query options usually only need to be further adjusted in certain specific scenarios to achieve the best results. Usually only after performance testing, optimize for resource-intensive, long enough running time and high enough frequency queries. @@ -114,7 +114,7 @@ The query options are further explained below. #### 1.runtime_filter_type Type of Runtime Filter used. -**Type**: Number (1, 2, 4, 8) or the corresponding mnemonic string (IN, BLOOM_FILTER, MIN_MAX, IN_OR_BLOOM_FILTER), the default is 8 (IN_OR_BLOOM FILTER), use multiple commas to separate, pay attention to the need to add quotation marks , Or add any number of types, for example: +**Type**: Number (1, 2, 4, 8) or the corresponding mnemonic string (IN, BLOOM_FILTER, MIN_MAX, ```IN_OR_BLOOM_FILTER```), the default is 8 (```IN_OR_BLOOM_FILTER```), use multiple commas to separate, pay attention to the need to add quotation marks , Or add any number of types, for example: ``` set runtime_filter_type="BLOOM_FILTER,IN,MIN_MAX"; ``` diff --git a/docs/zh-CN/administrator-guide/runtime-filter.md b/docs/zh-CN/administrator-guide/runtime-filter.md index 2e6d897..edaa630 100644 --- a/docs/zh-CN/administrator-guide/runtime-filter.md +++ b/docs/zh-CN/administrator-guide/runtime-filter.md @@ -91,7 +91,7 @@ Runtime Filter主要用于优化针对大表的join,如果左表的数据量 - 第一个查询选项是调整使用的Runtime Filter类型,大多数情况下,您只需要调整这一个选项,其他选项保持默认即可。 - - `runtime_filter_type`: 包括Bloom Filter、MinMax Filter、IN predicate、IN_OR_BLOOM Filter,默认会使用IN_OR_BLOOM Filter,部分情况下同时使用Bloom Filter、MinMax Filter、IN predicate时性能更高。 + - `runtime_filter_type`: 包括Bloom Filter、MinMax Filter、IN predicate、IN Or Bloom Filter,默认会使用IN Or Bloom Filter,部分情况下同时使用Bloom Filter、MinMax Filter、IN predicate时性能更高。 - 其他查询选项通常仅在某些特定场景下,才需进一步调整以达到最优效果。通常只在性能测试后,针对资源密集型、运行耗时足够长且频率足够高的查询进行优化。 @@ -114,7 +114,7 @@ Runtime Filter主要用于优化针对大表的join,如果左表的数据量 #### 1.runtime_filter_type 使用的Runtime Filter类型。 -**类型**: 数字(1, 2, 4, 8)或者相对应的助记符字符串(IN, BLOOM_FILTER, MIN_MAX, IN_OR_BLOOM_FILTER),默认8(IN_OR_BLOOM Filter),使用多个时用逗号分隔,注意需要加引号,或者将任意多个类型的数字相加,例如: +**类型**: 数字(1, 2, 4, 8)或者相对应的助记符字符串(IN, BLOOM_FILTER, MIN_MAX, ```IN_OR_BLOOM_FILTER```),默认8(```IN_OR_BLOOM_FILTER```),使用多个时用逗号分隔,注意需要加引号,或者将任意多个类型的数字相加,例如: ``` set runtime_filter_type="BLOOM_FILTER,IN,MIN_MAX"; ``` --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org