Milvus

单机部署: https://milvus.io/docs/v2.0.0/install_standalone-docker.md

架构图: 

https://milvus.io/docs/v2.0.0/architecture_overview.md

Architecture overview
Milvus operates on a shared-disk architecture that separates storage from computing and supports horizontally scalable computing nodes.
数据存储和计算分开,并且支持计算节点的水平扩展。

Overall architecture
Milvus separates data flow from control flow, and is divided into four layers that are independent in terms of scalability and disaster recovery
将数据流和控制流分开,根据可扩展性和容灾恢复,系统架构分为4层,相互独立。

Milvus_第1张图片

Access layer(访问层)

The access layer acts as the system's face, exposing the endpoint of the client connection to the outside world. 
It is responsible for processing client connections, carrying out static verification, basic dynamic checks for user requests, forwarding requests, and gathering and returning results to the client. 
The proxy itself is stateless and provides unified access addresses and services to the outside world through load balancing components (Nginx, Kubernetess Ingress, N

你可能感兴趣的:(架构)