Configure Milvus with Helm Charts
This topic describes how to configure your Milvus with Helm charts.
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.
$ 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:
Dependencies | Components |
---|---|
Purpose | Parameters |
---|---|
Performance tuning | |
Data and meta | |
Administration |
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.
$ 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.
$ helm show values milvus/milvus
Start Milvus
Configure and start Milvus by adding --values
or --set
in the command for upgrade.
# For instance, upgrade the Milvus cluster with compaction disabled
$ helm upgrade my-release milvus/milvus --set dataCoord.enableCompaction=false
What’s next
If you want to learn how to monitor the Milvus services and create alerts:
If you are looking for instructions on how to allocate resources: