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

add unit for time latency #2120

Merged
merged 2 commits into from
Sep 15, 2022
Merged
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,7 @@ drainer:机器 IP 地址为`192.168.10.104`,只启动 drainer 服务。
5. 进入图空间`replication_basketballplayer`,设置 drainer 服务。

```
nebula> USE replication_basketballplayer;
//设置 drainer 服务。
nebula> ADD DRAINER 192.168.10.104:9889;
//查看 drainer 状态。
Expand All @@ -215,14 +216,13 @@ drainer:机器 IP 地址为`192.168.10.104`,只启动 drainer 服务。
+-------------------------+----------+
```

6. 修改图空间为只读
6. 修改图空间`replication_basketballplayer`为只读

!!! note

修改为只读是防止误操作导致数据不一致。只影响该图空间,其他图空间仍然可以读写。

```
nebula> USE replication_basketballplayer;
//设置当前图空间为只读。
nebula> SET VARIABLES read_only=true;
//查看当前图空间的读写属性。
Expand Down Expand Up @@ -355,7 +355,7 @@ nebula> SHOW SYNC STATUS;
| PartId | 主集群中图空间对应的分片 ID。当值为`0`时,表示图空间中 Meta listener 同步 Meta 数据所在的分片 ID。当为其他值时,表示相应图空间中 Storage listener 同步 Storage 数据所在的分片ID。 |
| Sync Status | 表示 listener 的状态。<br>当值为`ONLINE`时,listener 持续发送数据给 drainer。<br>当值为`OFFLINE`时,listener 停止发送数据给 drainer。|
| LogId Lag | 表示的 Log ID 间隔,也就是主集群对应分片还有多少条 Log 往从集群发送。<br>当值为`0`时,表示主集群对应分片中没有 Log 需要发送。|
| Time Latency | 主集群的对应分片中需要发送最后一条 Log 的 WAL 中的时间戳与已经发送的最后一条 Log 的 WAL 中的时间戳差值。<br>当值为`0`时,表示数据已经发送至从集群。 |
| Time Latency | 主集群的对应分片中需要发送最后一条 Log 的 WAL 中的时间戳与已经发送的最后一条 Log 的 WAL 中的时间戳差值。<br>当值为`0`时,表示数据已经发送至从集群。<br>单位:毫秒(ms)。 |

### 查看从集群同步数据的状态

Expand Down Expand Up @@ -391,7 +391,7 @@ nebula> SHOW DRAINER SYNC STATUS;
| PartId | 主集群中图空间对应的分片 ID。当值为`0`时,表示要同步的 Meta 所在的分片 ID。当为其他值时,表示要同步的 Storage 所在的分片ID。|
| Sync Status | 表示 drainer 的状态。<br>当值为`ONLINE`时,drainer 持续发送 WAL 给从集群的`metaClient`/`storageClient`进行同步。<br>当值为`OFFLINE`时,drainer 停止发送 WAL 给从集群的`metaClient`/`storageClient`进行同步。|
| LogId Lag | 表示的 Log ID 间隔,也就是从集群 drainer 中对应分片还有多少条 Log 往从集群的`metaClient`/`storageClient`进行同步。<br>当值为`0`时,表示从集群的 drainer 中对应的分片没有 Log 需要同步。|
| Time Latency | 从集群 drainer 中对应分片接收到的最新 Log 的 WAL 中的时间戳与已经同步给从集群的最后一条 Log 的 WAL 中的时间戳差值。<br>当值为`0`时,表示 drainer 中对应分片数据已经同步至从集群中。|
| Time Latency | 从集群 drainer 中对应分片接收到的最新 Log 的 WAL 中的时间戳与已经同步给从集群的最后一条 Log 的 WAL 中的时间戳差值。<br>当值为`0`时,表示 drainer 中对应分片数据已经同步至从集群中。<br>单位:毫秒(ms)。|


## 切换主从集群
Expand Down