Skip to content

Commit 929b531

Browse files
CopilotWenyXu
andcommitted
Address review comments: add Noop WAL link and simplify descriptions
Co-authored-by: WenyXu <[email protected]>
1 parent 6a9aba8 commit 929b531

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

docs/user-guide/deployments-administration/configuration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ Read [Performance Tuning Tips](/user-guide/deployments-administration/performanc
364364

365365
### WAL options
366366

367-
GreptimeDB supports three WAL storage options—Local WAL, Remote WAL, and Noop WAL. See the [WAL Overview](/user-guide/deployments-administration/wal/overview.md) for a comparison of the options. For detailed configurations, refer to the [Local WAL](/user-guide/deployments-administration/wal/local-wal.md) and [Remote WAL](/user-guide/deployments-administration/wal/remote-wal/configuration.md) documentation.
367+
GreptimeDB supports three WAL storage options—Local WAL, Remote WAL, and Noop WAL. See the [WAL Overview](/user-guide/deployments-administration/wal/overview.md) for a comparison of the options. For detailed configurations, refer to the [Local WAL](/user-guide/deployments-administration/wal/local-wal.md), [Remote WAL](/user-guide/deployments-administration/wal/remote-wal/configuration.md), and [Noop WAL](/user-guide/deployments-administration/wal/noop-wal.md) documentation.
368368

369369

370370
### Logging options
@@ -673,7 +673,6 @@ tcp_nodelay = true
673673
# Available wal providers:
674674
# - `raft_engine` (default): there're none raft-engine wal config since metasrv only involves in remote wal currently.
675675
# - `kafka`: metasrv **have to be** configured with kafka wal config when using kafka wal provider in datanode.
676-
# Note: `noop` provider is only available for datanode configuration, not metasrv.
677676
provider = "raft_engine"
678677

679678
# Kafka wal config.

docs/user-guide/deployments-administration/wal/local-wal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you are using Helm Chart to deploy GreptimeDB, you can refer to [Common Helm
2222

2323
| Configuration Option | Description | Default Value |
2424
| -------------------- | -------------------------------------------------------------------------------------------------------------------- | ----------------- |
25-
| `provider` | The provider of the WAL. Options: `raft_engine` (local file system storage), `kafka` (remote WAL storage in Kafka), or `noop` (no-op WAL provider, see [Noop WAL](/user-guide/deployments-administration/wal/noop-wal.md)) | `"raft_engine"` |
25+
| `provider` | The provider of the WAL. Options: `raft_engine` (local file system storage), `kafka` (remote WAL storage in Kafka), or `noop` (no-op WAL provider) | `"raft_engine"` |
2626
| `dir` | The directory where to write logs | `{data_home}/wal` |
2727
| `file_size` | The size of single WAL log file | `128MB` |
2828
| `purge_threshold` | The threshold of the WAL size to trigger purging | `1GB` |

i18n/zh/docusaurus-plugin-content-docs/current/user-guide/deployments-administration/configuration.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ write_cache_size = "10GiB"
356356

357357
### WAL 选项
358358

359-
GreptimeDB 支持三种 WAL 存储方式:本地 WAL、Remote WAL 和 Noop WAL。关于它们的对比,请参见 [WAL 概述](/user-guide/deployments-administration/wal/overview.md)。具体配置可参考 [本地 WAL](/user-guide/deployments-administration/wal/local-wal.md)[Remote WAL](/user-guide/deployments-administration/wal/remote-wal/configuration.md) 文档。
359+
GreptimeDB 支持三种 WAL 存储方式:本地 WAL、Remote WAL 和 Noop WAL。关于它们的对比,请参见 [WAL 概述](/user-guide/deployments-administration/wal/overview.md)。具体配置可参考 [本地 WAL](/user-guide/deployments-administration/wal/local-wal.md)[Remote WAL](/user-guide/deployments-administration/wal/remote-wal/configuration.md)[Noop WAL](/user-guide/deployments-administration/wal/noop-wal.md) 文档。
360360

361361

362362
### Logging 选项
@@ -665,7 +665,6 @@ tcp_nodelay = true
665665
# 可用的 WAL 提供者:
666666
# - `raft_engine`(默认):由于 metasrv 目前仅涉及远程 WAL,因此没有 raft-engine WAL 配置。
667667
# - `kafka`:在 datanode 中使用 kafka WAL 提供者时,metasrv **必须** 配置 kafka WAL 配置。
668-
# 注意:`noop` 提供者仅适用于 datanode 配置,不适用于 metasrv。
669668
provider = "raft_engine"
670669

671670
# Kafka WAL 配置。

i18n/zh/docusaurus-plugin-content-docs/current/user-guide/deployments-administration/wal/local-wal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ sync_write = false
2323

2424
| 配置项 | 描述 | 默认值 |
2525
| ----------------- | ----------------------------------------------------------------------------------------------- | ----------------- |
26-
| `provider` | WAL 的提供者。可选项:`raft_engine`(本地文件系统存储)、`kafka`(使用 Kafka 的远程 WAL 存储)或 `noop`(无操作 WAL 提供者,参见 [Noop WAL](/user-guide/deployments-administration/wal/noop-wal.md)| `"raft_engine"` |
26+
| `provider` | WAL 的提供者。可选项:`raft_engine`(本地文件系统存储)、`kafka`(使用 Kafka 的远程 WAL 存储)或 `noop`(无操作 WAL 提供者) | `"raft_engine"` |
2727
| `dir` | 日志写入目录 | `{data_home}/wal` |
2828
| `file_size` | 单个 WAL 日志文件的大小 | `128MB` |
2929
| `purge_threshold` | 触发清理的 WAL 总大小阈值 | `1GB` |

0 commit comments

Comments
 (0)