



Milvus Standalone is a single-machine deployment option of the Milvus vector database that provides a complete, production-ready vector search engine suitable for datasets up to millions of vectors.
Loading more......
title: Milvus Standalone slug: milvus-standalone brand: Milvus brand_logo: https://milvus.io/img/milvus-logo.svg source_url: https://milvus.io/ category: vector-database-engines tags:
Milvus Standalone is the single-machine deployment option of the open-source Milvus vector database. It provides a complete, production-ready vector search engine suitable for workloads with up to millions of vectors, making it a fit for both testing and smaller-scale production GenAI applications.
Single-node deployment
Complete vector database
Production or testing use
Scale target
GenAI-focused
High-performance vector search engine
Container-based setup
Part of a broader deployment family
Installation
Client usage example (Milvus family)
Python client workflow shared across Milvus deployments:
from pymilvus import MilvusClient
client = MilvusClient("milvus_demo.db")
client.create_collection(
collection_name="demo_collection",
dimension=5
)
The same client patterns apply when targeting a Milvus Standalone instance instead of a local file.