[skip ci]Refine words in segment sealed md (#11883)

Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
This commit is contained in:
yanliang567 2021-11-16 18:49:10 +08:00 committed by GitHub
parent 6ce0e39ad0
commit 0fe8829fda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@ SegmentSealed has an extra interface rather than SegmentInterface:
3. `VecIndex`: vector index 3. `VecIndex`: vector index
2. `LoadFieldData(loadFieldDataInfo)`: load column data, could be either scalar column or vector column 2. `LoadFieldData(loadFieldDataInfo)`: load column data, could be either scalar column or vector column
1. Note: indexes and vector data for the same column may coexist. Indexes are prioritized in search 1. Note: indexes and vector data for the same column may coexist. Indexes are prioritized in search
3. `DropIndex(fieldId)`: drop and release existed index of specified field 3. `DropIndex(fieldId)`: drop and release an existing index of a specified field
4. `DropFieldData(fieldId)`: drop and release existed data for specified field 4. `DropFieldData(fieldId)`: drop and release existed data for a specified field
Search is executable as long as all the columns involved in the search are loaded. Search is executable as long as all the columns involved in the search are loaded.