[skip ci]Update typos in segment growing md (#12460)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
This commit is contained in:
yanliang567 2021-12-01 15:30:08 +08:00 committed by GitHub
parent a44c00b0d0
commit ac36eb81ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.