未验证 提交 b2f2853d 编写于 作者: J Jael Gu 提交者: GitHub

[skip ci]Fix typo in design doc of segment_interface (#9562)

Signed-off-by: NJael Gu <mengjia.gu@zilliz.com>
上级 80ac456c
......@@ -10,30 +10,30 @@
See design details `${milvus_root}/internal/core/src/segcore/SegmentInterface.h`
## Basic Concepts:
1. Segment: Data sharded into segment based on written timestamp , and the sharded logic is controlled by data coordinator.
2. chunk: further division of segment data, chunk is continuous data for each column
1. Segment: Data sharded into segment based on written timestamp, and the sharding logic is controlled by data coordinator.
2. Chunk: further division of segment data, chunk is continuous data for each column
* There will be only one chunk in each sealed segment.
* In growing segment, chunks are currently divided by a fixed number of rows. With data ingestion, the number of chunks will increase
3. Span: similar to std::span, point to continuous data in memory
4. SystemField: Extra field stored system info, currently including RowID and Timestamp field.
3. Span: Similar to std::span, point to continuous data in memory
4. SystemField: Extra field stores system info, currently including RowID and Timestamp field.
5. SegOffset: The entity identifier in the segment
## SegmentInternalInterface internal functions
1. `num_chunk()`: total chunk number
2. `size_per_chunk()`: length of each chunk
3. `get_active_count(Timestamp)`: entity count after filter by Timestamp
4. `chunk_data(FieldOffset, chunk_id) -> Span<T>`: return continous data for specified column and chunk
4. `chunk_data(FieldOffset, chunk_id) -> Span<T>`: return continuous data for specified column and chunk
5. `chunk_scalar_index(FieldOffset, chunk_id) -> const StructuredIndex<T>&`: return the inverted index of specified column and chunk
6. `num_chunk_index`: The number of indexes (including scalar and vector indexes) that have been created
6. `num_chunk_index`: the number of indexes (including scalar and vector indexes) that have been created:
1. In growing segment, this value is the number of chunks for which the inverted index has been created. In these chunks, the index can be used to speed up the calculation.
2. SealedSegment must be 1
7. `debug()`: Debug is used to print extra information while debugging
8. `vector_search(vec_count, query..., timestamp, bitset, output)`: Search the vector column
1. `vec_count`: Specifies how many entities participate in the vector search calculation, rest of the segments are filterd out because it's timestamp is larger than specified timestamp. This function is mainly used in growing segment as multi version control(MVCC)
2. `query...` Multiple variables jointly specify the parameters and search vector
3. `timestamp`: Timestamp is used for time travelling, filter out data with timestamp. mainly for sealed segment
7. `debug()`: debug is used to print extra information while debugging
8. `vector_search (vec_count, query..., timestamp, bitset, output)`: Search the vector column
1. `vec_count`: specifies how many entities participated in the vector search calculation, rest of the segments are filtered out because it's timestamp is larger than specified timestamp. This function is mainly used in growing segment as multi version control(MVCC)
2. `query...`: multiple variables jointly specify the parameters and search vector
3. `timestamp`: timestamp is used for time travelling, filter out data with timestamp. Mainly for sealed segment
4. `bitset`: calculated bit mask value as a output
5. `output` output QueryResult
5. `output`: output QueryResult
9. `bulk_subscript(FieldOffset|SystemField, seg_offsets..., output)`:
- given seg_offsets, calculate `results[i] = FieldData[seg_offsets[i]]`, for GetEntityByIds
- FieldData is defined by FieldOffset or SystemField
......@@ -43,4 +43,3 @@ See design details `${milvus_root}/internal/core/src/segcore/SegmentInterface.h`
3. Entities without PKs will not be returned
11. `check_search(Plan)`: check if the Plan is valid
1. It mainly checks whether the columns used in the plan have been loaded
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册