Skip to content

Latest commit

 

History

History
85 lines (64 loc) · 3.34 KB

scale-a-milvus-cluster.md

File metadata and controls

85 lines (64 loc) · 3.34 KB

Scale a Milvus Cluster

Milvus supports horizontal scaling of its components. This means you can either increase or decrease the number of worker nodes of each type according to your own need.

This topic describes how to scale out and scale in a Milvus cluster. We assume that you have already installed a Milvus cluster before scaling. Also, we recommend familiarizing yourself with the Milvus architecture before you begin.

This tutorial takes scaling out three query nodes as an example. To scale out other types of nodes, replace queryNode with the corresponding node type in the command line.

Scaling out

Scaling out refers to increasing the number of nodes in a cluster. Unlike scaling up, scaling out does not require you to allocate more resources to one node in the cluster. Instead, scaling out expands the cluster horizontally by adding more nodes.

According to the Milvus architecture, stateless worker nodes include query node, data node, index node, and proxy. Therefore, you can scale out these type of nodes to suit your business needs and application scenarios.

Generally, you will need to scale out the Milvus cluster you created if it is over-utilized. Below are some typical situations where you may need to scale out the Milvus cluster:

  • The CPU and memory utilization is high for a period of time.
  • The query throughput becomes higher.
  • Higher speed for indexing is required.
  • Massive volumes of large datasets need to be processed.
  • High availability of the Milvus service needs to be ensured.

For now autoscaling is not supported. You need to manually scale out the cluster.

Example

The following example scales out the cluster to 2 proxy, 3 query nodes, 3 index nodes and 3 data nodes without changing the number of mixCoord node

apiVersion: milvus.io/v1beta1
kind: Milvus
metadata:
  name: my-release
  labels:
    app: milvus
spec:
  # Omit other fields ...
  mode: cluster
  components:
    dataNode:
      replicas: 3
    indexNode:
      replicas: 3
    queryNode:
      replicas: 3
    mixCoord:
      replicas: 1
    proxy:
      serviceType: LoadBalancer
      replicas: 2  

Scale in

Scaling in refers to decreasing the number of nodes in a cluster. Generally, you will need to scale in the Milvus cluster you created if it is under-utilized. Below are some typical situations where you need to scale in the Milvus cluster:

  • The CPU and memory utilization is low for a period of time.
  • The query throughput becomes lower.
  • Higher speed for indexing is not required.
  • The size of the dataset to be processed is small.

For now autoscaling is not supported. You need to manually scale in the cluster.

Example

The following example scales in the cluster by setting all components' replicas to 1.

apiVersion: milvus.io/v1beta1
kind: Milvus
metadata:
  name: my-release
  labels:
    app: milvus
spec:
  # Omit other fields ...
  mode: cluster
  components:
    replicas: 1

You can also stop the milvus without delete the related resource by scaling in the components' replicas to 0. You can later quickly restart the milvus by scaling in the components' replicas to 1 or more.

Scale up

Described in Allocate Resources.