From 1617490b4e1ac58d21e77cab266d1b4ac2896f79 Mon Sep 17 00:00:00 2001 From: "min.tian" Date: Tue, 21 Dec 2021 09:19:02 +0800 Subject: [PATCH] [skip e2e] Check the syntax of retrieve_entity md (#13685) Signed-off-by: min.tian --- docs/design_docs/retrieve_entity.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/retrieve_entity.md b/docs/design_docs/retrieve_entity.md index 6e4e38a875..457610a25c 100644 --- a/docs/design_docs/retrieve_entity.md +++ b/docs/design_docs/retrieve_entity.md @@ -45,7 +45,7 @@ The processing flow after QueryNode reads the Get request from `search` channel: 4. Convert the statistics into an inverted index from Range to SegmentID for each `Sealed` segment; 5. Check whether the requested primary key exists in any inverted index of `Sealed` segment, return empty if not found; 6. [optional] Use the bloomfilter to filter out segments where the primary key does not exist; -7. Use binary search to find specified entity in each segment where the primary key may exist; +7. Use binary search to find the specified entity in each segment where the primary key may exist; ### APIs