Zilliz & Milvus
The story of the company, open-source vector database, engineering architecture, ecosystem, funding model, and the shift from vector search toward lake-native AI retrieval.
1. Company Identity
| Company | Zilliz |
|---|---|
| Product | Milvus |
| Industry | AI infrastructure, databases, vector search and retrieval |
| Category | Open-source vector database / AI retrieval infrastructure |
| Founded | 2017 |
| Headquarters | San Francisco / Silicon Valley, United States. Zilliz announced its Silicon Valley headquarters in 2022. |
| Parent / creator | Zilliz is the creator and primary commercial steward of Milvus. Milvus itself is an open-source project under LF AI & Data. |
| Open source | Milvus is available under the Apache License 2.0. The repository is hosted in the milvus-io GitHub organization. |
| Current status | Active. Milvus 3.0.0 was released July 29, 2026; Zilliz is also developing managed Zilliz Cloud and the Vector Lakebase direction. |
| Official websites | Zilliz · Milvus |
| Public mission / focus | Zilliz describes its focus as building next-generation databases and search technologies for AI and LLM applications. This is a public description of focus rather than a separately published legal mission statement. |
| Formal vision statement | Not publicly available as a single formal statement. Current executive commentary emphasizes making AI data infrastructure more efficient and affordable and expanding vector databases into broader semantic data systems. |
2. Founder & Original Creators
Charles Xie — founder, CEO and publicly identified inventor of Milvus
- Classification: Founder of Zilliz; original creator/inventor of Milvus according to Zilliz's current executive biography.
- Current role: Founder & CEO, Zilliz.
- Education: Master's degree in Computer Science, University of Wisconsin–Madison.
- Earlier career: Software engineering at Oracle; Zilliz describes him as a founding engineer of the Oracle 12c cloud database project.
- Expertise: Database systems, distributed systems, search, vector databases, AI infrastructure and cloud databases.
- Milvus contribution: Zilliz's official biography explicitly says Xie invented Milvus. The 2021 SIGMOD paper lists him as a co-author alongside the engineering team.
- Public DOB, birthplace, nationality: Not publicly available in the authoritative sources reviewed.
- Public net worth: Not publicly available; no reliable figure is included.
Original technical contributors
The evidence does not support a claim that Milvus was the work of a single programmer. The landmark 2021 SIGMOD paper lists a large Zilliz engineering/research author group: Jianguo Wang, Xiaomeng Yi, Rentong Guo, Hai Jin, Peng Xu, Shengjun Li, Xiangyu Wang, Xiangzhou Guo, Chengming Li, Xiaohai Xu, Kun Yu, Yuxing Yuan, Yinghao Zou, Jiquan Long, Yudong Cai, Zhenxiang Li, Zhifeng Zhang, Yihua Mo, Jun Gu, Ruiyi Jiang, Yi Wei and Charles Xie. The paper describes the system's architecture and implementation and therefore provides strong evidence for the collective technical contribution, but it does not establish that every author was a founder or inventor.
3. Milvus Origin Story
Zilliz was founded in 2017. The team began developing what became Milvus in 2018, before the phrase "vector database" had become a mainstream product category. The underlying problem was not simply storing data: machine-learning systems increasingly converted text, images, audio, video and other unstructured information into high-dimensional numerical representations. Existing databases and standalone approximate-nearest-neighbor libraries did not provide a production-oriented system for managing that data at scale while supporting updates, metadata filtering, distributed execution and operational reliability.
According to Zilliz's historical engineering account, early users asked whether the technology could accelerate image search. That feedback helped the team recognize that vectors were a more fundamental abstraction than any one AI model or GPU workload. The project evolved into an open-source database centered on vector similarity search.
Milvus 0.10 was open-sourced in November 2019. In April 2020 it entered the LF AI & Data Foundation as an incubation-stage project. It graduated in 2021. Milvus 1.0 followed in 2021, while the team then made a difficult architectural decision: instead of continuing to patch 1.x, it would rebuild the system around cloud-native principles. Milvus 2.0 became that major redesign and reached general availability in January 2022.
4. Company & Milvus Timeline
The company was established in China with a global ambition. Charles Xie became founder and CEO.
The first line of Milvus code was written in October 2018, according to the project's retrospective.
Zilliz released Milvus under an open-source license in November 2019.
Milvus entered the foundation's incubation program in April. Zilliz later announced a $43M Series B led by Hillhouse Capital, bringing reported funding to more than $53M.
Milvus 1.0 launched after extensive iterations and the project graduated from LF AI & Data. Milvus also won the BigANN billion-scale vector search challenge, according to Zilliz's retrospective.
The architecture was redesigned around cloud-native, separated compute/storage and distributed components. Milvus 2.0 reached general availability in January 2022.
Prosperity7 Ventures led a $60M extension with Pavilion Capital, Hillhouse, 5Y Capital and Yunqi participating. Total investment reached $113M. Zilliz announced its Silicon Valley headquarters.
Zilliz moved from preview toward general availability for its managed Milvus service, offering managed operations, cloud deployment, security and enterprise features.
Milvus Lite launched as a lightweight Python-embedded deployment for notebooks, laptops and edge environments, while the broader ecosystem emphasized RAG and multimodal applications.
AWS announced Zilliz selected AWS as a strategic cloud provider. AWS said Zilliz had expanded to hundreds of enterprises and reported deployment-time improvements.
External Collections, lake-native retrieval, Snapshot, Storage V3 and richer retrieval capabilities were introduced.
The production release completed the lake-native direction, adding broader External Collection workflows, SINDI sparse indexing, StructArray improvements, faceted search, FAISS passthrough, TEXT and standalone Woodpecker.
Zilliz publicly positioned Vector Lakebase as a unified semantic data platform combining vector serving with lake-native storage and retrieval. Public preview was announced in August 2026.
5. What Is Milvus?
A vector database stores numerical representations of data and makes it efficient to find items that are similar to a query. A machine-learning model can turn a sentence, image, product, sound clip or document into an embedding — a list of numbers that captures useful semantic information.
For example, the sentences "a red sports car" and "a fast crimson automobile" may be represented by vectors that are close together even though the words are not identical. Milvus can search those vectors and return the nearest matches.
Milvus is not an LLM and does not normally generate the final natural-language answer. In a RAG system, an embedding model creates vectors, Milvus retrieves relevant context, and an LLM can then use that context to generate an answer.
6. Technology Architecture
High-level architecture
Current Milvus documentation describes a cloud-native, disaggregated architecture with an access layer, coordinator, worker nodes and storage. The current architecture separates streaming processing from historical/batch processing and uses shared storage so compute components can scale independently.
| Layer | Role |
|---|---|
| Access / Proxy | Stateless front end that accepts client requests, routes work and reduces intermediate results. |
| Coordinator | Cluster "brain" responsible for topology, scheduling, metadata/DDL and query management. |
| Streaming Node | Handles growing data, shard-level consistency, WAL interaction and real-time query planning. |
| Query Node | Searches historical/sealed data loaded from object storage. |
| Data Node | Performs historical data processing, compaction and index building. |
| Meta storage | Stores metadata; etcd is the documented default. |
| Object storage | Stores persistent data, indexes and related files; MinIO, S3 and Azure Blob are supported deployment choices. |
| WAL | Write-ahead-log layer for durability and recovery. Current deployments emphasize Woodpecker's zero-disk/object-storage architecture. |
Vector indexing and search
Milvus integrates vector search libraries and algorithms including Faiss, HNSW, DiskANN and SCANN. Its Knowhere execution layer provides a common vector-index execution interface and hardware-aware selection between CPU and GPU execution. Current documentation also covers sparse and dense vectors, hybrid retrieval, metadata filtering, multi-vector data, and text search.
Supported similarity measures include Euclidean/L2, inner product and cosine for floating-point vectors, plus binary metrics. Index strategies vary by workload: graph-based methods can favor high recall and speed, while quantization methods reduce memory at some accuracy cost.
GPU acceleration
Milvus supports GPU indexes such as GPU_CAGRA, GPU_IVF_PQ, GPU_IVF_FLAT and GPU_BRUTE_FORCE. The documentation notes that GPU acceleration is particularly useful for high-throughput or high-recall workloads and that GPU is not automatically faster for every latency-sensitive query pattern.
APIs and languages
Milvus exposes REST and gRPC APIs and provides SDKs including Python, Java, Go, C# and Node.js. PyMilvus is the primary Python client and also provides the Milvus Lite path.
Cloud-native dependencies
Milvus can use Kubernetes for distributed deployment. Its documented storage/dependency ecosystem includes etcd for metadata, object storage such as S3/MinIO/Azure Blob, and WAL implementations including Woodpecker, Kafka and Pulsar.
7. Milvus Products & Ecosystem
| Project / product | Purpose | Audience | Status / licensing |
|---|---|---|---|
| Milvus Lite | Embedded lightweight vector database for Python applications, notebooks, laptops and edge devices. | Developers, prototypers, small deployments | Active; Apache 2.0. Included through PyMilvus installation path. |
| Milvus Standalone | Single-machine server packaged for Docker. | Small/medium production, development | Active; open source. Current docs describe suitability up to roughly 100M vectors depending on hardware. |
| Milvus Distributed | Kubernetes-based distributed deployment for large-scale workloads. | Enterprise / production teams | Active; open source, designed for very large datasets. |
| Zilliz Cloud | Fully managed Milvus service with operational, security and enterprise capabilities. | Businesses and teams that prefer managed infrastructure | Commercial, usage-based. SaaS and BYOC options. |
| PyMilvus | Python SDK/client and interface to Milvus. | Python developers | Open source. |
| Attu | Graphical management interface for Milvus. | Developers/operators | Open-source ecosystem project. |
| Knowhere | Core vector execution engine integrating vector search libraries and hardware-aware execution. | Milvus developers / vector-search engineers | Open-source Milvus ecosystem component. |
| Towhee | Open-source framework for transforming unstructured data into vector representations and building data/AI pipelines. | AI/ML developers | Open-source Zilliz ecosystem project; current prominence is lower than the core Milvus project. |
8. Milvus 3.0 — From Vector Database to Lake-Native Retrieval
Milvus 3.0 is the most important recent architectural milestone. The 3.0 beta arrived May 9, 2026; Milvus 3.0.0 was released July 29, 2026.
Lake-native indexing
External Collections can query data that remains in open lake formats such as Parquet, Lance, Iceberg and Vortex without first copying it into a separate serving database. This addresses a common AI-data problem: duplicating large embedding tables just to make them searchable.
Storage V3 / Loon
The new storage design uses manifest-based columnar storage on object storage. It underpins features such as Snapshots and External Collections.
Retrieval engine expansion
Milvus moves beyond "nearest vectors" by adding server-side ORDER BY, aggregation, faceted search, richer StructArray operations and more expressive retrieval workflows.
Sparse retrieval
Milvus 3.0 introduces SINDI plus other sparse retrieval optimizations. Zilliz reports internal benchmark results showing a smaller BM25 index and substantial QPS improvements on selected learned-sparse datasets; these are vendor-reported benchmarks, not universal guarantees.
Why this matters
Earlier vector databases were often positioned as a serving layer sitting beside a data lake. Milvus 3.0 attempts to reduce that separation: data can stay in the lake while retrieval infrastructure builds the indexes and serves semantic queries over it. The strategic implication is a move from "vector database as another copy of data" toward "retrieval engine operating over the data platform."
9. AI Use Cases
| Use case | How Milvus participates | Example / evidence |
|---|---|---|
| RAG | Stores document embeddings and retrieves relevant context for an LLM. | Official documentation and Zilliz examples demonstrate RAG pipelines using Milvus. |
| Semantic search | Finds conceptually similar content rather than relying only on exact keywords. | Core Milvus capability. |
| Image search | Stores image embeddings and retrieves visually or semantically similar images. | Milvus research paper includes image/video search applications. |
| Recommendation | Represents users/items as vectors and searches for similar candidates. | Milvus paper and customer materials cite recommendation workloads. |
| Multimodal retrieval | Stores multiple vector representations for text, images and other modalities. | Milvus 3.0 StructArray and multi-vector capabilities. |
| Enterprise knowledge search | Indexes private documents and retrieves relevant passages for internal AI assistants. | Shell and Salesforce are publicly described Milvus users. |
| Fraud/anomaly detection | Similarity and clustering can surface unusual vector patterns. | Identified by Zilliz as an emerging vector-computing workload; treat as a strategic use case rather than a universal customer claim. |
| Video/surveillance search | Indexes representations and metadata to locate relevant events. | March Networks is listed in Milvus use-case materials. |
| Recruitment matching | Embeds candidates and job descriptions into a shared vector space. | ZipRecruiter is listed in Milvus use-case materials. |
| Avatar/product search | Uses embeddings to match queries with large catalogs. | Roblox and Walmart are listed in Milvus use-case materials. |
10. Customers & Adoption
Public customer counts have changed over time and should not be mixed across years. In 2022, TechCrunch reported that Zilliz said Milvus downloads had passed one million and production users had grown 300% year-over-year; named customers included eBay, Tencent, Walmart, IKEA, Intuit and Compass. Current Milvus materials describe deployments at more than 300 major enterprises and list organizations such as Salesforce, PayPal, Shopee, Airbnb, eBay, NVIDIA, IBM, AT&T, LINE, Roblox and Inflection.
| Organization | Publicly described use |
|---|---|
| Salesforce | Platform team uses Milvus for internal use cases across 100+ tenants. |
| PayPal | Recommender-system use expanded into a multilingual customer-service chatbot, according to Milvus use-case materials. |
| Shell | Document retrieval in RAG-oriented corporate knowledge workflows. |
| Roblox | Avatar search and other internal platform use cases. |
| Walmart | Product search and other internal applications. |
| ZipRecruiter | Candidate/job matching using embeddings. |
| Modash | Semantic search over influencer profiles/content using Zilliz Cloud. |
| Notta | Semantic retrieval over meeting and conversation transcripts using Zilliz Cloud. |
11. Business Model
The business model separates the open-source project from the commercial service:
- Milvus OSS: free software under Apache 2.0. Users can operate it themselves on local machines, Docker or Kubernetes.
- Zilliz Cloud: managed Milvus service. Zilliz monetizes the operational layer: managed compute, storage, reliability, scaling, security, enterprise controls and support.
- BYOC: Zilliz Cloud can deploy the data plane inside a customer's cloud account/VPC for sovereignty and governance requirements.
- Usage-based economics: Current Zilliz Cloud documentation describes pay-as-you-go and usage-based charging for compute, storage, data transfer and additional services. Enterprise plans add higher reliability and governance features.
- Developer-led distribution: Open source functions as a product-discovery and trust channel. A recent Zilliz executive interview says roughly 80% of Zilliz Cloud customers began as Milvus users; this is a company-reported figure.
Why the model is strategically attractive
Open source lowers adoption friction and lets developers validate the technology independently. The commercial service then monetizes the difficult operational work that enterprises may not want to own: upgrades, scaling, failure recovery, tuning, compliance and support.
12. Funding & Investors
| Date | Round | Amount | Investors / evidence |
|---|---|---|---|
| 2017 | Seed / angel | Not reliably disclosed in the primary sources reviewed | Secondary databases report Yunqi Partners and other early investors; treat exact amount as not publicly verified here. |
| 2018 | Series A | $10M | Reported by company/industry coverage; 5Y Capital led, with Yunqi Partners and other investors. |
| Nov. 2020 | Series B | $43M | Hillhouse Capital led; TrustBridge, Pavilion Capital, 5Y Capital and Yunqi participated. Company announcement said total funding exceeded $53M. |
| Aug. 2022 | Series B extension | $60M | Prosperity7 Ventures led; Pavilion Capital, Hillhouse, 5Y Capital and Yunqi participated. Total investment reached $113M. |
Total reported funding: $113M was announced by Zilliz in 2022. Some commercial databases report slightly different totals due to unattributed or database-recorded rounds; the company-announced $113M figure is preferred.
13. Competitive Landscape
| Technology | Open source | Managed cloud | Scale orientation | Distinctive strength | Typical fit |
|---|---|---|---|---|---|
| Milvus | Yes, Apache 2.0 | Zilliz Cloud | Distributed / very large-scale | Purpose-built vector retrieval, rich indexing, cloud-native architecture | Production AI retrieval at medium to very large scale |
| Pinecone | No | Yes | Managed-first | Low-ops developer experience | Teams wanting a managed vector service |
| Weaviate | Yes | Yes | Distributed | AI-native APIs, hybrid search and ecosystem integrations | AI-native applications and semantic search |
| Qdrant | Yes, Apache 2.0 | Yes | Distributed / efficient | Developer-friendly vector search and filtering | Open-source production retrieval |
| Chroma | Yes | Yes | Developer / embedded orientation | Simple GenAI developer experience | Prototypes and application-centric retrieval |
| pgvector | Yes | Via PostgreSQL providers | PostgreSQL scaling model | Keep vectors beside relational data | Existing PostgreSQL applications |
| Elasticsearch | Source-available/commercial ecosystem | Yes | Search-platform scale | Mature lexical search + vector capabilities | Organizations already invested in Elastic |
There is no single universal winner. Milvus is strongest when vector retrieval is a core infrastructure workload and the organization needs distributed scaling, multiple index types, hybrid search and deep operational control. A simpler embedded database or PostgreSQL extension can be more rational when the dataset and operational requirements are modest.
14. Technical Research & Publications
| Paper / work | Year | Why it matters |
|---|---|---|
| Milvus: A Purpose-Built Vector Data Management System — Jianguo Wang et al. | 2021 | SIGMOD paper describing Milvus architecture, APIs, heterogeneous computing, dynamic data, distribution and experiments. It reported up to two orders of magnitude speed advantage over evaluated competitors in its benchmark setup. |
| DiskANN: A Disk-based ANNS Solution with High Recall and High QPS on Billion-scale Dataset | 2021-era ecosystem work | Disk-based approximate nearest-neighbor search is relevant to large-scale vector retrieval and became part of the broader Milvus indexing ecosystem. |
| Milvus 2.0 architecture engineering series | 2021–2022 | Documents the move from a more coupled 1.x design toward cloud-native separation of availability/durability, object storage, streaming and independently scalable worker roles. |
| Milvus 3.0 engineering materials | 2026 | Documents lake-native retrieval, External Collections, Storage V3, SINDI, StructArray, aggregation, faceting and server-side sorting. |
The 2021 SIGMOD publication is particularly important because it provides a technical, peer-reviewed description of the system and names the engineering contributors rather than presenting Milvus as the invention of a single person.
15. Open-Source Community
- Milvus is an LF AI & Data project and its source repository is under the milvus-io GitHub organization.
- The project uses the Apache 2.0 license.
- The repository has accumulated more than 43,000 GitHub stars according to a recent Zilliz retrospective, reflecting substantial developer interest.
- Milvus uses GitHub, documentation, Discord/community channels, events and office hours as major community interfaces.
- Milvus has moved through LF AI & Data incubation and graduation, giving the project a governance home separate from Zilliz's commercial interests.
16. Leadership
| Name | Current role / public evidence | Relevant background |
|---|---|---|
| Charles Xie | Founder & CEO, Zilliz | Oracle database engineering; M.S. Computer Science, University of Wisconsin–Madison; founder and publicly identified inventor of Milvus. |
| James Luan | CTO, Zilliz | M.S. Computer Engineering, Cornell University; database engineering roles at Oracle, Hedvig and Alibaba Cloud; work associated with HBase and Lindorm. |
| Frank Liu | Director of Operations & ML Architect | BS/MS Electrical Engineering, Stanford; former Yahoo ML engineer; co-founder of Orion Innovations; maintainer associated with Towhee. |
For other requested executive titles such as CFO, COO, VP Engineering and Head of Research, a current authoritative public roster was not sufficiently available in the sources reviewed. They are therefore not guessed or inferred.
17. Company Culture & Philosophy
- Engineering-first: The historical Milvus story emphasizes solving difficult database and systems problems before a mature "vector database" category existed.
- Open source as product development: Zilliz uses community feedback and real workloads as a feedback loop.
- Developer-first distribution: GitHub and technical education have historically been important acquisition channels.
- Cloud-native thinking: Milvus 2.0 and 3.0 both emphasize separation of storage and compute, elastic scaling and cloud object storage.
- Hardware awareness: CPU SIMD and GPU acceleration are treated as first-class performance considerations.
- Production over demos: The company increasingly frames vector search around reliability, governance, cost and long-lived enterprise workloads.
Detailed internal hiring processes, benefits, diversity statistics and employee satisfaction metrics are not sufficiently disclosed in the authoritative sources reviewed.
18. Awards & Recognition
- LF AI & Data graduation: Milvus graduated from the foundation's project lifecycle in 2021.
- BigANN challenge: Zilliz's project retrospective says Milvus won the billion-scale vector search challenge in 2021.
- Industry recognition: Zilliz says it was named a leader by Forrester during 2024–2025. This is a vendor-reported recognition and should not be confused with a government or academic certification.
- Community scale: More than 43,000 GitHub stars are cited by Zilliz's recent project retrospective.
19. Challenges & Controversies
Documented engineering challenges
- Milvus 1.x had scalability, availability, storage-cost and operational limitations that helped motivate the 2.0 rewrite.
- Distributed vector search is difficult because vector data is memory-intensive and search, indexing and ingestion can have very different resource profiles.
- GPU indexes have workload-specific constraints; GPU is not automatically the best option for every query.
- Running distributed Milvus requires database and Kubernetes expertise, while Milvus Lite exists specifically to reduce this barrier for smaller applications.
Business challenges
- The vector database market has become crowded with purpose-built systems, PostgreSQL extensions and search engines adding vector capabilities.
- Open-source monetization requires a commercial layer that creates enough value beyond self-hosting to justify subscription/usage fees.
- The rapid evolution of embeddings, rerankers, LLMs and retrieval methods means the database must continuously adapt.
Legal / controversy review
No major public legal case, regulatory enforcement action or sustained controversy involving Milvus/Zilliz was identified in the authoritative sources reviewed for this profile. This is not a claim that no dispute has ever existed; it means no material case was found that met the verification threshold for inclusion.
20. SWOT Analysis
21. Milvus vs Traditional Databases
| System | Best at | Why use / not use Milvus |
|---|---|---|
| MySQL | Transactional relational workloads | Use MySQL for relational transactions. Add a vector system when semantic similarity becomes a core workload at scale. |
| PostgreSQL | Relational data + extensibility | pgvector is excellent when vector search is moderate and keeping vectors beside relational records is valuable. Milvus becomes more attractive when vector retrieval itself needs distributed specialization. |
| MongoDB | Document-oriented applications | Useful when application data is naturally document-shaped. Milvus is specialized for large-scale vector retrieval and indexing. |
| Elasticsearch | Lexical search, analytics and hybrid search | Strong choice when an organization already runs Elastic. Milvus is purpose-built around vector retrieval and can be preferable for vector-centric workloads. |
| Milvus | Vector similarity, hybrid retrieval and AI data | Best fit when embeddings, retrieval quality and large-scale vector infrastructure are central requirements. |
22. Key Innovations
| Innovation | Responsible group / evidence | Impact |
|---|---|---|
| Purpose-built vector data management | Charles Xie + Zilliz engineering team; documented in SIGMOD 2021 | Moved vector similarity search from isolated libraries toward a database system with persistence, APIs, dynamic data and distributed execution. |
| Cloud-native distributed Milvus 2.0 | Milvus engineering team | Separated query, data and index workloads and used shared cloud storage to scale independently. |
| Knowhere execution layer | Milvus/Zilliz engineering | Unified multiple vector search libraries and hardware-aware execution. |
| Milvus Lite | Milvus/Zilliz engineering | Reduced the gap between notebook prototyping and production Milvus deployments. |
| Lake-native External Collections | Milvus 3.0 team | Lets retrieval operate over lake-resident data without maintaining a second copy. |
| SINDI sparse retrieval | Milvus 3.0 engineering | Targets efficient sparse retrieval for learned sparse embeddings and BM25-style workloads. |
| StructArray / multi-vector retrieval | Milvus engineering | Supports entities containing multiple aligned vectors and richer nested retrieval. |
23. Founder / Inventor Profile: Charles Xie
Charles Xie is the central founder figure in the Zilliz/Milvus story. His background combines database engineering and startup building. Zilliz's current biography identifies him as founder and CEO, says he previously worked at Oracle as a founding engineer of the Oracle 12c cloud database project, and states that he invented Milvus. He holds a master's degree in computer science from the University of Wisconsin–Madison.
The significance of his contribution is best understood as a systems thesis: AI would increasingly create high-dimensional representations that conventional databases were not optimized to store and search. Instead of treating vector search as an isolated algorithmic feature, the Milvus team treated it as a database-management problem involving persistence, indexing, dynamic updates, distributed execution, hardware utilization and operational reliability.
His public commentary in 2026 continues this systems-oriented approach. Xie argues that vector databases will expand beyond simple nearest-neighbor retrieval into broader vector computing workloads such as clustering and classification, while emphasizing lower infrastructure costs as a prerequisite for broader AI adoption.
24. 50 Important Facts
25. Final Summary
Why was Milvus created?
To provide database-grade infrastructure for storing, indexing and searching high-dimensional vectors generated by machine-learning systems, especially at large scale.
Who created it?
Zilliz initiated the project. Charles Xie is publicly identified by Zilliz as the inventor, while a large engineering team contributed to the implementation and research.
What problem does it solve?
It makes similarity-based retrieval over embeddings practical, persistent, filterable, scalable and operationally manageable.
How does Zilliz make money?
Primarily through commercial managed infrastructure such as Zilliz Cloud, including usage-based compute/storage and enterprise deployment/support models.
What makes Milvus different?
Its combination of open source, distributed database architecture, multiple index/search strategies, hardware-aware execution and a progression from local Lite to Kubernetes-scale deployments.
What is next?
The evidence points toward lake-native retrieval and broader semantic data infrastructure, with Milvus 3.0 and Zilliz Vector Lakebase reducing the boundary between vector serving and data lakes.
Lessons for Entrepreneurs & AI Infrastructure Teams
- Build around a fundamental abstraction. Milvus was built around vectors as a durable data abstraction rather than a temporary LLM feature.
- Open source can be a distribution strategy. The community can become a product-testing, education and trust engine when the software solves a real problem.
- Do not confuse adoption with monetization. A large open-source community does not automatically create a commercial business; the paid layer must remove meaningful operational pain.
- Design for the next scale, but provide a simple starting point. Milvus Lite, Standalone and Distributed create a migration path from experiment to production.
- Rebuild when the architecture is fundamentally wrong. The Milvus 2.0 rewrite shows the cost of preserving an architecture that no longer matches customer requirements.
- Retrieval quality is a systems problem. Embedding models, indexing, filtering, sparse retrieval, reranking, storage and hardware all affect the final AI experience.
- Storage economics matter. Milvus 3.0's lake-native direction is partly a response to the cost and governance problems created by copying large data sets.
- Infrastructure products need operational maturity. Performance benchmarks matter, but reliability, recovery, upgrades, security and cost control determine whether an AI database becomes mission-critical.
- Know when not to use a specialized database. For small datasets, a PostgreSQL extension or embedded vector store may be simpler and more economical.
- Keep the project and business identities clear. Governance through an open-source foundation helps preserve trust while the commercial company builds managed products around the project.
Key Research Conclusions
- Milvus is best understood as a database-engineering project that anticipated the AI retrieval infrastructure market rather than as a product created specifically for today's RAG boom.
- Charles Xie is the primary founder figure and is explicitly identified by Zilliz as Milvus's inventor, but the technical system was created by a substantial engineering team.
- The 2020 LF AI & Data relationship and 2021 graduation gave Milvus an independent open-source governance context.
- The 2022 Milvus 2.0 redesign was a major technical turning point: compute/storage disaggregation and independently scalable components made the system much more suitable for cloud production.
- Milvus 3.0 changes the strategic category again by allowing retrieval over lake-resident data and by moving more ranking, filtering and aggregation work into the retrieval engine.
- Zilliz's commercial strategy is a classic open-core/managed-service pattern: open source builds adoption and trust; managed infrastructure monetizes operational complexity.
- The strongest long-term competitive question is not whether Milvus can perform vector search, but whether it can remain economically superior, reliable and easy enough as databases, search engines and cloud platforms absorb vector capabilities.
Sources & Verification
The report was researched against primary and high-quality sources available through August 22, 2026. Claims that are company-reported are identified as such. Unknown personal details and private-company financial metrics are explicitly left undisclosed.
- Milvus Release Notes — v3.0.0 and v3.0-beta
- Milvus: Announcing Milvus 3.0
- Milvus Architecture Overview
- Milvus Deployment Options
- Milvus Lite Documentation
- What is Milvus / current product overview
- Milvus GPU Index Documentation
- Milvus Glossary / Knowhere
- Milvus 2.0 architecture engineering article
- Milvus 2.0 redesign article
- SIGMOD 2021 — Milvus: A Purpose-Built Vector Data Management System
- Zilliz CEO Charles Xie — vector database evolution and philosophy
- Zilliz CEO Charles Xie — AI and VectorDB future
- Zilliz — how the company built for production AI
- TechCrunch — Zilliz $43M Series B, 2020
- TechCrunch — Zilliz $60M and Silicon Valley move, 2022
- Business Wire — Zilliz $60M Series B extension
- Linux Foundation 2020 Annual Report — LF AI & Data / Milvus
- AWS — Zilliz strategic cloud provider announcement, 2025
- Zilliz Cloud deployment and plan comparison
- Zilliz Cloud cost model
- Zilliz Cloud global/enterprise capabilities
- Milvus use cases and public customer references
- Milvus GitHub repository
- Milvus Lite GitHub repository