Files
qdrant/lib/collection/docs/collection-struct.mmd
Andrey Vasnetsov 97b2270485 Rustdoc and README for internal entities and processes (#123)
* extend comments for strorage crate

* update comments and readme for collection crate

* apply cargo fmt

* fix tests

* apply fmt
2021-11-29 09:39:22 +01:00

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