-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
5a9c109
commit 08f57fa
Showing
33 changed files
with
765 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: qna-config | ||
namespace: default | ||
data: | ||
EMBEDDING_MODEL_ID: BAAI/bge-base-en-v1.5 | ||
RERANK_MODEL_ID: BAAI/bge-reranker-base | ||
LLM_MODEL_ID: Intel/neural-chat-7b-v3-3 | ||
TEI_EMBEDDING_ENDPOINT: http://embedding-dependency-svc.default.svc.cluster.local:6006 | ||
TEI_RERANKING_ENDPOINT: http://reranking-dependency-svc.default.svc.cluster.local:8808 | ||
TGI_LLM_ENDPOINT: http://llm-dependency-svc.default.svc.cluster.local:9009 | ||
REDIS_URL: redis://vector-db.default.svc.cluster.local:6379 | ||
INDEX_NAME: rag-redis | ||
HUGGINGFACEHUB_API_TOKEN: {HF_TOKEN} | ||
EMBEDDING_SERVICE_HOST_IP: embedding-svc | ||
RETRIEVER_SERVICE_HOST_IP: retriever-svc | ||
RERANK_SERVICE_HOST_IP: reranking-svc | ||
NODE_SELECTOR: chatqna-opea | ||
LLM_SERVICE_HOST_IP: llm-svc |
62 changes: 62 additions & 0 deletions
62
ChatQnA/benchmark/four_gaudi/chatqna_mega_service_run.yaml
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,62 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: chatqna-backend-server-deploy | ||
namespace: default | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: chatqna-backend-server-deploy | ||
template: | ||
metadata: | ||
annotations: | ||
sidecar.istio.io/rewriteAppHTTPProbers: 'true' | ||
labels: | ||
app: chatqna-backend-server-deploy | ||
spec: | ||
nodeSelector: | ||
node-type: chatqna-opea | ||
topologySpreadConstraints: | ||
- maxSkew: 1 | ||
topologyKey: kubernetes.io/hostname | ||
whenUnsatisfiable: ScheduleAnyway | ||
labelSelector: | ||
matchLabels: | ||
app: chatqna-backend-server-deploy | ||
hostIPC: true | ||
containers: | ||
- envFrom: | ||
- configMapRef: | ||
name: qna-config | ||
image: opea/chatqna:latest | ||
imagePullPolicy: IfNotPresent | ||
name: chatqna-backend-server-deploy | ||
args: null | ||
ports: | ||
- containerPort: 8888 | ||
resources: | ||
limits: | ||
cpu: 8 | ||
memory: 4000Mi | ||
requests: | ||
cpu: 8 | ||
memory: 4000Mi | ||
serviceAccountName: default | ||
--- | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: chaqna-backend-server-svc | ||
spec: | ||
type: NodePort | ||
selector: | ||
app: chatqna-backend-server-deploy | ||
ports: | ||
- name: service | ||
port: 8888 | ||
targetPort: 8888 | ||
nodePort: 30888 |
70 changes: 70 additions & 0 deletions
70
ChatQnA/benchmark/four_gaudi/dataprep-microservice_run.yaml
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,70 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: dataprep-deploy | ||
namespace: default | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: dataprep-deploy | ||
template: | ||
metadata: | ||
annotations: | ||
sidecar.istio.io/rewriteAppHTTPProbers: 'true' | ||
labels: | ||
app: dataprep-deploy | ||
spec: | ||
nodeSelector: | ||
node-type: chatqna-opea | ||
topologySpreadConstraints: | ||
- maxSkew: 1 | ||
topologyKey: kubernetes.io/hostname | ||
whenUnsatisfiable: ScheduleAnyway | ||
labelSelector: | ||
matchLabels: | ||
app: dataprep-deploy | ||
hostIPC: true | ||
containers: | ||
- env: | ||
- name: REDIS_URL | ||
valueFrom: | ||
configMapKeyRef: | ||
name: qna-config | ||
key: REDIS_URL | ||
- name: INDEX_NAME | ||
valueFrom: | ||
configMapKeyRef: | ||
name: qna-config | ||
key: INDEX_NAME | ||
image: opea/dataprep-redis:latest | ||
imagePullPolicy: IfNotPresent | ||
name: dataprep-deploy | ||
args: null | ||
ports: | ||
- containerPort: 6007 | ||
- containerPort: 6008 | ||
- containerPort: 6009 | ||
serviceAccountName: default | ||
--- | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: dataprep-svc | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: dataprep-deploy | ||
ports: | ||
- name: port1 | ||
port: 6007 | ||
targetPort: 6007 | ||
- name: port2 | ||
port: 6008 | ||
targetPort: 6008 | ||
- name: port3 | ||
port: 6009 | ||
targetPort: 6009 |
69 changes: 69 additions & 0 deletions
69
ChatQnA/benchmark/four_gaudi/embedding-dependency_run.yaml
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,69 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: embedding-dependency-deploy | ||
namespace: default | ||
spec: | ||
replicas: 6 | ||
selector: | ||
matchLabels: | ||
app: embedding-dependency-deploy | ||
template: | ||
metadata: | ||
annotations: | ||
sidecar.istio.io/rewriteAppHTTPProbers: 'true' | ||
labels: | ||
app: embedding-dependency-deploy | ||
spec: | ||
nodeSelector: | ||
node-type: chatqna-opea | ||
containers: | ||
- envFrom: | ||
- configMapRef: | ||
name: qna-config | ||
image: ghcr.io/huggingface/text-embeddings-inference:cpu-1.5 | ||
name: embedding-dependency-deploy | ||
args: | ||
- --model-id | ||
- $(EMBEDDING_MODEL_ID) | ||
- --auto-truncate | ||
volumeMounts: | ||
- mountPath: /data | ||
name: model-volume | ||
- mountPath: /dev/shm | ||
name: shm | ||
ports: | ||
- containerPort: 80 | ||
resources: | ||
limits: | ||
cpu: 80 | ||
memory: 20000Mi | ||
requests: | ||
cpu: 80 | ||
memory: 20000Mi | ||
serviceAccountName: default | ||
volumes: | ||
- name: model-volume | ||
hostPath: | ||
path: /home/sdp/cesg | ||
type: Directory | ||
- name: shm | ||
emptyDir: | ||
medium: Memory | ||
sizeLimit: 1Gi | ||
--- | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: embedding-dependency-svc | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: embedding-dependency-deploy | ||
ports: | ||
- name: service | ||
port: 6006 | ||
targetPort: 80 |
59 changes: 59 additions & 0 deletions
59
ChatQnA/benchmark/four_gaudi/embedding-microservice_run.yaml
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,59 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: embedding-deploy | ||
namespace: default | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: embedding-deploy | ||
template: | ||
metadata: | ||
annotations: | ||
sidecar.istio.io/rewriteAppHTTPProbers: 'true' | ||
labels: | ||
app: embedding-deploy | ||
spec: | ||
nodeSelector: | ||
node-type: chatqna-opea | ||
topologySpreadConstraints: | ||
- maxSkew: 1 | ||
topologyKey: kubernetes.io/hostname | ||
whenUnsatisfiable: ScheduleAnyway | ||
labelSelector: | ||
matchLabels: | ||
app: embedding-deploy | ||
hostIPC: true | ||
containers: | ||
- envFrom: | ||
- configMapRef: | ||
name: qna-config | ||
image: opea/embedding-tei:latest | ||
imagePullPolicy: IfNotPresent | ||
name: embedding-deploy | ||
args: null | ||
ports: | ||
- containerPort: 6000 | ||
resources: | ||
limits: | ||
cpu: 4 | ||
requests: | ||
cpu: 4 | ||
serviceAccountName: default | ||
--- | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: embedding-svc | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: embedding-deploy | ||
ports: | ||
- name: service | ||
port: 6000 | ||
targetPort: 6000 |
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,88 @@ | ||
# Copyright (C) 2024 Intel Corporation | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: llm-dependency-deploy | ||
namespace: default | ||
spec: | ||
replicas: 31 | ||
selector: | ||
matchLabels: | ||
app: llm-dependency-deploy | ||
template: | ||
metadata: | ||
annotations: | ||
sidecar.istio.io/rewriteAppHTTPProbers: 'true' | ||
labels: | ||
app: llm-dependency-deploy | ||
spec: | ||
nodeSelector: | ||
node-type: chatqna-opea | ||
hostIPC: true | ||
containers: | ||
- envFrom: | ||
- configMapRef: | ||
name: qna-config | ||
image: tgi_gaudi:2.0.1 | ||
name: llm-dependency-deploy-demo | ||
securityContext: | ||
capabilities: | ||
add: | ||
- SYS_NICE | ||
args: | ||
- --model-id | ||
- $(LLM_MODEL_ID) | ||
- --max-input-length | ||
- '1024' | ||
- --max-total-tokens | ||
- '2048' | ||
- --max-batch-total-tokens | ||
- '65536' | ||
- --max-batch-prefill-tokens | ||
- '4096' | ||
volumeMounts: | ||
- mountPath: /data | ||
name: model-volume | ||
- mountPath: /dev/shm | ||
name: shm | ||
ports: | ||
- containerPort: 80 | ||
resources: | ||
limits: | ||
habana.ai/gaudi: 1 | ||
env: | ||
- name: OMPI_MCA_btl_vader_single_copy_mechanism | ||
value: none | ||
- name: PT_HPU_ENABLE_LAZY_COLLECTIVES | ||
value: 'true' | ||
- name: runtime | ||
value: habana | ||
- name: HABANA_VISIBLE_DEVICES | ||
value: all | ||
- name: HF_TOKEN | ||
value: $(HF_TOKEN) | ||
serviceAccountName: default | ||
volumes: | ||
- name: model-volume | ||
hostPath: | ||
path: /home/sdp/cesg | ||
type: Directory | ||
- name: shm | ||
emptyDir: | ||
medium: Memory | ||
sizeLimit: 1Gi | ||
--- | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: llm-dependency-svc | ||
spec: | ||
type: ClusterIP | ||
selector: | ||
app: llm-dependency-deploy | ||
ports: | ||
- name: service | ||
port: 9009 | ||
targetPort: 80 |
Oops, something went wrong.