-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add milvus support for data-prep and retriever-usvc (#468)
Use "helm install" with -f milvus-values.yaml Signed-off-by: Dolpher Du <dolpher.du@intel.com>
- Loading branch information
1 parent
7b8c510
commit d289b4e
Showing
18 changed files
with
157 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
**/bin/ | ||
*.out | ||
*.swp | ||
**/Chart.lock | ||
**/charts/*.tgz | ||
|
||
bazel-* | ||
compile_commands.json | ||
.gitconfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ tei: | |
enabled: true | ||
redis-vector-db: | ||
enabled: true | ||
milvus: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Default values for data-prep. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
milvus: | ||
enabled: true | ||
cluster: | ||
enabled: false | ||
etcd: | ||
replicaCount: 1 | ||
pulsar: | ||
enabled: false | ||
minio: | ||
mode: standalone | ||
redis-vector-db: | ||
enabled: false | ||
tei: | ||
enabled: true | ||
|
||
image: | ||
repository: opea/dataprep-milvus | ||
|
||
port: 6010 | ||
# text embedding inference service URL, e.g. http://<service-name>:<port> | ||
#TEI_EMBEDDING_ENDPOINT: "http://embedding-tei:80" | ||
# milvus DB configurations | ||
#MILVUS_HOST: "milvustest" | ||
MILVUS_PORT: "19530" | ||
COLLECTION_NAME: "rag_milvus" | ||
MOSEC_EMBEDDING_ENDPOINT: "" | ||
MOSEC_EMBEDDING_MODEL: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ tei: | |
enabled: true | ||
redis-vector-db: | ||
enabled: true | ||
milvus: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
# Default values for retriever-usvc. | ||
# This is a YAML-formatted file. | ||
# Declare variables to be passed into your templates. | ||
|
||
milvus: | ||
enabled: true | ||
cluster: | ||
enabled: false | ||
etcd: | ||
replicaCount: 1 | ||
pulsar: | ||
enabled: false | ||
minio: | ||
mode: standalone | ||
redis-vector-db: | ||
enabled: false | ||
tei: | ||
enabled: true | ||
|
||
image: | ||
repository: opea/retriever-milvus | ||
port: 7000 | ||
# text embedding inference service URL, e.g. http://<service-name>:<port> | ||
#TEI_EMBEDDING_ENDPOINT: "http://dataprep-tei:80" | ||
# milvus DB configurations | ||
#MILVUS_HOST: "dataprep-milvus" | ||
MILVUS_PORT: "19530" | ||
COLLECTION_NAME: "rag_milvus" | ||
MOSEC_EMBEDDING_ENDPOINT: "" | ||
MOSEC_EMBEDDING_MODEL: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters