Export data from Milvus
Use the Milvus Python SDK or export tools to extract your collection data, including vectors, IDs, and metadata. Export to a portable format such as CSV, JSON, or NumPy arrays.
Transform data for VectorAI DB
Map your exported fields to the VectorAI DB point structure: unique IDs, vector embeddings, and optional JSON metadata payloads. Ensure vector dimensions match the target collection configuration and that data types are compatible.
Install VectorAI DB
If you have not already set up VectorAI DB, follow the Docker installation guide to deploy it locally or on your server.
Ingest data into VectorAI DB
Use the Python SDK to create a collection with matching dimensions and distance metric, then insert your transformed vectors and metadata. Refer to the Python SDK quickstart for code examples.