Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modify some desc about compaction and replication-between-clusters #2107

Merged
merged 3 commits into from
Sep 2, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs-2.0/8.service-tuning/compaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ nebula> SHOW JOB <job_id>;
- 白天时设置`disable_auto_compactions`为`false`,提升短时间内的读取性能。
-->

- 为控制`Compaction`的读写速率,请在配置文件`nebula-storaged.conf`中设置如下参数:
- 为控制`Compaction`的写入速率,请在配置文件`nebula-storaged.conf`中设置如下参数(注:此参数限制全部写入,包括正常写入和compaction)
abby-cyber marked this conversation as resolved.
Show resolved Hide resolved

```bash
# 读写速率限制为 20MB/S。
# 写入速度限制为 20MB/S。
--rocksdb_rate_limit=20 (in MB/s)
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ drainer:机器 IP 地址为`192.168.10.104`,只启动 drainer 服务。

### 从集群中已经有 data 了,数据同步会有影响吗?

仍然会进行全量数据同步。如果从集群中的数据是主集群数据的子集,最终会数据一致;如果不是主集群数据的子集,从集群不会进行反向同步,而且这部分数据会保留,请确保主从集群数据不会冲突。
仍然会进行全量数据同步。如果从集群中的数据是主集群数据的子集,最终会数据一致;如果不是主集群数据的子集,从集群不会进行反向同步,而且这部分数据可能会受到影响,请确保主从集群数据不会冲突;建议保持从集群数据为空

### 从集群中已经有 Schema 了,数据同步会有影响吗?

Expand Down