id: configure-helm.md label: Helm related_key: configure group: configure-docker.md order: 1

summary: Learn how to configure your Milvus.

Configure Milvus

{{fragments/translation_needed.md}}

This topic describes how to configure your Milvus.

In current release, all parameters take effect only after Milvus restarts.

{{tab}}

Configure Milvus via configuration file

You can configure Milvus with a configuration file values.yaml.

Download a configuration file

Download values.yaml directly or with the following command.

  1. $ wget https://raw.githubusercontent.com/milvus-io/milvus-helm/master/charts/milvus/values.yaml

Modify the configuration file

Configure your Milvus instance to suit your application scenarios by adjusting corresponding parameters in values.yaml.

Check the following links for more information about each parameter.

Sorted by:

For other parameters specifically to Kubernetes installation, See Milvus Helm Chart Configuration.

Start Milvus

Having finished modifying the configuration file, you can then start Milvus with the file.

  1. $ helm upgrade my-release milvus/milvus -f values.yaml

Configure Milvus via command line

Alternatively, you can upgrade Milvus configurations directly with the Helm command.

Check the configurable parameters

Before upgrade, you can check the configurable parameters with Helm charts.

  1. $ helm show values milvus/milvus

Start Milvus

Configure and start Milvus by adding --values or --set in the command for upgrade.

  1. # For instance, upgrade the Milvus cluster with compaction disabled
  2. $ helm upgrade my-release milvus/milvus --set dataCoord.enableCompaction=false

What’s next