mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
699 B
699 B
SegmentSealed
SegmentSealed has extra interface rather than segment_inferface:
LoadIndex(loadIndexInfo): load the index. indexInfo containtsFieldIdIndexParams: index paramters in KV structure KVVecIndex: vector index
LoadFieldData(loadFieldDataInfo): Load column data, could be either scalar column or vector column- Note: indexes and vector data for the same column may coexist. Indexes are prioritized in search
DropIndex(fieldId): drop and release exist index of specified fieldDropFieldData(fieldId): drop and release exist data for specified field
Search is executatble as long as all the column involved in the search are loaded.