2022-10-20 08:57:30 +08:00
# README
## Overview
2022-10-26 08:23:34 +08:00
Milvus 2.2 has changed the meta structure for segment index. To upgrade a Milvus cluster of 2.1.x version you have installed, run this script to migrate the meta and upgrade the Milvus image version.
2022-10-20 08:57:30 +08:00
> Note:
2022-11-28 09:19:14 +08:00
> 1. This script only applies to Milvus installed on a K8s cluster which has storageclass.
> You can verify storageclass by running `kubectl get storageclass`. If you don't have a
> default storageclass, you need specify a storageclass via `-c <storage-class>` when running
> this script.
2022-10-26 08:23:34 +08:00
> 2. This script only supports upgrading from Milvus v2.1.x to v2.2.0.
2022-11-28 09:19:14 +08:00
> 3. If your milvus cluster use an external etcd service (which isn't installed with milvus),
> you need specify etcd service explicitly via `-e <etcd-service-ip:etcd-service-port>` otherwise
> we use the default etcd service which installed with milvus.
2022-10-26 08:23:34 +08:00
## Parameters
2022-11-28 09:19:14 +08:00
| Parameters | Description | Default value | Required |
| ------------ | ----------------------------------------------------------| -------------------------------- | ----------------------- |
| `i` | The Milvus instance name. | `None` | True |
| `n` | The namespace that Milvus is installed in. | `default` | False |
| `s` | The source Milvus version. | `None` | True |
| `t` | The target Milvus version. | `None` | True |
| `r` | The root path of Milvus meta. | `by-dev` | False |
| `w` | The new Milvus image tag. | `milvusdb/milvus:v2.2.0` | False |
2023-01-13 16:51:40 +08:00
| `m` | The meta migration image tag. | `milvusdb/meta-migration:v2.2.0-bugfix-20220112` | False |
2022-11-28 09:19:14 +08:00
| `o` | The meta migration operation. | `migrate` | False |
| `d` | Whether to cleanup after migration is completed. | `false` | False |
| `c` | The storage class for meta migration pvc. | `default storage class` | False |
| `e` | The endpoints for etcd which used by milvus. | `etcd svc installed with milvus` | False |
2022-10-26 08:23:34 +08:00
> By default, the script only applies to migration from v2.1.x to v2.2.x. Rollback to the older version with the `rollback` operation first if an error occurs.
## Overview of migration procedures
1. Stop the Milvus components. Any live session in the Milvus Etcd can cause the migration to fail.
2. Create a backup for Milvus meta.
3. Migrate the Milvus meta.
4. Start Milvus components with a new image.
## Migration guide
1. Specify Milvus instance name, source Milvus version, and target Milvus version.
2022-10-20 08:57:30 +08:00
```shell
./migrate.sh -i my-release -s 2.1.1 -t 2.2.0
```
2022-10-26 08:23:34 +08:00
2. Specify namespace with `-n` if your Milvus is not installed in the default K8s namespace.
2022-10-20 08:57:30 +08:00
```shell
./migrate.sh -i my-release -n milvus -s 2.1.1 -t 2.2.0
```
2022-10-26 08:23:34 +08:00
3. Specify rootpath with `-r` if your Milvus is installed with the custom `rootpath` .
2022-10-20 08:57:30 +08:00
```shell
./migrate.sh -i my-release -n milvus -s 2.1.1 -t 2.2.0 -r by-dev
```
2022-10-26 08:23:34 +08:00
4. Specify the image tag with `-w` if your Milvus is installed with custom `image` .
2022-10-20 08:57:30 +08:00
```shell
./migrate.sh -i my-release -n milvus -s 2.1.1 -t 2.2.0 -r by-dev -w milvusdb/milvus:master-20221016-15878781
```
2022-10-26 08:23:34 +08:00
5. Set `-d true` if you want to automatically remove the migration pod after the migration is completed.
2022-10-20 15:17:27 +08:00
```shell
./migrate.sh -i my-release -n milvus -s 2.1.1 -t 2.2.0 -w milvusdb/milvus:master-20221016-15878781 -d true
```
2022-10-26 08:23:34 +08:00
6. Rollback and migrate again if the migration fails.
2022-10-20 08:57:30 +08:00
```
./migrate.sh -i my-release -n milvus -s 2.1.1 -t 2.2.0 -r by-dev -o rollback -w < milvus-2-1-1-image >
./migrate.sh -i my-release -n milvus -s 2.1.1 -t 2.2.0 -r by-dev -o migrate -w < milvus-2-2-0-image >
```
2022-11-28 09:19:14 +08:00
7. Specify the storage class explicitly.
```shell
./migrate.sh -i my-release -n milvus -s 2.1.4 -t 2.2.0 -c < special-storage-class >
```
8. Specify external etcd service.
```shell
./migrate.sh -i my-release -n milvus -s 2.1.4 -t 2.2.0 -e < etcd-svc-ip:etcd-svc-port >
```