Vector databases are expensive because they need tons of memory and CPU for similarity searches. Unlike regular databases that just store shit, vector databases have to maintain complex indices (like HNSW) and run computationally heavy similarity calculations on high-dimensional data.
Here's what actually drives costs: storage for your vectors (this adds up fast - we hit 50GB before we realized it), compute for indexing and queries (memory-intensive as hell - Qdrant's memory usage spikes to 3x normal during batch inserts), and data transfer fees that nobody mentions until your first bill shows up. AWS hits you with $0.09/GB for outbound transfer which adds up when you're moving millions of vectors around. Learned that one during a migration when we got slapped with $400 in transfer fees.
Pinecone nickel-and-dimes you with separate charges for everything - storage costs $0.33/GB monthly, writes are $4-6 per million operations, and reads cost $16-24 per million. Our bill jumped from around $200 to over 2 grand overnight when we crossed some undocumented usage threshold - maybe $2,400? I'd have to dig up the invoice but it was fucking brutal. The multi-part billing caught us completely off guard.
Pay-per-use vs subscription models
Zilliz starts at $0.30/GB monthly for consumption-based pricing, which sounds reasonable until you scale. Fixed-tier subscriptions from providers like Weaviate give predictable costs but can be expensive - they charge $0.095 per million vector dimensions, so high-dimensional OpenAI embeddings (1,536 dimensions) get pricey fast.
Enterprise pricing is a nightmare
You need dedicated clusters, private networking, compliance features, and SLA guarantees. Qdrant's hybrid model starts at $0.014/hour to connect self-hosted to managed services, but enterprise contracts require custom pricing negotiations where they basically charge whatever they want. The Pinecone sales guy kept pushing their enterprise plan - told him our startup budget was basically ramen noodles and hope. Don't even get me started on the sales calls and "custom solutions" - it's all bullshit designed to extract maximum cash from your budget. Three months of back-and-forth just to get a quote that was 4x our entire infrastructure budget.
AWS S3 Vectors
AWS S3 Vectors just hit preview in July 2025 and claims up to 90% cost reductions compared to traditional vector databases. The performance trade-offs are real though - this is object storage, not a speed demon. If you don't need sub-100ms queries, this could potentially save you thousands monthly. Still too new to have real production battle stories, but initial tests look promising for batch workloads and cold storage scenarios.