You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the installation file for Milvus [standalone](https://github.com/milvus-io/milvus/releases/download/v2.6.4/milvus-standalone-docker-compose.yml), and save it as `docker-compose.yml`.
181
+
Download the installation file for Milvus [standalone](https://github.com/milvus-io/milvus/releases/download/v2.6.5/milvus-standalone-docker-compose.yml), and save it as `docker-compose.yml`.
Copy file name to clipboardExpand all lines: v2.6.x/site/en/adminGuide/deploy_pulsar.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ You can configure Pulsar with [Docker Compose](https://docs.docker.com/get-start
13
13
14
14
<divclass="alert note">
15
15
16
-
**Message Queue limitations**: When upgrading to Milvus v2.6.4, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
16
+
**Message Queue limitations**: When upgrading to Milvus v2.6.5, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
Copy file name to clipboardExpand all lines: v2.6.x/site/en/adminGuide/message_storage_operator.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ There are also other limitations for specifying the message storage:
36
36
- Nats introduced in 2.3 do not participate in these priority rules for backward compatibility.
37
37
- The message storage cannot be changed while the Milvus system is running.
38
38
- Only Kafka 2.x or 3.x verison is supported.
39
-
-**Upgrade limitations**: **Message Queue limitations**: When upgrading to Milvus v2.6.4, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
39
+
-**Upgrade limitations**: **Message Queue limitations**: When upgrading to Milvus v2.6.5, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
Copy file name to clipboardExpand all lines: v2.6.x/site/en/adminGuide/operator.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Milvus cluster depends on components including object storage, etcd, and Pulsar.
12
12
13
13
This topic assumes that you have deployed Milvus Operator.
14
14
15
-
<divclass="alert note">See <ahref="https://milvus.io/docs/v2.6.4/install_cluster-milvusoperator.md">Deploy Milvus Operator</a> for more information. </div>
15
+
<divclass="alert note">See <ahref="https://milvus.io/docs/v2.6.5/install_cluster-milvusoperator.md">Deploy Milvus Operator</a> for more information. </div>
16
16
17
17
You need to specify a configuration file for using Milvus Operator to start a Milvus cluster.
This topic describes how to upgrade your Milvus using Docker Compose.
12
12
13
-
In normal cases, you can [upgrade Milvus by changing its image](#Upgrade-Milvus-by-changing-its-image). However, you need to [migrate the metadata](#Migrate-the-metadata) before any upgrade from v2.1.x to v2.6.4.
13
+
In normal cases, you can [upgrade Milvus by changing its image](#Upgrade-Milvus-by-changing-its-image). However, you need to [migrate the metadata](#Migrate-the-metadata) before any upgrade from v2.1.x to v2.6.5.
14
14
15
15
<divclass="alert note">
16
16
17
-
**Message Queue limitations**: When upgrading to Milvus v2.6.4, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
17
+
**Message Queue limitations**: When upgrading to Milvus v2.6.5, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
18
18
19
19
20
20
</div>
@@ -31,35 +31,35 @@ In normal cases, you can upgrade Milvus as follows:
31
31
...
32
32
rootcoord:
33
33
container_name: milvus-rootcoord
34
-
image: milvusdb/milvus:v2.6.4
34
+
image: milvusdb/milvus:v2.6.5
35
35
...
36
36
proxy:
37
37
container_name: milvus-proxy
38
-
image: milvusdb/milvus:v2.6.4
38
+
image: milvusdb/milvus:v2.6.5
39
39
...
40
40
querycoord:
41
41
container_name: milvus-querycoord
42
-
image: milvusdb/milvus:v2.6.4
42
+
image: milvusdb/milvus:v2.6.5
43
43
...
44
44
querynode:
45
45
container_name: milvus-querynode
46
-
image: milvusdb/milvus:v2.6.4
46
+
image: milvusdb/milvus:v2.6.5
47
47
...
48
48
indexcoord:
49
49
container_name: milvus-indexcoord
50
-
image: milvusdb/milvus:v2.6.4
50
+
image: milvusdb/milvus:v2.6.5
51
51
...
52
52
indexnode:
53
53
container_name: milvus-indexnode
54
-
image: milvusdb/milvus:v2.6.4
54
+
image: milvusdb/milvus:v2.6.5
55
55
...
56
56
datacoord:
57
57
container_name: milvus-datacoord
58
-
image: milvusdb/milvus:v2.6.4
58
+
image: milvusdb/milvus:v2.6.5
59
59
...
60
60
datanode:
61
61
container_name: milvus-datanode
62
-
image: milvusdb/milvus:v2.6.4
62
+
image: milvusdb/milvus:v2.6.5
63
63
```
64
64
65
65
2. Run the following commands to perform the upgrade.
@@ -87,7 +87,7 @@ In normal cases, you can upgrade Milvus as follows:
87
87
runWithBackup: true
88
88
config:
89
89
sourceVersion: 2.1.4 # Specify your milvus version
This guide describes how to upgrade your Milvus cluster from v2.5.x to v2.6.4 using Helm Chart.
15
+
This guide describes how to upgrade your Milvus cluster from v2.5.x to v2.6.5 using Helm Chart.
16
16
17
17
## Before you start
18
18
19
-
### What's new in v2.6.4
19
+
### What's new in v2.6.5
20
20
21
-
Upgrading from Milvus 2.5.x to 2.6.4 involves significant architectural changes:
21
+
Upgrading from Milvus 2.5.x to 2.6.5 involves significant architectural changes:
22
22
23
23
-**Coordinator consolidation**: Legacy separate coordinators (`dataCoord`, `queryCoord`, `indexCoord`) have been consolidated into a single `mixCoord`
24
24
-**New components**: Introduction of Streaming Node for enhanced data processing
@@ -34,11 +34,11 @@ This upgrade process ensures proper migration to the new architecture. For more
34
34
- Milvus cluster deployed via Helm Chart
35
35
36
36
**Compatibility requirements:**
37
-
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.4. Direct upgrades from release candidates are not supported.
37
+
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.5. Direct upgrades from release candidates are not supported.
38
38
- If you are currently running v2.6.0-rc1 and need to preserve your data, please refer to [this community guide](https://github.com/milvus-io/milvus/issues/43538#issuecomment-3112808997) for migration assistance.
39
-
- You **must** upgrade to v2.5.16 or later with `mixCoordinator` enabled before upgrading to v2.6.4.
39
+
- You **must** upgrade to v2.5.16 or later with `mixCoordinator` enabled before upgrading to v2.6.5.
40
40
41
-
**Message Queue limitations**: When upgrading to Milvus v2.6.4, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
41
+
**Message Queue limitations**: When upgrading to Milvus v2.6.5, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
42
42
43
43
44
44
<divclass="alert note">
@@ -110,13 +110,13 @@ Wait for the upgrade to complete:
110
110
kubectl get pods
111
111
```
112
112
113
-
### Step 3: Upgrade to v2.6.4
113
+
### Step 3: Upgrade to v2.6.5
114
114
115
-
Once v2.5.16 is running successfully with `mixCoordinator`, upgrade to v2.6.4:
115
+
Once v2.5.16 is running successfully with `mixCoordinator`, upgrade to v2.6.5:
This guide describes how to upgrade your Milvus cluster from v2.5.x to v2.6.4 using Milvus Operator.
15
+
This guide describes how to upgrade your Milvus cluster from v2.5.x to v2.6.5 using Milvus Operator.
16
16
17
17
## Before you start
18
18
19
-
### What's new in v2.6.4
19
+
### What's new in v2.6.5
20
20
21
-
Upgrading from Milvus 2.5.x to 2.6.4 involves significant architectural changes:
21
+
Upgrading from Milvus 2.5.x to 2.6.5 involves significant architectural changes:
22
22
23
23
-**Coordinator consolidation**: Legacy separate coordinators (`dataCoord`, `queryCoord`, `indexCoord`) have been consolidated into a single `mixCoord`
24
24
-**New components**: Introduction of Streaming Node for enhanced data processing
@@ -34,11 +34,11 @@ This upgrade process ensures proper migration to the new architecture. For more
34
34
- Helm 3.x installed
35
35
36
36
**Compatibility requirements:**
37
-
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.4. Direct upgrades from release candidates are not supported.
37
+
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.5. Direct upgrades from release candidates are not supported.
38
38
- If you are currently running v2.6.0-rc1 and need to preserve your data, please refer to [this community guide](https://github.com/milvus-io/milvus/issues/43538#issuecomment-3112808997) for migration assistance.
39
-
- You **must** upgrade to v2.5.16 or later with `mixCoord` enabled before upgrading to v2.6.4.
39
+
- You **must** upgrade to v2.5.16 or later with `mixCoord` enabled before upgrading to v2.6.5.
40
40
41
-
**Message Queue limitations**: When upgrading to Milvus v2.6.4, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
41
+
**Message Queue limitations**: When upgrading to Milvus v2.6.5, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
42
42
43
43
44
44
## Upgrade process
@@ -106,9 +106,9 @@ Wait for completion:
106
106
kubectl get pods
107
107
```
108
108
109
-
#### 2.3 Upgrade to v2.6.4
109
+
#### 2.3 Upgrade to v2.6.5
110
110
111
-
Once v2.5.16 is running successfully with `mixCoord`, upgrade to v2.6.4:
111
+
Once v2.5.16 is running successfully with `mixCoord`, upgrade to v2.6.5:
112
112
113
113
Update your configuration file (`milvusupgrade.yaml` in this example):
114
114
@@ -119,7 +119,7 @@ metadata:
119
119
name: my-release # Replace with your actual release name
This guide describes how to upgrade your Milvus standalone deployment from v2.5.x to v2.6.4 using Docker Compose.
15
+
This guide describes how to upgrade your Milvus standalone deployment from v2.5.x to v2.6.5 using Docker Compose.
16
16
17
17
## Before you start
18
18
19
-
### What's new in v2.6.4
19
+
### What's new in v2.6.5
20
20
21
-
Upgrading from Milvus 2.5.x to 2.6.4 involves significant architectural changes:
21
+
Upgrading from Milvus 2.5.x to 2.6.5 involves significant architectural changes:
22
22
23
23
-**Coordinator consolidation**: Legacy separate coordinators (`dataCoord`, `queryCoord`, `indexCoord`) have been consolidated into a single `mixCoord`
24
24
-**New components**: Introduction of Streaming Node for enhanced data processing
@@ -33,16 +33,16 @@ This upgrade process ensures proper migration to the new architecture. For more
33
33
- Milvus standalone deployed via Docker Compose
34
34
35
35
**Compatibility requirements:**
36
-
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.4. Direct upgrades from release candidates are not supported.
36
+
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.5. Direct upgrades from release candidates are not supported.
37
37
- If you are currently running v2.6.0-rc1 and need to preserve your data, please refer to [this community guide](https://github.com/milvus-io/milvus/issues/43538#issuecomment-3112808997) for migration assistance.
38
-
- You **must** upgrade to v2.5.16 or later before upgrading to v2.6.4.
38
+
- You **must** upgrade to v2.5.16 or later before upgrading to v2.6.5.
39
39
40
-
**Message Queue limitations**: When upgrading to Milvus v2.6.4, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
40
+
**Message Queue limitations**: When upgrading to Milvus v2.6.5, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
41
41
42
42
43
43
<divclass="alter note">
44
44
45
-
Due to security concerns, Milvus upgrades its MinIO to RELEASE.2024-12-18T13-15-44Z with the release of v2.6.4.
45
+
Due to security concerns, Milvus upgrades its MinIO to RELEASE.2024-12-18T13-15-44Z with the release of v2.6.5.
46
46
47
47
</div>
48
48
@@ -79,9 +79,9 @@ Skip this step if your standalone deployment is already running v2.5.16 or highe
79
79
docker compose ps
80
80
```
81
81
82
-
### Step 2: Upgrade to v2.6.4
82
+
### Step 2: Upgrade to v2.6.5
83
83
84
-
Once v2.5.16 is running successfully, upgrade to v2.6.4:
84
+
Once v2.5.16 is running successfully, upgrade to v2.6.5:
85
85
86
86
1. Edit your existing `docker-compose.yaml` file and update both the Milvus and MinIO image tags:
87
87
@@ -94,7 +94,7 @@ Once v2.5.16 is running successfully, upgrade to v2.6.4:
This guide describes how to upgrade your Milvus standalone deployment from v2.5.x to v2.6.4 using Helm Chart.
16
+
This guide describes how to upgrade your Milvus standalone deployment from v2.5.x to v2.6.5 using Helm Chart.
17
17
18
18
## Before you start
19
19
20
-
### What's new in v2.6.4
20
+
### What's new in v2.6.5
21
21
22
-
Upgrading from Milvus 2.5.x to 2.6.4 involves significant architectural changes:
22
+
Upgrading from Milvus 2.5.x to 2.6.5 involves significant architectural changes:
23
23
24
24
-**Coordinator consolidation**: Legacy separate coordinators (`dataCoord`, `queryCoord`, `indexCoord`) have been consolidated into a single `mixCoord`
25
25
-**New components**: Introduction of Streaming Node for enhanced data processing
@@ -35,11 +35,11 @@ This upgrade process ensures proper migration to the new architecture. For more
35
35
- Milvus standalone deployed via Helm Chart
36
36
37
37
**Compatibility requirements:**
38
-
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.4. Direct upgrades from release candidates are not supported.
38
+
- Milvus v2.6.0-rc1 is **not compatible** with v2.6.5. Direct upgrades from release candidates are not supported.
39
39
- If you are currently running v2.6.0-rc1 and need to preserve your data, please refer to [this community guide](https://github.com/milvus-io/milvus/issues/43538#issuecomment-3112808997) for migration assistance.
40
-
- You **must** upgrade to v2.5.16 or later before upgrading to v2.6.4.
40
+
- You **must** upgrade to v2.5.16 or later before upgrading to v2.6.5.
41
41
42
-
**Message Queue limitations**: When upgrading to Milvus v2.6.4, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
42
+
**Message Queue limitations**: When upgrading to Milvus v2.6.5, you must maintain your current message queue choice. Switching between different message queue systems during the upgrade is not supported. Support for changing message queue systems will be available in future versions.
43
43
44
44
45
45
<divclass="alert note">
@@ -93,13 +93,13 @@ Wait for the upgrade to complete:
93
93
kubectl get pods
94
94
```
95
95
96
-
### Step 3: Upgrade to v2.6.4
96
+
### Step 3: Upgrade to v2.6.5
97
97
98
-
Once v2.5.16 is running successfully, upgrade to v2.6.4:
98
+
Once v2.5.16 is running successfully, upgrade to v2.6.5:
0 commit comments