Vector Search Engine for the next generation of AI applications Qdrant (read: _quadrant_) is a vector similarity search engine and vector database. It provides a production-ready service with a convenient…
Vector Search Engine for the next generation of AI applications
Qdrant (read: _quadrant_) is a vector similarity search engine and vector database.
It provides a production-ready service with a convenient API to store, search, and manage points—vectors with an additional payload.
Qdrant is tailored for extended filtering support, making it useful for all sorts of neural-network or semantic-based matching, faceted search, and other applications.
Qdrant is written in Rust 🦀, which makes it fast and reliable even under high load. See benchmarks.
With Qdrant, embeddings or neural network encoders can be turned into full-fledged applications for matching, searching, recommending, and much more!
Qdrant is also available as a fully managed Qdrant Cloud ⛅ including a free tier.
Quick Start • Agent Skills • Client Libraries • Demo Projects • Integrations • Contact
Getting Started
Agent Skills
Qdrant provides a collection of ready-to-use agent skills that bring Qdrant's vector search capabilities directly into your AI coding assistant. Install these skills to empower your agent in making critical engineering decisions for optimal vector search performance, such as quantization, sharding, tenant isolation, hybrid search, model migration, and more.
Client-Server
To experience the full power of Qdrant locally, run the container with this command:
bash
docker run -p 6333:6333 qdrant/qdrant
Note that this starts an insecure deployment without authentication, open to all network interfaces. Please refer to secure your instance.
Now you can connect to the server with any [client](#clients). For example, using Python:
python
from qdrant_client import QdrantClient
client = QdrantClient(url="http://localhost:6333")
Before deploying Qdrant to production, be sure to read our installation and security guides.
Clients
Qdrant offers the following client libraries to help you integrate it into your application stack:
- Official:
- Community:
Qdrant Edge
Qdrant Edge is a lightweight version of Qdrant designed for edge devices and resource-constrained environments. Unlike Qdrant Server, which uses a client-server architecture, Qdrant Edge runs inside the application process. Data is stored and queried locally and can be synchronized with a Qdrant server. It offers the same powerful vector search capabilities as the client-server version but with a smaller footprint, making it ideal for applications that require low latency and offline functionality.
To get started with Qdrant Edge from Python or Rust, initialize an instance of EdgeShard, which exposes methods to manage data, query it, and restore snapshots. For example:
python
from qdrant_edge import Distance, EdgeConfig, EdgeVectorParams, EdgeShard, Point, UpdateOperation
shard = EdgeShard.create("./shard", EdgeConfig(
vectors={"my-vector": EdgeVectorParams(size=4, distance=Distance.Cosine)}
))
shard.update(UpdateOperation.upsert_points([
Point(id=1, vector={"my-vector": [0.1, 0.2, 0.3, 0.4]}, payload={"color": "red"})
]))
Where Do I Go from Here?
- Quick Start Guide
- Detailed Documentation
- Take the Qdrant Essentials course
- Follow this tutorial to create a semantic search engine with Qdrant
Demo Projects
Discover Semantic Text Search 🔍
Unlock the power of semantic embeddings with Qdrant, transcending keyword-based search to find meaningful connections in short texts. Deploy a neural search in minutes using a pre-trained neural network, and experience the future of text search. Try it online!
Explore Similar Image Search - Food Discovery 🍕
There's more to discovery than text search, especially when it comes to food. People often choose meals based on appearance rather than descriptions and ingredients. Let Qdrant help your users find their next delicious meal using visual search, even if they don't know the dish's name. Check it out!
Master Extreme Classification - E-Commerce Product Categorization 📺
Enter the cutting-edge realm of extreme classification, an emerging machine learning field tackling multi-class and multi-label problems with millions of labels. Harness the potential of similarity learning models, and see how a pre-trained transformer model and Qdrant can revolutionize e-commerce product categorization. Play with it online!
API
REST
Qdrant provides a REST API with an OpenAPI 3.0 specification, enabling client generation for virtually any framework or programming language.
You can also download the raw OpenAPI definitions.
gRPC
For faster, production-tier searches, Qdrant also provides a gRPC interface.
Features
Dense, Sparse, and Multi Vector Search
Qdrant supports dense vectors for semantic similarity, sparse vectors for full-text search, and multivector search for objects with multiple embeddings or late interaction models like ColBERT.
Filtering on Payload
Attach any JSON payload to your vectors and filter on it using a rich set of conditions—keyword matching, full-text, numeric ranges, geo-locations, and more—combined with should, must, and must_not clauses.
Hybrid Search
Combine multiple vectors in a single query to get the best of semantic understanding and keyword precision, with results merged via configurable fusion strategies, such as Reciprocal Rank Fusion (RRF) and Distribution-Based Score Fusion (DBSF).
Vector Quantization and On-Disk Storage
Built-in quantization cuts RAM usage by up to 97% and lets you tune the trade-off between search speed and precision.
Distributed Deployment
Scale horizontally with sharding and replication, and update or resize collections with zero downtime.
Highlighted Features
- Faceting - aggregate search results by payload values.
- Recommendation - use positive and negative examples to find similar points.
- Discovery - constrain search to a specific region of the vector space.
- Search Relevance Tuning - tools for adjusting search results, such as Maximal Marginal Relevance (MMR) and the Relevance Feedback Query.
- Multitenancy - scalable partitioning of data for multi-user environments.
- Observability - comprehensive metrics, telemetry, and audit logging for monitoring and debugging.
- Query Planning and Payload Indexes - leverages stored payload information to optimize query execution strategy.
- SIMD Hardware Acceleration - utilizes modern CPU x86-x64 and Neon architectures to deliver better performance.
- GPU Support - for accelerated indexing, with support for NVIDIA and AMD GPUs.
- Async I/O - uses
io_uringto maximize disk throughput utilization even on network-attached storage. - Write-Ahead Logging - ensures data persistence with update confirmation, even during power outages.
Web UI
Web UI provides a visual way to interact with your data and monitor the health of your deployment. It enables you to explore your collections, manage data, interact with the REST API, and more.
Integrations
Qdrant integrates with the tools you're already using across every stage of your AI stack. You can connect to embedding providers, AI application frameworks, and data pipeline tools, as well as observability platforms for monitoring and tracing your vector search in production. No-code and low-code automation platforms are supported too. Refer to the Ecosystem page for the complete list.
Contributing
We are happy to receive your contributions! Before opening a pull request, please read our [Contributing Guide](docs/CONTRIBUTING.md).
> [!IMPORTANT]
> Our development branch is dev, not master. Please fork the repo, branch from dev, and open your pull request against dev. PRs targeting master will be asked to retarget.
Contacts
- Have questions? Join our Discord channel or mention @qdrant_engine on X
- Want to stay in touch with the latest releases? Subscribe to our Newsletters
- Looking for a managed cloud? Check pricing. Need something personalized? We're at [[email protected]](mailto:[email protected])
License
Qdrant is licensed under the Apache License, Version 2.0. View a copy of the License file.
Members
-
qdrant ★ PINNED
Qdrant - High-performance, massive-scale Vector Database and Vector Search Engine for the next generation of AI. Also available in the cloud https://cloud.qdrant.io/
Rust ★ 34k 11h agoExplain → -
fastembed ★ PINNED
Fast, Accurate, Lightweight Python library to make State of the Art Embedding
Python ★ 3.1k 9d agoExplain → -
qdrant-client ★ PINNED
Python client for Qdrant vector search engine
Python ★ 1.3k 7d agoExplain → -
qdrant-js ★ PINNED
JavaScript/Typescript SDK for Qdrant Vector Database
TypeScript ★ 458 20h agoExplain → -
vector-db-benchmark ★ PINNED
Framework for benchmarking vector search engines
Python ★ 368 3d agoExplain → -
skills ★ PINNED
Agent skills for Qdrant vector search: scaling, performance optimization, search quality, monitoring, deployment, model migration, version upgrades, and SDK usage across Python, TypeScript, Rust, Go, .NET, Java
Shell ★ 213 1d agoExplain → -
mcp-server-qdrant
An official Qdrant Model Context Protocol (MCP) server implementation
Python ★ 1.5k 21h agoExplain → -
quaterion
Blazing fast framework for fine-tuning similarity learning models
Python ★ 662 25d agoExplain → -
awesome-metric-learning
😎 A curated list of awesome practical Metric Learning and its applications
★ 524 3y agoExplain → -
qdrant-web-ui
Self-hosted web UI for Qdrant
JavaScript ★ 418 1d agoExplain → -
rust-client
Rust client for Qdrant vector search engine
Rust ★ 412 6d agoExplain → -
go-client
Go client for Qdrant vector search engine
Go ★ 344 2d agoExplain → -
qdrant-dotnet
Qdrant .Net SDK
C# ★ 226 2d agoExplain → -
examples
A collection of examples and tutorials for Qdrant vector search engine
Jupyter Notebook ★ 219 1d agoExplain → -
qdrant_demo
Demo of the neural semantic search built with Qdrant
TypeScript ★ 193 4d agoExplain → -
qdrant-helm
No description.
Go ★ 183 13h agoExplain → -
page-search
Neural search for web-sites, docs, articles - online!
Python ★ 153 20d agoExplain → -
java-client
Official Java client for Qdrant
Java ★ 94 15h agoExplain → -
qdrant-rag-eval
This repo is the central repo for all the RAG Evaluation reference material and partner workshop
Jupyter Notebook ★ 89 1y agoExplain → -
migration
Tool to migrate data into Qdrant
Go ★ 79 6d agoExplain → -
n8n-nodes-qdrant
Official n8n node for interfacing with Qdrant
TypeScript ★ 78 3d agoExplain → -
bm42_eval
Evaluation of bm42 sparse indexing algorithm
Python ★ 75 1mo agoExplain → -
ann-filtering-benchmark-datasets
Collection of datasets for benchmarking filtered vector similarity retrieval
Python ★ 64 1mo agoExplain → -
demo-code-search
No description.
TypeScript ★ 62 5d agoExplain → -
landing_page
Landing page for qdrant.tech
SCSS ★ 60 23h agoExplain → -
qdrant-edge-demo
POC visual search with smart glasses and Qdrant Edge.
Python ★ 60 4d agoExplain → -
demo-food-discovery
Source code of the food discovery demo built on top of Qdrant
TypeScript ★ 52 2d agoExplain → -
qdrant-spark
Qdrant's Apache Spark connector
Java ★ 49 5d agoExplain → -
workshop-ultimate-hybrid-search
Materials for the Ultimate Hybrid Search Workshop
Jupyter Notebook ★ 48 5d agoExplain → -
qdrant-haystack
An integration of Qdrant ANN vector database backend with Haystack
Python ★ 46 25d agoExplain → -
wal ▣
Write Ahead Logging for Rust
Rust ★ 42 1mo agoExplain → -
miniCOIL
Contextualized per-token embeddings
Python ★ 38 9d agoExplain → -
demo-colpali-optimized
No description.
Jupyter Notebook ★ 38 1y agoExplain → -
quaterion-models
The collection of bulding blocks building fine-tunable metric learning models
Python ★ 35 25d agoExplain → -
goods_categorization_demo
Demo example of consumer goods categorization
Jupyter Notebook ★ 31 1d agoExplain → -
webinar-crewai-qdrant-obsidian
An implementation of a CrewAI agent acting as a personal assistant. The agent can draft emails based on the knowledge base built in Obsidian.
Python ★ 29 3d agoExplain → -
block-embeddings
Trainable embedding transformation for confidence estimation, feature extraction, explainability and conversion from dense to sparse.
Python ★ 28 1mo agoExplain → -
qdrant-txtai
An integration of Qdrant ANN vector database backend with txtai
Python ★ 25 1mo agoExplain → -
workshop-rag-optimization
Notebooks for RAG optimization workshop, using HackerNews data
Jupyter Notebook ★ 21 8d agoExplain → -
webinar-vibe-coding-rag
An attempt to live code a working Retrieval Augmented Generation app with AI coding tools
JavaScript ★ 19 3d agoExplain → -
qcloud-cli
The Command Line Interface for Qdrant Cloud
Go ★ 18 3d agoExplain → -
bfb
*high-load* benchmarking tool
Rust ★ 18 3d agoExplain → -
video-anomaly-edge
Real-time video anomaly detection from edge to cloud using Qdrant, Twelve Labs, and NVIDIA VSS
TypeScript ★ 15 8d agoExplain → -
laion-400m-benchmark
Upload and benchmark of LAION 400M dataset - large scale image similarity search
Python ★ 14 1mo agoExplain → -
mcp-code-snippets
No description.
Python ★ 12 7d agoExplain → -
qdrant-cloud-public-api
No description.
Shell ★ 11 2d agoExplain → -
qdrant-kafka
Kafka Sink connector for Qdrant. Stream vector data into a Qdrant collection.
Java ★ 11 6d agoExplain → -
sparse-finetune
Fine-tune SPLADE sparse embedding models for your product catalog. CLI, web dashboard, and Python API.
Python ★ 11 21d agoExplain → -
workshop-improving-r-in-rag
Notebooks for RAG improving workshop, using HackerNews data
Jupyter Notebook ★ 11 1mo agoExplain → -
demo-cloud-faq
Demo of fine-tuning QA models for answering FAQ of cloud providers documentation
Python ★ 11 1mo agoExplain → -
contexto
A simple script to solve contexto.me using word embeddings
JavaScript ★ 10 1d agoExplain → -
qdrant-genkit
No description.
TypeScript ★ 10 7d agoExplain → -
qdrant-markdown-indexer
Simple pipeline to index markdown files into Qdrant using OpenAI embeddings
Python ★ 10 1mo agoExplain → -
demo-midlibrary-explorer-nextjs
Exploration of Midjourney Library styles using Qdrant and NextJS
JavaScript ★ 9 15h agoExplain → -
py-rust-stemmers
No description.
Python ★ 9 1d agoExplain → -
mcp-for-docs
MCP server for accessing documentation and code snippets of dev tools. Based on `mcp-server-qdrant`
Python ★ 9 1mo agoExplain → -
haloperidol
Antipsychotic therapy for qdrant cluster
Shell ★ 9 1mo agoExplain → -
openapi-typescript-fetch ⑂
A typed fetch client for openapi-typescript
TypeScript ★ 9 2y agoExplain → -
demo-hnm
No description.
Jupyter Notebook ★ 8 1mo agoExplain → -
qdrant-stars-handbook
The primary goal of Qdrant Stars is to recognize, reward, and support our most active and helpful users making significant contributions to the vector search community. The Qdrant Stars Handbook is your go-to resource for navigating the Stars program and how to take the most advantage of it.
★ 8 4mo agoExplain → -
api-reference
Repository for Qdrant's API Reference Documentation
Java ★ 8 7d agoExplain → -
mri
A simple tool to monitor process resource usage as frequent as possible
Rust ★ 8 1mo agoExplain → -
benchmark
Collection of Qdrant benchmarks
Python ★ 8 1mo agoExplain → -
qdrant-fluvio
Stream records from Fluvio topics to a Qdrant collection.
Rust ★ 7 14d agoExplain → -
quantization
No description.
Rust ★ 7 1mo agoExplain → -
qdrant-cloud-grafana-dashboard
No description.
★ 7 1mo agoExplain → -
rust-parser
Extracts semantics from rust code
Rust ★ 7 7d agoExplain → -
relevance-feedback
No description.
Python ★ 7 6d agoExplain → -
autocomplete-openapi
Autocomplete queries using OpenAPI spec
JavaScript ★ 7 1mo agoExplain → -
kubernetes-api
API definitions for the Qdrant Kubernetes operator
Go ★ 6 1d agoExplain → -
terraform-provider-qdrant-cloud
A Terraform plugin that allows to manage and configure Qdrant Cloud resources
Go ★ 6 1d agoExplain → -
dspy-qdrant
Qdrant powered retriever module for DSPy
Python ★ 6 1mo agoExplain → -
demo-distributed-deployment-docker
An example of setting up the distributed deployment of Qdrant with docker-compose
Shell ★ 6 1y agoExplain → -
benchmark-cohere-wiki-50m
Scripts for benchmarking Qdrant with Cohere Wiki dataset
Python ★ 6 1y agoExplain → -
crasher
Crashing the party
Rust ★ 5 3d agoExplain → -
template-hybrid-search-fasthtml
A template for a FastHTML app implementing hybrid search with Qdrant
Python ★ 5 7d agoExplain → -
hybrid-cloud-examples
No description.
HCL ★ 5 1y agoExplain → -
sparse-vectors-benchmark
This is a benchmarking tool for Qdrant's sparse vector implementation
Python ★ 5 1mo agoExplain → -
page-search-js
Web interface for integrated web-site search powered by Qdrant
JavaScript ★ 5 2d agoExplain → -
dataset-cloud-platform-faq
No description.
HTML ★ 4 1mo agoExplain → -
coach
Coach running drills to train qdrant deployments
Rust ★ 3 1d agoExplain → -
qdrant-cloud-support-tools
Tools to help Qdrant Cloud users troubleshoot issues and help Qdrant Support Engineers diagnose problems
Shell ★ 3 7d agoExplain → -
rivet-plugin-qdrant
No description.
TypeScript ★ 3 7d agoExplain → -
go-commons
Common helper packages to use across Go based Qdrant projects.
Go ★ 3 11h agoExplain → -
webinar-openai-agents-mcp
No description.
Python ★ 3 1mo agoExplain → -
qdrant-qa-workshop
No description.
Jupyter Notebook ★ 3 7d agoExplain → -
mini-coil-demo
Web demo for miniCOIL model
Python ★ 3 11h agoExplain → -
rust-stemmers ⑂
A rust implementation of some popular snowball stemming algorithms
Rust ★ 3 5mo agoExplain → -
localstack-qdrant
LocalStack Extension for developing Qdrant-based applications locally.
Python ★ 3 1mo agoExplain → -
search-feedback-loop
Using discovery API for improving agentic RAG
Python ★ 3 1mo agoExplain → -
mmap-payload-storage ▣
Experiment with new designs for payload storage
Rust ★ 3 1y agoExplain → -
qdrant_python_client ▣
Qdrant Python client, generated from OpenAPI specification (with minor fixes)
Python ★ 3 4y agoExplain → -
internal-examples ⑂
A collection of examples and tutorials for Qdrant vector search engine
★ 3 1mo agoExplain → -
sparse-vectors-experiments
No description.
Rust ★ 3 1mo agoExplain → -
fluxcd-helm-controller ⑂
The GitOps Toolkit Helm reconciler, for declarative Helming
Go ★ 2 3d agoExplain → -
qdrant-cloud-buf-plugins
Collection of Buf plugins used by Qdrant Cloud APIs
Go ★ 2 2d agoExplain → -
twelvelabs-nvidia-vss
NVIDIA Metropolis VSS + Twelve Labs integration for video understanding
Python ★ 2 1mo agoExplain → -
qdrant-langchain-qa
No description.
HTML ★ 2 20d agoExplain → -
demo-qdrant-fiftyone
An example of integrating Qdrant with FiftyOne
Python ★ 2 1mo agoExplain → -
code-along-grounded-vibe-coding
Grounded Vibe Coding with Model Context Protocol and Qdrant
Shell ★ 2 1mo agoExplain → -
homebrew-tap
Qdrant's Homebrew Tap
Ruby ★ 1 14d agoExplain → -
tonic ⑂
A native gRPC client & server implementation with async/await support.
Rust ★ 1 2mo agoExplain → -
webinar-elastic-qdrant-ecommerce
No description.
Python ★ 1 2mo agoExplain → -
prometheus-monitoring
Simple example of monitoring Qdrant cluster with Prometheus and Grafana
★ 1 5mo agoExplain → -
ann-benchmarks ⑂
Benchmarks of approximate nearest neighbor libraries in Python
Python ★ 1 1mo agoExplain → -
.github
No description.
★ 1 1y agoExplain → -
core-dev-challenge
This repository contains a challenge task for Core Rust Engineer position
Rust ★ 1 1mo agoExplain → -
kubernetes-oomkill-exporter ⑂
Exporter parses kernel log for oomkilled pods
Makefile ★ 1 7d agoExplain → -
qdrant-analytics-api
Server Side Tracking for Analytics
Python ★ 1 1mo agoExplain → -
parking-stress
Debugging parking_lot
Rust ★ 1 1mo agoExplain → -
rocksdb-flush-safety
Demonstrate the need for WAL in Rocksdb
Rust ★ 1 1mo agoExplain → -
qa-automation
No description.
★ 1 1y agoExplain → -
kv-search
No description.
Python ★ 0 7d agoExplain → -
fluxcd-source-controller ⑂
The GitOps Toolkit source management component
Go ★ 0 6d agoExplain → -
graph-layout-wasm
UMAP-style graph layout from a sparse knn graph, compiled to WebAssembly
Rust ★ 0 26d agoExplain → -
protobuf-es ⑂
Protocol Buffers for ECMAScript. The only JavaScript Protobuf library that is fully-compliant with Protobuf conformance tests.
TypeScript ★ 0 1mo agoExplain → -
tar-rs ⑂
Tar file reading/writing for Rust
Rust ★ 0 1mo agoExplain → -
create-collection-form
Sophisticated form to create qdrant collections simple
JavaScript ★ 0 28d agoExplain → -
hyper ⑂
An HTTP library for Rust
Rust ★ 0 2mo agoExplain → -
murmur3 ⑂
A rust implementation of murmur3
★ 0 1y agoExplain → -
webinar-cloud-inference
How to Build a Multimodal Search Stack with One API
JavaScript ★ 0 2d agoExplain → -
float8-experiment
Experiments with float8 vector datatype
Rust ★ 0 1mo agoExplain → -
devopscon
No description.
★ 0 1y agoExplain → -
qdrant-sizing-calculator
Estimate qdrant cluster size given the data volume
JavaScript ★ 0 1mo agoExplain → -
hashring-rs ⑂
A minimal implementation of consistent hashing
Rust ★ 0 2y agoExplain → -
pyroscope-rs ⑂
Pyroscope Profiler for Rust. Profile your Rust applications.
★ 0 1mo agoExplain → -
docs ▣
Qdrant project documentation
★ 0 3y agoExplain → -
lightning-wine-reviews
An example of integrating Lightning.ai with Qdrant
Python ★ 0 1mo agoExplain → -
qdrant-distributed-docker-compose
This is an example of running Qdrant in a distributed mode with docker-compose
★ 0 4y agoExplain → -
qdrant_sphinx_theme ⑂
Qdrant Sphinx Theme
SCSS ★ 0 6d agoExplain → -
docarray ⑂
The data structure for unstructured data
Python ★ 0 3d agoExplain → -
openblas-src ⑂
Source of BLAS and LAPACK via OpenBLAS
Rust ★ 0 4y agoExplain →
No repos match these filters.