Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit b75e705

Browse files
authored
Enable disk index by default (#384)
Signed-off-by: Edward Zeng <jie.zeng@zilliz.com> Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
1 parent 3b707e2 commit b75e705

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.github/workflows/markdown.links.config.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
},
66
{
77
"pattern": "^http://localhost"
8+
},
9+
{
10+
"pattern": "^https://github.com/minio"
811
}
912
]
10-
}
13+
}

charts/milvus/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: milvus
33
appVersion: "2.1.4"
44
kubeVersion: "^1.10.0-0"
55
description: Milvus is an open-source vector database built to power AI applications and vector similarity search.
6-
version: 3.2.14
6+
version: 3.2.15
77
keywords:
88
- milvus
99
- elastic

charts/milvus/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ The following table lists the configurable parameters of the Milvus Standalone c
210210
| `standalone.affinity` | Affinity settings for Milvus Standalone pods assignment | `{}` |
211211
| `standalone.tolerations` | Toleration labels for Milvus Standalone pods assignment | `[]` |
212212
| `standalone.heaptrack.enabled` | Whether to enable heaptrack | `false` |
213-
| `standalone.disk.enabled` | Whether to enable disk | `false` |
213+
| `standalone.disk.enabled` | Whether to enable disk | `true` |
214214
| `standalone.profiling.enabled` | Whether to enable live profiling | `false` |
215215
| `standalone.extraEnv` | Additional Milvus Standalone container environment variables | `[]` |
216216
| `standalone.messageQueue` | Message queue for Milvus Standalone: rocksmq, pulsar, kafka | `rocksmq` |
@@ -304,7 +304,7 @@ The following table lists the configurable parameters of the Milvus Query Node c
304304
| `queryNode.affinity` | Affinity settings for Milvus Query Node pods assignment | `{}` |
305305
| `queryNode.tolerations` | Toleration labels for Milvus Query Node pods assignment | `[]` |
306306
| `queryNode.heaptrack.enabled` | Whether to enable heaptrack | `false` |
307-
| `queryNode.disk.enabled` | Whether to enable disk for query | `false` |
307+
| `queryNode.disk.enabled` | Whether to enable disk for query | `true` |
308308
| `queryNode.profiling.enabled` | Whether to enable live profiling | `false` |
309309
| `queryNode.extraEnv` | Additional Milvus Query Node container environment variables | `[]` |
310310
| `queryNode.grouping.enabled` | Enable grouping small nq search | `true` |
@@ -348,7 +348,7 @@ The following table lists the configurable parameters of the Milvus Index Node c
348348
| `indexNode.affinity` | Affinity settings for Milvus Index Node pods assignment | `{}` |
349349
| `indexNode.tolerations` | Toleration labels for Milvus Index Node pods assignment | `[]` |
350350
| `indexNode.heaptrack.enabled` | Whether to enable heaptrack | `false` |
351-
| `indexNode.disk.enabled` | Whether to enable disk for index node | `false` |
351+
| `indexNode.disk.enabled` | Whether to enable disk for index node | `true` |
352352
| `indexNode.profiling.enabled` | Whether to enable live profiling | `false` |
353353
| `indexNode.extraEnv` | Additional Milvus Index Node container environment variables | `[]` |
354354
| `indexNode.scheduler.buildParallel` | Index task build paralellism | `1` |

charts/milvus/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ standalone:
284284
heaptrack:
285285
enabled: false
286286
disk:
287-
enabled: false
287+
enabled: true
288288
size:
289289
enabled: false # Enable local storage size limit
290290
profiling:
@@ -416,7 +416,7 @@ queryNode:
416416
heaptrack:
417417
enabled: false
418418
disk:
419-
enabled: false # Enable querynode load disk index, and search on disk index
419+
enabled: true # Enable querynode load disk index, and search on disk index
420420
size:
421421
enabled: false # Enable local storage size limit
422422
profiling:
@@ -471,7 +471,7 @@ indexNode:
471471
profiling:
472472
enabled: false # Enable live profiling
473473
disk:
474-
enabled: false # Enable index node build disk vector index
474+
enabled: true # Enable index node build disk vector index
475475
size:
476476
enabled: false # Enable local storage size limit
477477

0 commit comments

Comments
 (0)