qdrant/qdrant

▲ 28 stars today★ 34,822⑂ 2,697

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/

About qdrant/qdrant

qdrant/qdrant is an open-source project on GitHub, mainly written in Rust. Qdrant - High-performance, massive-scale Vector Database and Vector Search Engine for the next generation of AI. It currently holds 34,822 stars and 2,697 forks with 770 open issues, and was last pushed on 2026-09-25 (repository created 2020-05-30).

Project Overview

Git Homed tracks it on the Today's Trending board, currently at rank #99 with 28 new stars today.

GitHub Repository Details

Repository qdrant/qdrant · default branch master · size 69593 KB · watchers 167 · source: GitHub REST API and repository README

README

https://github.com/qdrant/qdrant/blob/HEAD/Qdrant

Vector Search Engine for the next generation of AI applications

https://github.com/qdrant/qdrant/blob/HEAD/Tests status https://github.com/qdrant/qdrant/blob/HEAD/OpenAPI Docs https://github.com/qdrant/qdrant/blob/HEAD/Apache 2.0 License https://github.com/qdrant/qdrant/blob/HEAD/Discord https://github.com/qdrant/qdrant/blob/HEAD/Roadmap 2025 https://github.com/qdrant/qdrant/blob/HEAD/Qdrant Cloud

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:

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. For example, using 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:

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:

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?

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

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.

https://github.com/qdrant/qdrant/blob/HEAD/Qdrant Web UI

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.

[!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

License

Qdrant is licensed under the Apache License, Version 2.0. View a copy of the License file.

GitHub Stars & Activity

34,822Stars
2,697Forks
770Open issues
RustLanguage

GitHub Popularity

GitHub stars34,822
Forks2,697
Open issues770
Primary languageRust
LicenseApache-2.0
Stars gained today28
Created2020-05-30
Last pushed2026-09-25

Trending History

Daily boardrank #99 · ▲ 28 stars

Related GitHub Projects

1

clash-verge-rev / clash-verge-rev

Rust★ 147,302⑂ 10,581▲ 216 stars
→
2

rust-lang / rust

Rust★ 119,174⑂ 16,697▲ 64 stars
→
3

ruvnet / RuView

Rust★ 95,021⑂ 12,564▲ 105 stars
→
4

juspay / hyperswitch

Rust★ 44,075⑂ 5,497▲ 147 stars
→
5

block / buzz

Rust★ 34,458⑂ 4,567▲ 159 stars
→
6

CapSoftware / Cap

Rust★ 22,807⑂ 1,967▲ 58 stars
→
7

kitao / pyxel

Rust★ 17,955⑂ 934▲ 32 stars
→
8

run-llama / liteparse

Rust★ 12,637⑂ 862▲ 44 stars
→

More Trending Repositories