What storage does qdrant use? FAISS or something else? What persistence storage does qdrant? #2540
Replies: 2 comments 7 replies
-
Qdrant uses a custom storage format that is intended to best suit our use case, though we do utilize RocksDB in some places. With regards to serving requests, Qdrant can serve data from RAM and from disk, configurable by the user.
Similarity calculations are also custom and make use of architecture-specific optimizations such as SIMD to make this as performant as possible. FAISS is not used anywhere.
Qdrant stores data on disk. So any storage medium can be used, though it is highly recommended to utilize a fast (IOPS/throughput) storage medium to achieve the best results. |
Beta Was this translation helpful? Give feedback.
-
But is it possible to have only one replica on each node (without fault tolerance) but spread the data across different nodes? (so I have 500GB of data, but every PC has only 100GB RAM.) |
Beta Was this translation helpful? Give feedback.
-
What storage does qdrant use? FAISS or something else? What persistence storage does qdrant?
Beta Was this translation helpful? Give feedback.
All reactions