milvus/docs/design_docs/segcore/timetravel.md
yanliang567 49c9cae18b
[skip ci]Refine words in time travel md (#12047)
Signed-off-by: yanliang567 <yanliang.qiao@zilliz.com>
2021-11-29 14:19:24 +08:00

1.5 KiB
Raw Blame History

Time Travel Implementation (Segment Level)

CurrentlyThere are two paths to implement time travel:

  1. Restrict with vec_count, used in growing segment
  2. Generate bitmask and combine it with DSL calculation results. It is mainly used in sealed segment

Growing Segment Time Travel

  1. When inserting, ensure that the inserted data is in ascending time order
  2. Find the location of timestamp with binary search and record it as vec_count
  3. Call vector_search interface and rest is handled inside segment, no need to handle bitmask generated by DSL

SealedSegment Time Travel

  1. During load, data is placed in a continuous memory area named chunk, with following properties:

    1. Data is divided into multiple segments
    2. Data in one segment is ordered by primary key
    3. Data between Segments is in timestamp order. That is, the timestamp of every entity in the previous segment must be less than the timestamp of the first entity in next segment
  2. The Algorithm for time travel is

    1. Use get_active_count interface, find the last segment containing a legal ts, and return the last element position of this segment as vec_count
    2. Calculate the bitset mask with timestamp. Due to the above properties, all the entities of the previous segment meet the conditions, and all the subsequent segments do not meet the conditions. Only the "last segment" needs to be calculated.
    3. the calculated results of Bitset and DSL are combined and sent to vector search interface