mirror of
https://github.com/qdrant/qdrant.git
synced 2026-07-26 12:41:04 -05:00
* extend comments for strorage crate * update comments and readme for collection crate * apply cargo fmt * fix tests * apply fmt
24 lines
514 B
Plaintext
24 lines
514 B
Plaintext
flowchart LR
|
|
collection --o segment1
|
|
collection --o segment2
|
|
collection --o segment3-proxy
|
|
collection --o WAL
|
|
collection --o Updaters>Updater Process]
|
|
|
|
subgraph segments
|
|
subgraph segment1
|
|
Vectors1[Vector-store]
|
|
Payload1[Payload]
|
|
end
|
|
subgraph segment2
|
|
Payload -.- Payload-index
|
|
Vector-store -.- Vector-index
|
|
ID-mapping
|
|
Version-store
|
|
end
|
|
subgraph segment3-proxy
|
|
removed-list
|
|
old-segment -.->|copy| copy-on-write-segment
|
|
old-segment -->|rebuild| optimized-segment
|
|
end
|
|
end |