From 607cf143058b8c88ef0b96777716d8ab34ed0aab Mon Sep 17 00:00:00 2001 From: "edward.zeng" Date: Mon, 8 Nov 2021 20:28:08 +0800 Subject: [PATCH] [skip ci] Refine milvus index design doc (#11440) Signed-off-by: Edward Zeng --- docs/design_docs/index_design.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/index_design.md b/docs/design_docs/index_design.md index 93085239d..f4235f581 100644 --- a/docs/design_docs/index_design.md +++ b/docs/design_docs/index_design.md @@ -174,7 +174,7 @@ type Meta struct { Meta is used to record the state of the index. - Revision: The number of times IndexMeta has been changed in etcd. It's the same as Event.Kv.Version in etcd. - When IndexCoord watches the IndexMeta in etcd is changed, can compare `revision` and Event.Kv.Versionto determine + When IndexCoord watches the IndexMeta in etcd is changed, can compare `revision` and Event.Kv.Version to determine this modification of IndexMeta is caused by IndexCoord or IndexNode. If it is caused by IndexNode, the Meta in IndexCoord must be updated. -- GitLab