From 171c04b8b895d1b6b4b5a5ae2bc0dc99dc5c6f11 Mon Sep 17 00:00:00 2001 From: "edward.zeng" Date: Sun, 26 Sep 2021 21:05:58 +0800 Subject: [PATCH] [skip ci] Refine developer doc section number (#8617) Signed-off-by: Edward Zeng --- docs/developer_guides/chap07_query_coordinator.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/developer_guides/chap07_query_coordinator.md b/docs/developer_guides/chap07_query_coordinator.md index 11a3bf6fcd..af0765f7e2 100644 --- a/docs/developer_guides/chap07_query_coordinator.md +++ b/docs/developer_guides/chap07_query_coordinator.md @@ -1,14 +1,14 @@ -## 8. Query Coordinator +## 7. Query Coordinator -#### 8.1 Overview +#### 7.1 Overview -#### 8.2 Query Coordinator Interface +#### 7.2 Query Coordinator Interface ```go type QueryCoord interface { @@ -185,7 +185,7 @@ type GetSegmentInfoResponse struct { } ``` -#### 8.3 Query Channel +#### 7.3 Query Channel * *SearchMsg* @@ -231,7 +231,7 @@ type RetriveMsg struct { } ``` -#### 8.4 Query Node Interface +#### 7.4 Query Node Interface ```go type QueryNode interface { @@ -354,7 +354,7 @@ type GetSegmentInfoResponse struct { //TODO -#### 8.2 Collection Replica +#### 7.5 Collection Replica $collectionReplica$ contains a in-memory local copy of persistent collections. In common cases, the system has multiple query nodes. Data of a collection will be distributed across all the available query nodes, and each query node's $collectionReplica$ will maintain its own share (only part of the collection). Every replica tracks a value called tSafe which is the maximum timestamp that the replica is up-to-date.