Home Science Qdrant raises

Qdrant raises

1
0
Vector search is becoming a critical infrastructure for AI in production. Qdrant, the open-source engine written in Rust and based in Berlin, is one of the strongest building blocks: 250 million downloads, 29,000 stars on GitHub, clients like Tripadvisor, HubSpot, OpenTable, and Bosch. The announcement of a €46 million Series B round led by AVP, with Bosch Ventures, Unusual Ventures, Spark Capital, and 42CAP, confirms that the topic is being taken very seriously by investors.

But what sets Qdrant apart in an increasingly crowded field of vector databases is not just the funding, but the architecture. Where most competitors have been built to store dense embeddings and return the nearest neighbors – useful, but limited – Qdrant was designed from the start for real production AI workloads: thousands of requests per workflow, continuously changing data, RAG pipelines, and agent loops that require reliable recovery under sustained pressure.

Composable vector search: choosing primitives on demand

The central concept of Qdrant is composable vector search. Instead of imposing opaque default values, the engine exposes each retrieval layer as a controllable primitive: dense vectors, sparse vectors, metadata filters, multi-vector representations, custom scoring functions. Teams combine these elements at query time according to their priorities – maximum accuracy, minimal latency, cost optimization – without having to rethink the architecture for every change in requirements.

The choice of Rust is not accidental: it ensures high performance and reliability under load, two essential qualities when vector search is running in critical environments. The engine is released under the Apache 2.0 license and works equally well in the cloud as in a hybrid environment, on-premises, or at the edge.