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
Copy file name to clipboardExpand all lines: site/en/getstarted/run-milvus-gpu/install_cluster-helm-gpu.md
+32-29Lines changed: 32 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -82,7 +82,7 @@ Milvus with GPU support allows you to assign one or more GPU devices.
82
82
83
83
```bash
84
84
cat <<EOF > custom-values.yaml
85
-
indexNode:
85
+
dataNode:
86
86
resources:
87
87
requests:
88
88
nvidia.com/gpu: "1"
@@ -126,7 +126,7 @@ In addition to a single GPU device, you can also assign multiple GPU devices to
126
126
127
127
```bash
128
128
cat <<EOF > custom-values.yaml
129
-
indexNode:
129
+
dataNode:
130
130
resources:
131
131
requests:
132
132
nvidia.com/gpu: "2"
@@ -141,11 +141,11 @@ In addition to a single GPU device, you can also assign multiple GPU devices to
141
141
EOF
142
142
```
143
143
144
-
In the configuration above, the indexNode and queryNode share two GPUs. To assign different GPUs to the indexNode and the queryNode, you can modify the configuration accordingly by setting `extraEnv` in the configuration file as follows:
144
+
In the configuration above, there are four CPUs available, and each dataNode and queryNode uses two GPUs. To assign different GPUs to the dataNode and the queryNode, you can modify the configuration accordingly by setting `extraEnv` in the configuration file as follows:
145
145
146
146
```bash
147
147
cat <<EOF > custom-values.yaml
148
-
indexNode:
148
+
dataNode:
149
149
resources:
150
150
requests:
151
151
nvidia.com/gpu: "1"
@@ -184,7 +184,7 @@ In addition to a single GPU device, you can also assign multiple GPU devices to
184
184
185
185
```bash
186
186
cat <<EOF > custom-values.yaml
187
-
indexNode:
187
+
dataNode:
188
188
resources:
189
189
requests:
190
190
nvidia.com/gpu: "2"
@@ -199,11 +199,11 @@ In addition to a single GPU device, you can also assign multiple GPU devices to
199
199
EOF
200
200
```
201
201
202
-
In the configuration above, the indexNode and queryNode share two GPUs. To assign different GPUs to the indexNode and the queryNode, you can modify the configuration accordingly by setting extraEnv in the configuration file as follows:
202
+
In the configuration above, there are four CPUs available, and each dataNode and queryNode uses two GPUs. To assign different GPUs to the dataNode and the queryNode, you can modify the configuration accordingly by setting extraEnv in the configuration file as follows:
203
203
204
204
```bash
205
205
cat <<EOF > custom-values.yaml
206
-
indexNode:
206
+
dataNode:
207
207
resources:
208
208
requests:
209
209
nvidia.com/gpu: "1"
@@ -242,28 +242,31 @@ After Milvus starts, the `READY` column displays `1/1` for all pods.
0 commit comments