This is an automated email from the ASF dual-hosted git repository.
morrySnow 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 189a8b60d99 [Docs] Remove obsolete Nereids replay documentation (#4143)
189a8b60d99 is described below
commit 189a8b60d99aa6907bc349168f1eebc3ecacec2a
Author: morrySnow <[email protected]>
AuthorDate: Wed Sep 16 11:16:33 2026 +0800
[Docs] Remove obsolete Nereids replay documentation (#4143)
## Summary
- Remove the `PLAN REPLAYER DUMP` page and sidebar entry from the dev
English and Chinese docs.
- Remove the obsolete `nereids_trace_log_dir` FE configuration
documentation.
- Keep versioned documentation unchanged because apache/doris#67811
targets `master`; the older versions still retain these interfaces.
Related code change: apache/doris#67811
No redirect is added because the removed statement and endpoint have no
replacement. Versioned documentation URLs remain available for older
releases.
---
docs/admin-manual/config/fe-config.md | 6 --
.../session/queries/PLAN-REPLAYER-DUMP.md | 79 ----------------------
.../current/admin-manual/config/fe-config.md | 6 --
.../session/queries/PLAN-REPLAYER-DUMP.md | 79 ----------------------
sidebars.ts | 1 -
5 files changed, 171 deletions(-)
diff --git a/docs/admin-manual/config/fe-config.md
b/docs/admin-manual/config/fe-config.md
index 93ddc0f8126..b17ae9715a8 100644
--- a/docs/admin-manual/config/fe-config.md
+++ b/docs/admin-manual/config/fe-config.md
@@ -1821,12 +1821,6 @@ Default: false
If true, will compress fe.audit.log by gzip
-#### `nereids_trace_log_dir`
-
-Default: DorisFE.DORIS_HOME_DIR + "/log/nereids_trace"
-
-Used to specify the directory of the nereids trace log
-
### Storage
#### `min_replication_num_per_tablet`
diff --git
a/docs/sql-manual/sql-statements/session/queries/PLAN-REPLAYER-DUMP.md
b/docs/sql-manual/sql-statements/session/queries/PLAN-REPLAYER-DUMP.md
deleted file mode 100644
index b06b9b2b404..00000000000
--- a/docs/sql-manual/sql-statements/session/queries/PLAN-REPLAYER-DUMP.md
+++ /dev/null
@@ -1,79 +0,0 @@
----
-{
- "title": "PLAN REPLAYER DUMP",
- "language": "en",
- "description": "PLAN REPLAYER DUMP is a tool for Doris users to generate
execution plan diagnostic files. It captures the state and input data of the
query optimizer,"
-}
----
-
-## Description
-
-PLAN REPLAYER DUMP is a tool for Doris users to generate execution plan
diagnostic files. It captures the state and input data of the query optimizer,
facilitating debugging and analysis of query optimization issues. The output is
the http address of the corresponding diagnostic file.
-
-
-## Syntax
-
-```sql
-PLAN REPLAYER DUMP <query>
-```
-
-
-## Required Parameters
-
-`<query>`
-
-
-- Refers to the query statement inside the corresponding DML.
-- If it is not a query statement, a parse error will be reported.
-- For more details, please refer to the
[SELECT](https://doris.apache.org/docs/dev/sql-manual/sql-statements/data-query/SELECT)
syntax.
-
-
-## Permission Control
-
-
-Users executing this SQL command must have at least the following permissions:
-
-
-| Privilege | Object | Notes |
-| :--: | :--: | :--: |
-| SELECT_PRIV | Table, View | When executing the <query_sql_statement>, the
SELECT_PRIV permission for the queried table, view, or materialized view is
required. |
-
-
-## Examples
-
-
-### Basic Example
-
-```sql
-create database test_replayer;
-use database test_replayer;
-create table t1 (c1 int, c11 int) distributed by hash(c1) buckets 3
properties('replication_num' = '1');
-plan replayer dump select * from t1;
-```
-
-
-Execution result example:
-
-```sql
-+-------------------------------------------------------------------------------+
-| Plan Replayer dump url
|
-+-------------------------------------------------------------------------------+
-|
http://127.0.0.1:8030/api/minidump?query_id=6e7441f741e94afd-ad3ba69429ad18ec |
-+-------------------------------------------------------------------------------+
-```
-
-
-You can use curl or wget to obtain the corresponding file, for example:
-
-```sql
-wget
http://127.0.0.1:8030/api/minidump?query_id=6e7441f741e94afd-ad3ba69429ad18ec
-```
-
-
-When permissions are required, you can include the username and password in:
-
-```sql
-wget --header="Authorization: Basic $(echo -n 'root:' | base64)"
http://127.0.0.1:8030/api/minidump?query_id=6e7441f741e94afd-ad3ba69429ad18ec
-```
-```
-
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
index 27d27925cd7..2e382d30754 100644
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
+++
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/config/fe-config.md
@@ -1832,12 +1832,6 @@ HOUR: log 前缀是:yyyyMMddHH
控制是否压缩 fe.audit.log。如果开启,则使用 gzip 算法进行压缩。
-#### `nereids_trace_log_dir`
-
-默认值:DorisFE.DORIS_HOME_DIR + "/log/nereids_trace"
-
-用于存储 nereids trace 日志的目录
-
### 存储
#### `min_replication_num_per_tablet`
diff --git
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/session/queries/PLAN-REPLAYER-DUMP.md
b/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/session/queries/PLAN-REPLAYER-DUMP.md
deleted file mode 100644
index 99fa65e6a1a..00000000000
---
a/i18n/zh-CN/docusaurus-plugin-content-docs/current/sql-manual/sql-statements/session/queries/PLAN-REPLAYER-DUMP.md
+++ /dev/null
@@ -1,79 +0,0 @@
----
-{
- "title": "PLAN REPLAYER DUMP",
- "language": "zh-CN",
- "description": "PLAN REPLAYER DUMP 是 Doris
用户用来生成执行规划诊断文件的工具。用于捕捉查询优化器的状态和输入数据,方便调试和分析查询优化问题。其输出为对应诊断文件的 http 地址。"
-}
----
-
-## 描述
-
-PLAN REPLAYER DUMP 是 Doris
用户用来生成执行规划诊断文件的工具。用于捕捉查询优化器的状态和输入数据,方便调试和分析查询优化问题。其输出为对应诊断文件的 http 地址。
-
-
-## 语法
-
-
-```sql
-PLAN REPLAYER DUMP <query>
-```
-
-## 必选参数
-
-`<query>`
-
-- 指的是对应的 DML 里面的 query 语句
-- 如果不是 query 语句则会报 parse 错误
-- 有关更多详细信息,请参阅[SELECT](../../data-query/SELECT)
-
-## 权限控制
-
-
-执行此 SQL 命令的用户必须至少具有以下权限:
-
-
-| 权限(Privilege) | 对象(Object) | 说明(Notes)
|
-| :---------------- | :------------------------ |
:----------------------------------------------------------- |
-| SELECT_PRIV | 表(Table), 视图(View) | 当执行 <query_sql_statement>
时,需要拥有被查询的表,视图或物化视图的 SELECT_PRIV 权限 |
-
-
-## 示例
-
-
-### 基础示例
-
-
-```sql
-create database test_replayer;
-use database test_replayer;
-create table t1 (c1 int, c11 int) distributed by hash(c1) buckets 3
properties('replication_num' = '1');
-plan replayer dump select * from t1;
-```
-
-执行结果示例:
-
-
-```sql
-+-------------------------------------------------------------------------------+
-| Plan Replayer dump url
|
-| Plan Replayer dump url |
-+-------------------------------------------------------------------------------+
-|
http://127.0.0.1:8030/api/minidump?query_id=6e7441f741e94afd-ad3ba69429ad18ec |
-+-------------------------------------------------------------------------------+
-```
-
-可以使用 curl 或者 wget 获取对应的文件,例如:
-
-
-```sql
-wget
http://127.0.0.1:8030/api/minidump?query_id=6e7441f741e94afd-ad3ba69429ad18ec
-```
-
-当需要权限的时候可以把用户名和密码包含在
-
-
-```sql
-wget --header="Authorization: Basic $(echo -n 'root:' | base64)"
http://127.0.0.1:8030/api/minidump?query_id=6e7441f741e94afd-ad3ba69429ad18ec
-```
-```
-
diff --git a/sidebars.ts b/sidebars.ts
index 47ec77dce94..857c1dd7b24 100644
--- a/sidebars.ts
+++ b/sidebars.ts
@@ -2442,7 +2442,6 @@ const sidebars: SidebarsConfig = {
'sql-manual/sql-statements/session/queries/CLEAN-ALL-PROFILE',
'sql-manual/sql-statements/session/queries/SHOW-QUERY-STATS',
'sql-manual/sql-statements/session/queries/CLEAN-ALL-QUERY-STATS',
-
'sql-manual/sql-statements/session/queries/PLAN-REPLAYER-DUMP',
],
},
{
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]