This is an automated email from the ASF dual-hosted git repository. kassiez pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris-website.git
The following commit(s) were added to refs/heads/master by this push: new f0f287d3824 [Improvement](docs) refine query acceleration doc (#1669) f0f287d3824 is described below commit f0f287d3824bd3c502908dbc013ebecede9c39e6 Author: xzj7019 <xiongzhongj...@selectdb.com> AuthorDate: Mon Dec 30 14:02:03 2024 +0800 [Improvement](docs) refine query acceleration doc (#1669) ## Versions - [x] dev - [x] 3.0 - [x] 2.1 - [ ] 2.0 ## Languages - [x] Chinese - [x] English ## Docs Checklist - [ ] Checked by AI - [ ] Test Cases Built --- docs/query-acceleration/performance-tuning-overview/analysis-tools.md | 2 +- .../current/query-acceleration/hints/hints-overview.md | 2 +- .../query-acceleration/performance-tuning-overview/analysis-tools.md | 2 +- .../version-2.1/query-acceleration/hints/hints-overview.md | 2 +- .../query-acceleration/performance-tuning-overview/analysis-tools.md | 2 +- .../version-3.0/query-acceleration/hints/hints-overview.md | 2 +- .../query-acceleration/performance-tuning-overview/analysis-tools.md | 2 +- .../query-acceleration/performance-tuning-overview/analysis-tools.md | 2 +- .../query-acceleration/performance-tuning-overview/analysis-tools.md | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/query-acceleration/performance-tuning-overview/analysis-tools.md b/docs/query-acceleration/performance-tuning-overview/analysis-tools.md index fc3e80044e5..4f52c5bd893 100644 --- a/docs/query-acceleration/performance-tuning-overview/analysis-tools.md +++ b/docs/query-acceleration/performance-tuning-overview/analysis-tools.md @@ -26,7 +26,7 @@ under the License. ## Overview -The previous section on [diagnostic tools](diagnostic-tools.md) helped business and operations personnel pinpoint specific slow SQL queries. This section will introduce how to analyze the performance bottlenecks of slow SQL to determine which part of the SQL execution process is causing the slowdown. Powerful analysis tools are the foundation and guarantee for locating performance issues. +The previous section on [diagnostic tools](diagnostic-tools.md) helped business and operations personnel pinpoint specific slow SQL queries. This section will introduce how to analyze the performance bottlenecks of slow SQL to determine which part of the SQL execution process is causing the slowdown. The execution process of an SQL query can be roughly divided into two stages: plan generation and plan execution. The former is responsible for generating the execution plan, while the latter executes the specific plan. Issues in either part can lead to performance bottlenecks. For example, if a poor plan is generated, no matter how excellent the executor is, good performance cannot be achieved. Similarly, even with a correct plan, inappropriate execution methods can also lead to perform [...] diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/hints/hints-overview.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/hints/hints-overview.md index 99edca0c523..959a5bd2e4a 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/hints/hints-overview.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/hints/hints-overview.md @@ -104,4 +104,4 @@ Hint Log 分为三个状态: ## 总结 -Hint 是手动管理执行计划的强大工具。当前 Doris 支持的 leading hint, ordered hint, distribute hint等,可以支撑用户手动管理 join order, shuffle 方式以及其他变量配置,给用户提供更方便有效的的运维能力。 +Hint 是手动管理执行计划的强大工具。当前 Doris 支持的 leading hint, ordered hint, distribute hint等,可以支撑用户手动管理 join order, shuffle 方式以及其他变量配置,给用户提供更方便有效的运维能力。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/performance-tuning-overview/analysis-tools.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/performance-tuning-overview/analysis-tools.md index 3f13725237e..7ca96e6e29b 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/performance-tuning-overview/analysis-tools.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/query-acceleration/performance-tuning-overview/analysis-tools.md @@ -26,7 +26,7 @@ under the License. ## 概述 -上节[诊断工具](diagnostic-tools.md)已经帮助业务和运维人员定位到具体的慢 SQL,本章节开始介绍如何对慢 SQL 的性能瓶颈进行分析,以确定具体慢在 SQL 执行的哪个环节。所以强大的分析工具是性能问题定位的基础和保障。 +上节[诊断工具](diagnostic-tools.md)已经帮助业务和运维人员定位到具体的慢 SQL,本章节开始介绍如何对慢 SQL 的性能瓶颈进行分析,以确定具体慢在 SQL 执行的哪个环节。 一条 SQL 的执行过程大致可以分为计划生成和计划执行两个阶段,前一部分负责生成执行计划,后一部分负责具体计划的执行。这两个部分出现问题都可能导致性能瓶颈的发生。比如生成了差计划,那么即使再优秀的执行器也不可能获得很好的性能。同样一个正确的计划,如果相应的执行手段不合适,也容易产生性能瓶颈。此外,执行器的性能和当前运行的硬件和系统架构有紧密的关系,一些基础设施的缺陷或者配置不正确也会导致性能问题。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/hints/hints-overview.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/hints/hints-overview.md index 99edca0c523..959a5bd2e4a 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/hints/hints-overview.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/hints/hints-overview.md @@ -104,4 +104,4 @@ Hint Log 分为三个状态: ## 总结 -Hint 是手动管理执行计划的强大工具。当前 Doris 支持的 leading hint, ordered hint, distribute hint等,可以支撑用户手动管理 join order, shuffle 方式以及其他变量配置,给用户提供更方便有效的的运维能力。 +Hint 是手动管理执行计划的强大工具。当前 Doris 支持的 leading hint, ordered hint, distribute hint等,可以支撑用户手动管理 join order, shuffle 方式以及其他变量配置,给用户提供更方便有效的运维能力。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md index 3f13725237e..7ca96e6e29b 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md @@ -26,7 +26,7 @@ under the License. ## 概述 -上节[诊断工具](diagnostic-tools.md)已经帮助业务和运维人员定位到具体的慢 SQL,本章节开始介绍如何对慢 SQL 的性能瓶颈进行分析,以确定具体慢在 SQL 执行的哪个环节。所以强大的分析工具是性能问题定位的基础和保障。 +上节[诊断工具](diagnostic-tools.md)已经帮助业务和运维人员定位到具体的慢 SQL,本章节开始介绍如何对慢 SQL 的性能瓶颈进行分析,以确定具体慢在 SQL 执行的哪个环节。 一条 SQL 的执行过程大致可以分为计划生成和计划执行两个阶段,前一部分负责生成执行计划,后一部分负责具体计划的执行。这两个部分出现问题都可能导致性能瓶颈的发生。比如生成了差计划,那么即使再优秀的执行器也不可能获得很好的性能。同样一个正确的计划,如果相应的执行手段不合适,也容易产生性能瓶颈。此外,执行器的性能和当前运行的硬件和系统架构有紧密的关系,一些基础设施的缺陷或者配置不正确也会导致性能问题。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/hints/hints-overview.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/hints/hints-overview.md index 99edca0c523..959a5bd2e4a 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/hints/hints-overview.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/hints/hints-overview.md @@ -104,4 +104,4 @@ Hint Log 分为三个状态: ## 总结 -Hint 是手动管理执行计划的强大工具。当前 Doris 支持的 leading hint, ordered hint, distribute hint等,可以支撑用户手动管理 join order, shuffle 方式以及其他变量配置,给用户提供更方便有效的的运维能力。 +Hint 是手动管理执行计划的强大工具。当前 Doris 支持的 leading hint, ordered hint, distribute hint等,可以支撑用户手动管理 join order, shuffle 方式以及其他变量配置,给用户提供更方便有效的运维能力。 diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md index 3f13725237e..7ca96e6e29b 100644 --- a/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md @@ -26,7 +26,7 @@ under the License. ## 概述 -上节[诊断工具](diagnostic-tools.md)已经帮助业务和运维人员定位到具体的慢 SQL,本章节开始介绍如何对慢 SQL 的性能瓶颈进行分析,以确定具体慢在 SQL 执行的哪个环节。所以强大的分析工具是性能问题定位的基础和保障。 +上节[诊断工具](diagnostic-tools.md)已经帮助业务和运维人员定位到具体的慢 SQL,本章节开始介绍如何对慢 SQL 的性能瓶颈进行分析,以确定具体慢在 SQL 执行的哪个环节。 一条 SQL 的执行过程大致可以分为计划生成和计划执行两个阶段,前一部分负责生成执行计划,后一部分负责具体计划的执行。这两个部分出现问题都可能导致性能瓶颈的发生。比如生成了差计划,那么即使再优秀的执行器也不可能获得很好的性能。同样一个正确的计划,如果相应的执行手段不合适,也容易产生性能瓶颈。此外,执行器的性能和当前运行的硬件和系统架构有紧密的关系,一些基础设施的缺陷或者配置不正确也会导致性能问题。 diff --git a/versioned_docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md b/versioned_docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md index fc3e80044e5..c5707610a2d 100644 --- a/versioned_docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md +++ b/versioned_docs/version-2.1/query-acceleration/performance-tuning-overview/analysis-tools.md @@ -26,7 +26,7 @@ under the License. ## Overview -The previous section on [diagnostic tools](diagnostic-tools.md) helped business and operations personnel pinpoint specific slow SQL queries. This section will introduce how to analyze the performance bottlenecks of slow SQL to determine which part of the SQL execution process is causing the slowdown. Powerful analysis tools are the foundation and guarantee for locating performance issues. +The previous section on [diagnostic tools](diagnostic-tools.md) helped business and operations personnel pinpoint specific slow SQL queries. This section will introduce how to analyze the performance bottlenecks of slow SQL to determine which part of the SQL execution process is causing the slowdown. The execution process of an SQL query can be roughly divided into two stages: plan generation and plan execution. The former is responsible for generating the execution plan, while the latter executes the specific plan. Issues in either part can lead to performance bottlenecks. For example, if a poor plan is generated, no matter how excellent the executor is, good performance cannot be achieved. Similarly, even with a correct plan, inappropriate execution methods can also lead to perform [...] diff --git a/versioned_docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md b/versioned_docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md index fc3e80044e5..c5707610a2d 100644 --- a/versioned_docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md +++ b/versioned_docs/version-3.0/query-acceleration/performance-tuning-overview/analysis-tools.md @@ -26,7 +26,7 @@ under the License. ## Overview -The previous section on [diagnostic tools](diagnostic-tools.md) helped business and operations personnel pinpoint specific slow SQL queries. This section will introduce how to analyze the performance bottlenecks of slow SQL to determine which part of the SQL execution process is causing the slowdown. Powerful analysis tools are the foundation and guarantee for locating performance issues. +The previous section on [diagnostic tools](diagnostic-tools.md) helped business and operations personnel pinpoint specific slow SQL queries. This section will introduce how to analyze the performance bottlenecks of slow SQL to determine which part of the SQL execution process is causing the slowdown. The execution process of an SQL query can be roughly divided into two stages: plan generation and plan execution. The former is responsible for generating the execution plan, while the latter executes the specific plan. Issues in either part can lead to performance bottlenecks. For example, if a poor plan is generated, no matter how excellent the executor is, good performance cannot be achieved. Similarly, even with a correct plan, inappropriate execution methods can also lead to perform [...] --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org