From ac36eb81efad74e60f2b13ef823a9bf78a3da7f0 Mon Sep 17 00:00:00 2001 From: yanliang567 <82361606+yanliang567@users.noreply.github.com> Date: Wed, 1 Dec 2021 15:30:08 +0800 Subject: [PATCH] [skip ci]Update typos in segment growing md (#12460) Signed-off-by: yanliang567 --- docs/design_docs/segcore/segment_growing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/design_docs/segcore/segment_growing.md b/docs/design_docs/segcore/segment_growing.md index 1279028ccb..2be12f09fe 100644 --- a/docs/design_docs/segcore/segment_growing.md +++ b/docs/design_docs/segcore/segment_growing.md @@ -14,7 +14,7 @@ Growing segment stores data in the form of chunk. The number of rows in each chu Rows per segment is controlled by parameters `size_per_Chunk ` config -When insert, first allocate enough space to ensure `total_size <= num_chunk * size_per_chunk`, and then convert data from row format to column format. +When inserting, first allocate enough space to ensure `total_size <= num_chunk * size_per_chunk`, and then convert data from row format to column format. During search, each 'chunk' will be searched, and the search results will be saved as 'subquery result', then reduced into TopK.