专属域名
文档搜索
轩辕助手
Run助手
邀请有礼
返回顶部
快速返回页面顶部
收起
收起工具栏
轩辕镜像 官方专业版
轩辕镜像 官方专业版轩辕镜像 官方专业版官方专业版
首页个人中心搜索镜像

交易
充值流量我的订单
工具
提交工单镜像收录一键安装
Npm 源Pip 源Homebrew 源
帮助
常见问题
其他
关于我们网站地图

官方QQ群: 51517718

qdrant/qdrant Docker 镜像 - 轩辕镜像

qdrant
qdrant/qdrant
Qdrant是一个向量相似性搜索引擎和向量数据库,提供生产级服务,支持存储、搜索和管理带有附加负载的向量点,具备强大的扩展过滤能力,适用于神经网络或语义匹配、分面搜索等AI应用,使用Rust编写,确保高性能和可靠性。
98 收藏0 次下载activeqdrant镜像
🚀专业版镜像服务,面向生产环境设计
版本下载
🚀专业版镜像服务,面向生产环境设计

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 to extended filtering support. It makes 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 • Client Libraries • Demo Projects • Integrations • Contact

Getting Started

Python
pip install qdrant-client

The python client offers a convenient way to start with Qdrant locally:

python
from qdrant_client import QdrantClient
qdrant = QdrantClient(":memory:") # Create in-memory Qdrant instance, for testing, CI/CD
# OR
client = QdrantClient(path="path/to/db")  # Persists changes to disk, fast prototyping
Client-Server

To experience the full power of Qdrant locally, run the container with this command:

bash
docker run -p 6333:6333 qdrant/qdrant

Now you can connect to this with any client, including Python:

python
qdrant = QdrantClient("http://localhost:6333") # Connect to existing Qdrant instance

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 with ease:

  • Official:
    • Go client
    • Rust client
    • JavaScript/TypeScript client
    • Python client
    • .NET/C# client
    • Java client
  • Community:
    • Elixir
    • PHP
    • Ruby
    • Java
Where do I go from here?
  • Quick Start Guide
  • End to End Colab Notebook demo with SentenceBERT and Qdrant
  • Detailed Documentation are great starting points
  • Step-by-Step Tutorial to create your first neural network project 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!

More solutions
    </td>
    <td width="30%">
        
    </td>
    <td width="30%">
        
    </td>
</tr>
<tr>
    <td>
        Semantic Text Search
    </td>
    <td>
        Similar Image Search
    </td>
    <td>
        Recommendations
    </td>
</tr>
    </td>
    <td>
        
    </td>
    <td>
        
    </td>
</tr>
<tr>
    <td>
        Chat Bots
    </td>
    <td>
        Matching Engines
    </td>
    <td>
        Anomaly Detection
    </td>
</tr>

API

REST

Online OpenAPI 3.0 documentation is available here. OpenAPI makes it easy to generate a client for virtually any framework or programming language.

You can also download raw OpenAPI definitions.

gRPC

For faster production-tier searches, Qdrant also provides a gRPC interface. You can find gRPC documentation here.

Features

Filtering and Payload

Qdrant can attach any JSON payloads to vectors, allowing for both the storage and filtering of data based on the values in these payloads. Payload supports a wide range of data types and query conditions, including keyword matching, full-text filtering, numerical ranges, geo-locations, and more.

Filtering conditions can be combined in various ways, including should, must, and must_not clauses, ensuring that you can implement any desired business logic on top of similarity matching.

Hybrid Search with Sparse Vectors

To address the limitations of vector embeddings when searching for specific keywords, Qdrant introduces support for sparse vectors in addition to the regular dense ones.

Sparse vectors can be viewed as an generalization of BM25 or TF-IDF ranking. They enable you to harness the capabilities of transformer-based neural networks to weigh individual tokens effectively.

Vector Quantization and On-Disk Storage

Qdrant provides multiple options to make vector search cheaper and more resource-efficient. Built-in vector quantization reduces RAM usage by up to 97% and dynamically manages the trade-off between search speed and precision.

Distributed Deployment

Qdrant offers comprehensive horizontal scaling support through two key mechanisms:

  1. Size expansion via sharding and throughput enhancement via replication
  2. Zero-downtime rolling updates and seamless dynamic scaling of the collections
Highlighted Features
  • 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.
  • Async I/O - uses io_uring to maximize disk throughput utilization even on a network-attached storage.
  • Write-Ahead Logging - ensures data persistence with update confirmation, even during power outages.

Integrations

Examples and/or documentation of Qdrant integrations:

  • Cohere (blogpost on building a QA app with Cohere and Qdrant) - Use Cohere embeddings with Qdrant
  • DocArray - Use Qdrant as a document store in DocArray
  • Haystack - Use Qdrant as a document store with Haystack (blogpost).
  • LangChain (blogpost) - Use Qdrant as a memory backend for LangChain.
  • LlamaIndex - Use Qdrant as a Vector Store with LlamaIndex.
  • OpenAI - *** retrieval plugin - Use Qdrant as a memory backend for ***
  • Microsoft Semantic Kernel - Use Qdrant as persistent memory with Semantic Kernel

Contacts

  • Have questions? Join our *** channel or mention @qdrant_engine on ***
  • Want to stay in touch with latest releases? Subscribe to our Newsletters
  • Looking for a managed cloud? Check pricing, need something personalised? We're at ***

License

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

Deployment & Usage Documentation

QDRANT 向量搜索引擎 Docker 容器化部署指南

QDRANT(读作"quadrant")是一款高性能向量相似度搜索引擎和向量数据库,专为下一代AI应用设计。作为用Rust语言开发的生产级服务,QDRANT提供便捷的API用于存储、搜索和管理向量数据(带有附加 payload 的向量),特别优化了扩展过滤功能,适用于神经网络或语义匹配、分面搜索等各类应用场景。

Read More
查看更多 qdrant 相关镜像 →
qdrant/vector-db-benchmark logo
qdrant/vector-db-benchmark
by qdrant
vector-db-benchmark是一个通用基准测试框架,用于在相同硬件约束下评估不同向量搜索引擎的性能,支持自定义引擎、数据集和测试场景,帮助用户选择最适合的向量搜索解决方案。
50K+ pulls
上次更新:25 天前
langgenius/qdrant logo
langgenius/qdrant
by langgenius
基于qdrant:v1.6.1版本,添加了中文、日文和韩文分词器支持的向量数据库镜像,用于提升东亚语言文本的向量检索效果。
3100K+ pulls
上次更新:1 年前
apecloud/qdrant logo
apecloud/qdrant
by apecloud
暂无描述
50K+ pulls
上次更新:2 个月前
realsoft2023/qdrant logo
realsoft2023/qdrant
by realsoft2023
暂无描述
10K+ pulls
上次更新:28 天前
reflyai/qdrant logo
reflyai/qdrant
by reflyai
暂无描述
10K+ pulls
上次更新:11 个月前

轩辕镜像配置手册

探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式

登录仓库拉取

通过 Docker 登录认证访问私有仓库

Linux

在 Linux 系统配置镜像服务

Windows/Mac

在 Docker Desktop 配置镜像

Docker Compose

Docker Compose 项目配置

K8s Containerd

Kubernetes 集群配置 Containerd

K3s

K3s 轻量级 Kubernetes 镜像加速

Dev Containers

VS Code Dev Containers 配置

MacOS OrbStack

MacOS OrbStack 容器配置

宝塔面板

在宝塔面板一键配置镜像

群晖

Synology 群晖 NAS 配置

飞牛

飞牛 fnOS 系统配置镜像

极空间

极空间 NAS 系统配置服务

爱快路由

爱快 iKuai 路由系统配置

绿联

绿联 NAS 系统配置镜像

威联通

QNAP 威联通 NAS 配置

Podman

Podman 容器引擎配置

Singularity/Apptainer

HPC 科学计算容器配置

其他仓库配置

ghcr、Quay、nvcr 等镜像仓库

专属域名拉取

无需登录使用专属域名

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

轩辕镜像免费版与专业版有什么区别?

免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。

轩辕镜像支持哪些镜像仓库?

专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。

流量耗尽错误提示

当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。

410 错误问题

通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。

manifest unknown 错误

先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。

镜像拉取成功后,如何去掉轩辕镜像域名前缀?

使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

oldzhang的头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
qdrant/qdrant
官方博客Docker 镜像使用技巧与技术博客
热门镜像查看热门 Docker 镜像推荐
一键安装一键安装 Docker 并配置镜像源
提交工单
咨询镜像拉取问题请 提交工单,官方技术交流群:51517718
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
咨询镜像拉取问题请提交工单,官方技术交流群:
轩辕镜像面向开发者与科研用户,提供开源镜像的搜索和访问支持。所有镜像均来源于原始仓库,本站不存储、不修改、不传播任何镜像内容。
官方邮箱:点击复制邮箱
©2024-2026 源码跳动
官方邮箱:点击复制邮箱Copyright © 2024-2026 杭州源码跳动科技有限公司. All rights reserved.