milvus-io/milvus

▲ 536 stars today★ 46,123⑂ 4,253

Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search

About milvus-io/milvus

milvus-io/milvus is an open-source project on GitHub, mainly written in Go. Milvus is a high-performance, cloud-native vector database built for scalable vector ANN search It currently holds 46,123 stars and 4,253 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the AI Models & LLM Tools board.

GitHub Repository Details

Repository milvus-io/milvus · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

https://github.com/milvus-io/milvus/blob/HEAD/milvus banner
https://github.com/milvus-io/milvus/blob/HEAD/license https://github.com/milvus-io/milvus/blob/HEAD/docker-pull-count https://github.com/milvus-io/milvus/blob/HEAD/fully-managed-milvus https://github.com/milvus-io/milvus/blob/HEAD/fully-managed-milvus https://github.com/milvus-io/milvus/blob/HEAD/tutorials https://github.com/milvus-io/milvus/blob/HEAD/slack https://github.com/milvus-io/milvus/blob/HEAD/discord https://github.com/milvus-io/milvus/blob/HEAD/twitter
https://github.com/milvus-io/milvus/blob/HEAD/milvus-io%2Fmilvus | Trendshift

What is Milvus?

🐦 Milvus is a high-performance vector database built for scale. It powers AI applications by efficiently organizing and searching vast amounts of unstructured data, such as text, images, and multi-modal information.

🧑‍💻 Written in Go and C++, Milvus implements hardware acceleration for CPU/GPU to achieve best-in-class vector search performance. Thanks to its fully-distributed and K8s-native architecture, Milvus can scale horizontally, handle tens of thousands of search queries on billions of vectors, and keep data fresh with real-time streaming updates. Milvus also supports Standalone mode for single machine deployment. Milvus Lite is a lightweight version good for quickstart in python with pip install.

Want to use Milvus with zero setup? Try out Zilliz Cloud ☁️ for free. Milvus is available as a fully managed service on Zilliz Cloud, with Serverless, Dedicated and BYOC options available.

For questions about how to use Milvus, join the community on Discord to get help. For reporting problems, file bugs and feature requests in GitHub Issues or ask in Discussions.

The Milvus open-source project is under LF AI & Data Foundation, distributed with Apache 2.0 License, with Zilliz as its major contributor.

Quickstart

$ pip install -U pymilvus
This installs pymilvus, the Python SDK for Milvus. Use MilvusClient to create a client:
from pymilvus import MilvusClient
  client = MilvusClient("milvus_demo.db")
  
  client = MilvusClient(
    uri="<endpoint_of_self_hosted_milvus_or_zilliz_cloud>",
    token="<username_and_password_or_zilliz_cloud_api_key>")
  

With the client, you can create collection:

client.create_collection(
    collection_name="demo_collection",
    dimension=768,  # The vectors we will use in this demo have 768 dimensions
)

Ingest data:

res = client.insert(collection_name="demo_collection", data=data)

Perform vector search:

query_vectors = embedding_fn.encode_queries(["Who is Alan Turing?", "What is AI?"])
res = client.search(
    collection_name="demo_collection",  # target collection
    data=query_vectors,  # a list of one or more query vectors, supports batch
    limit=2,  # how many results to return (topK)
    output_fields=["vector", "text", "subject"],  # what fields to return
)

Why Milvus

Milvus is designed to handle vector search at scale. It stores vectors, which are learned representations of unstructured data, together with other scalar data types such as integers, strings, and JSON objects. Users can conduct efficient vector search with metadata filtering or hybrid search. Here are why developers choose Milvus as the vector database for AI applications:

High Performance at Scale and High Availability

Support for Various Vector Index Types and Hardware Acceleration

Flexible Multi-tenancy and Hot/Cold Storage

Sparse Vector for Full Text Search and Hybrid Search Data Security and Fine-grain Access Control Milvus is trusted by AI developers to build applications such as text and image search, Retrieval-Augmented Generation (RAG), and recommendation systems. Milvus powers many mission-critical businesses for startups and enterprises.

Demos and Tutorials

Here is a selection of demos and tutorials to show how to build various types of AI applications made with Milvus:

You can explore a comprehensive Tutorials Overview covering topics such as Retrieval-Augmented Generation (RAG), Semantic Search, Hybrid Search, Question Answering, Recommendation Systems, and various quick-start guides. These resources are designed to help you get started quickly and efficiently.

| Tutorial | Use Case | Related Milvus Features | | -------- | -------- | --------- | | Build RAG with Milvus | RAG | vector search | | Advanced RAG Optimizations | RAG | vector search, full text search | | Full Text Search with Milvus | Text Search | full text search | | Hybrid Search with Milvus | Hybrid Search | hybrid search, multi vector, dense embedding, sparse embedding | | Image Search with Milvus | Semantic Search | vector search, dynamic field | | Multimodal Search using Multi Vectors | Semantic Search | multi vector, hybrid search | | Movie Recommendation with Milvus | Recommendation System | vector search | | Graph RAG with Milvus | RAG | graph search | | Contextual Retrieval with Milvus | Quickstart | vector search | | Vector Visualization | Quickstart | vector search | | HDBSCAN Clustering with Milvus | Quickstart | vector search | | Use ColPali for Multi-Modal Retrieval with Milvus | Quickstart | vector search |

Image Search RAG Drug Discovery

Ecosystem and Integration

Milvus integrates with a comprehensive suite of AI development tools, such as LangChain, LlamaIndex, OpenAI and HuggingFace, making it an ideal vector store for GenAI applications such as Retrieval-Augmented Generation (RAG). Milvus works with both open-source embedding models and embedding services, in text, image and video modalities. Milvus also provides a convenient utility [pymilvus[model]](https://milvus.io/docs/embeddings.md), users can use the simple wrapper code to transform unstructured data into vector embeddings and leverage reranking models for optimized search results. The Milvus ecosystem also includes Attu for GUI-based administration, Birdwatcher for system debugging, Prometheus/Grafana for monitoring, Milvus CDC for data synchronization, VTS for data migration and data connectors for Spark, Kafka, Fivetran, and Airbyte to build search pipelines.

Check out https://milvus.io/docs/integrations_overview.md for more details.

Documentation

For guidance on installation, usage, deployment, and administration, check out Milvus Docs. For technical milestones and enhancement proposals, check out issues on GitHub.

Contributing

The Milvus open-source project accepts contributions from everyone. See Guidelines for Contributing for details on submitting patches and the development workflow. See our community repository to learn about project governance and access more community resources.

Build Milvus from Source Code

Requirements:

  Go: >= 1.21
  CMake: >= 3.26.4 && CMake < 4
  GCC: >= 11
  Python: > 3.8 and  <= 3.11
  
  Go: >= 1.21
  CMake: >= 3.26.4 && CMake < 4
  llvm: >= 15
  Python: > 3.8 and  <= 3.11
  
  Go: >= 1.21 (Arch=ARM64)
  CMake: >= 3.26.4 && CMake < 4
  llvm: >= 15
  Python: > 3.8 and  <= 3.11
  

Clone Milvus repo and build.

# Clone github repository.
$ git clone https://github.com/milvus-io/milvus.git

Install third-party dependencies.

$ cd milvus/ $ ./scripts/install_deps.sh

Compile Milvus.

$ make

For full instructions, see developer's documentation.

Community

Join the Milvus community on Discord to share your suggestions, advice, and questions with our engineering team.

To learn the latest news about Milvus, follow us on social media:

You can also check out our FAQ page to discover solutions or answers to your issues or questions, and subscribe to Milvus mailing lists:

Reference

Reference to cite when you use Milvus in a research paper:

@inproceedings{2021milvus,
  title={Milvus: A Purpose-Built Vector Data Management System},
  author={Wang, Jianguo and Yi, Xiaomeng and Guo, Rentong and Jin, Hai and Xu, Peng and Li, Shengjun and Wang, Xiangyu and Guo, Xiangzhou and Li, Chengming and Xu, Xiaohai and others},
  booktitle={Proceedings of the 2021 International Conference on Management of Data},
  pages={2614--2627},
  year={2021}
}

@article{2022manu, title={Manu: a cloud native vector database management system}, author={Guo, Rentong and Luan, Xiaofan and Xiang, Long and Yan, Xiao and Yi, Xiaomeng and Luo, Jigao and Cheng, Qianya and Xu, Weizhi and Luo, Jiarui and Liu, Frank and others}, journal={Proceedings of the VLDB Endowment}, volume={15}, number={12}, pages={3548--3561}, year={2022}, publisher={VLDB Endowment} }


GitHub Stars & Activity

46,123Stars
4,253Forks
0Open issues
GoLanguage

GitHub Popularity

GitHub stars46,123
Forks4,253
Open issues0
Primary languageGo
License-
Stars gained today536
Created-
Last pushed-

Trending History

Monthly boardrank #65 · ▲ 536 stars

Related AI Projects

1

ollama / ollama

Go★ 181,101⑂ 0
2

JuliusBrussee / caveman

Go★ 105,827⑂ 0
3

infiniflow / ragflow

Go★ 90,775⑂ 0
4

mudler / LocalAI

Go★ 49,128⑂ 0
5

esengine / DeepSeek-Reasonix

Go★ 35,565⑂ 0
6

gitleaks / gitleaks

Go★ 29,337⑂ 0
7

affaan-m / ECC

JavaScript★ 259,477⑂ 0
8

NousResearch / hermes-agent

Python★ 245,944⑂ 0

More AI Rankings