diff --git a/docs/en/sql-reference/information_schema/be_cloud_native_compactions.md b/docs/en/sql-reference/information_schema/be_cloud_native_compactions.md index 6eb8904c888f5..434c0f8cd7cd2 100644 --- a/docs/en/sql-reference/information_schema/be_cloud_native_compactions.md +++ b/docs/en/sql-reference/information_schema/be_cloud_native_compactions.md @@ -4,7 +4,7 @@ displayed_sidebar: docs # be_cloud_native_compactions -`be_cloud_native_compactions` provides information on compaction transactions running on CNs (or BEs for v3.0) of a shared-data cluster. A compaction transaction is divided into multiple tasks on the tablet level, and each row in `be_cloud_native_compactions` corresponds to a task in the compaction transaction. +`be_cloud_native_compactions` provides information on compaction transactions running on CNs (or BEs for v3.0) of a shared-data cluster. A compaction transaction is divided into multiple tasks on the partition level, and each row in `be_cloud_native_compactions` corresponds to a task in the compaction transaction. The following fields are provided in `be_cloud_native_compactions`: @@ -20,4 +20,4 @@ The following fields are provided in `be_cloud_native_compactions`: | FINISH_TIME | Task finish time. `NULL` is returned if the task is still in progress. | | PROGRESS | Percentage of progress, ranging from 0 to 100. | | STATUS | Task status. | - +| PROFILE | Real time profile, including data read time、data write time、in-queue time, etc. | diff --git a/docs/zh/sql-reference/information_schema/be_cloud_native_compactions.md b/docs/zh/sql-reference/information_schema/be_cloud_native_compactions.md index a97e2b558c34b..2388f7ae1988e 100644 --- a/docs/zh/sql-reference/information_schema/be_cloud_native_compactions.md +++ b/docs/zh/sql-reference/information_schema/be_cloud_native_compactions.md @@ -4,7 +4,7 @@ displayed_sidebar: docs # be_cloud_native_compactions -`be_cloud_native_compactions` 提供有关存算一体集群的 CN(或 v3.0 中的 BE)上运行的 Compaction 事务的信息。每个 Compaction 任务会以 Tablet 为粒度,拆分为多个子任务,视图中每一行对应的是一个 Tablet 的 Compaction 子任务。 +`be_cloud_native_compactions` 提供有关存算分离集群的 CN(或 v3.0 中的 BE)上运行的 Compaction 事务的信息。每个 Compaction 任务会以 Partition 为粒度,拆分为多个子任务,视图中每一行对应的是一个 Tablet 的 Compaction 子任务。 `be_cloud_native_compactions` 提供以下字段: @@ -20,4 +20,5 @@ displayed_sidebar: docs | FINISH_TIME | 结束执行的时间。如果任务还在执行中,值为 NULL。 | | PROGRESS | 进度的百分比,范围是 0 到 100。 | | STATUS | 任务运行状态。 | +| PROFILE | 实时的 Profile 信息,比如读取数据耗时、写入数据耗时、排队时间等等。 |