6 ms·
I’ve been using this since early this year and it’s been great. It was what convinced me to just stick to Postgres rather than using a dedicated vector db. Onl
by ricw 9mo ago
I’ve been using this since early this year and it’s been great. It was what convinced me to just stick to Postgres rather than using a dedicated vector db.
Only working with 100m or so vectors, but for that it does the job.
- pqdbr 9mo agoAre you using a dedicated pg instance for vector or you keep all your data in a single pg instance (vector and non-vector)?
- ComputerGuru 9mo agoThe biggest selling point to using Postgres over qdrant or whatever is that you can put all the data in the same db and use joins and ctes, foreign keys and other constraints, lower latency, get rid of effectively n+1 cases, and ensure data integrity.
- dalberto 9mo agoI generally agree that one database instance is ideal, but there are other reasons why Postgres everywhere is advantageous, even across multiple instances: - Expertise: it's just SQL for the most part - Ecosystem: same ORM, same connection pooler - Portability: all major clouds have managed Postgres I'd gladly take multiple Postgres instances even if I lose cross-database joins.
- throwaway7783 9mo agoYep. If performance becomes a concern, but we still want to exploit joins etc, it's easy to set up replicas and "shard" read only use cases across replicas.
- nicholasjarnold 9mo agoPostgres supports the Foreign Data Wrapper concept from SQL/MED. If you configure this you can do joins across instances, even! https://www.postgresql.org/docs/current/postgres-fdw.html https://www.postgresql.org/docs/current/postgres-fdw.html
- ricw 9mo agoAll in one of course. That’s the biggest advantage. And why postgres is great - it covers virtually all standard use cases.
- esafak 9mo agoWhat kind of performance do you observe with what setup?
- ricw 9mo agoDepends on the query and I don’t have exact numbers of the top of my head, but we’re talking low 100ms range for something pgvector itself wasn’t able to handle in a reasonable amount of time.