Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[milvus-4.2.16] Enable Milvus to handle larger datasets efficiently #134

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/milvus/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: milvus
appVersion: "2.4.13-hotfix"
kubeVersion: "^1.10.0-0"
description: Milvus is an open-source vector database built to power AI applications and vector similarity search.
version: 4.2.15
version: 4.2.16
keywords:
- milvus
- elastic
Expand Down
4 changes: 3 additions & 1 deletion charts/milvus/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,9 @@ The following table lists the configurable parameters of the Milvus Query Node c
| `queryNode.profiling.enabled` | Whether to enable live profiling | `false` |
| `queryNode.extraEnv` | Additional Milvus Query Node container environment variables | `[]` |
| `queryNode.strategy` | Deployment strategy configuration | RollingUpdate |

| `queryNode.enableDisk` | Allows use of disk storage for loading and searching indexes | `false` |
| `queryNode.loadMemoryUsageFactor` | Estimate the memory usage when loading segments | `{}` |
| `queryNode.maxDiskUsagePercentage` | Maximum percentage of disk space that the query node can use | `90` |
### Milvus Index Coordinator Deployment Configuration

The following table lists the configurable parameters of the Milvus Index Coordinator component and their default values.
Expand Down
4 changes: 4 additions & 0 deletions charts/milvus/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,10 @@ extraConfigFiles:
# common:
# security:
# tlsMode: 1
# queryNode:
# enableDisk: false
# loadMemoryUsageFactor: 2
# maxDiskUsagePercentage: 90

## Expose the Milvus service to be accessed from outside the cluster (LoadBalancer service).
## or access it from within the cluster (ClusterIP service). Set the service type and the port to serve it.
Expand Down
Loading