Ask HN: Seeking a Vector Database for ClickHouse Users – Suggestions Appreciated
I am currently working on a project that requires me to store and efficiently query large amounts of multidimensional data, and I believe a vector database could provide the perfect solution. However, I am unsure which one would best integrate with ClickHouse.
If any of you have had experience using a vector database in conjunction with ClickHouse, I would be immensely grateful for your recommendations and insights.
9 comments
[ 4.1 ms ] story [ 28.9 ms ] threadClickHouse already works good for vector search.
For example, if you have one million of vectors of 1024 dimensions, and you search nearest vectors to a vector by brute force search, the query will take 150 ms, which is good for a reccomendation system scenario for e-commerce, food-tech, and similar applications.
Example:
https://clickhouse.com/docs/en/sql-reference/functions/dista...
Disclaimer: I work for MyScale.
Disclaimer, I'm from the Marqo team.
It is open source, super fast and really easy to work with. Plus, it can easily handle huge volumes, we even have it running with a billion objects.