From d844bbc592ac7b4baf8273cf015133d3be0d5040 Mon Sep 17 00:00:00 2001 From: Bennu Date: Tue, 4 Jan 2022 14:19:32 +0800 Subject: [PATCH] [skip e2e] Fix grammar (#14755) Signed-off-by: Bennu --- docs/design_docs/milvus_timesync_en.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/milvus_timesync_en.md b/docs/design_docs/milvus_timesync_en.md index 834b83739b..018b7024da 100644 --- a/docs/design_docs/milvus_timesync_en.md +++ b/docs/design_docs/milvus_timesync_en.md @@ -96,7 +96,7 @@ The 3 `InsertMsg` from `Proxy1` are incremented in timestamp, and the 2 `InsertM ![msgstream](./graphs/timesync_msgstream.png) -So the second problem has turned into this: after reading a message from `MsgStream`, how to make sure that all the messages with smaller timestamp have been consumed? +So the second problem has turned into this: After reading a message from `MsgStream`, how to make sure that all the messages with smaller timestamp have been consumed? For example, when reading a message with timestamp `110` produced by `Proxy2`, but the message with timestamp `80` produced by `Proxy1`, is still in the `MsgStream`. How can this situation be handled?