diff --git a/Makefile b/Makefile index 00067784..1f040edc 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # VERSION=$(shell git describe | sed 's/^v//') -VERSION=0.7.12 +VERSION=0.7.13 DOCKER=podman @@ -44,6 +44,13 @@ tg-launch-%.yaml: templates/%.jsonnet templates/components/version.jsonnet jsonnet -S ${@:tg-launch-%.yaml=templates/%.jsonnet} > $@ update-templates: set-version + for graph in ${GRAPHS}; do \ + cm=$${graph},pulsar,milvus,grafana; \ + input=templates/main.jsonnet; \ + output=tg-storage-$${graph}.yaml; \ + echo $${graph} '->' $${output}; \ + jsonnet --ext-str options=$${cm} -S $${input} > $${output}; \ + done for model in ${MODELS}; do \ for graph in ${GRAPHS}; do \ cm=$${graph},pulsar,milvus,grafana,trustgraph,$${model}; \ diff --git a/setup.py b/setup.py index 389f8d13..44da06a9 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os with open("README.md", "r") as fh: long_description = fh.read() -version = "0.7.12" +version = "0.7.13" setuptools.setup( name="trustgraph", diff --git a/tg-launch-azure-cassandra.yaml b/tg-launch-azure-cassandra.yaml index ed6d4d06..8ef01e77 100644 --- a/tg-launch-azure-cassandra.yaml +++ b/tg-launch-azure-cassandra.yaml @@ -33,7 +33,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -50,7 +50,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -122,7 +122,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -155,7 +155,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -170,7 +170,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -232,7 +232,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -280,7 +280,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -316,7 +316,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -369,7 +369,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -386,7 +386,7 @@ "reservations": "cpus": "0.1" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -403,7 +403,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -420,7 +420,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -443,7 +443,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -470,7 +470,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -485,7 +485,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "cassandra": {} diff --git a/tg-launch-azure-neo4j.yaml b/tg-launch-azure-neo4j.yaml index ed4049c8..34add904 100644 --- a/tg-launch-azure-neo4j.yaml +++ b/tg-launch-azure-neo4j.yaml @@ -16,7 +16,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -33,7 +33,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -105,7 +105,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -138,7 +138,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -153,7 +153,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -233,7 +233,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -281,7 +281,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -317,7 +317,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -370,7 +370,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -387,7 +387,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -404,7 +404,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -421,7 +421,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -444,7 +444,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -471,7 +471,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -486,7 +486,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "etcd": {} diff --git a/tg-launch-bedrock-cassandra.yaml b/tg-launch-bedrock-cassandra.yaml index c8d68dd2..12d7c2c8 100644 --- a/tg-launch-bedrock-cassandra.yaml +++ b/tg-launch-bedrock-cassandra.yaml @@ -33,7 +33,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -50,7 +50,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -122,7 +122,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -155,7 +155,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -170,7 +170,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -232,7 +232,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -280,7 +280,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -316,7 +316,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -369,7 +369,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -386,7 +386,7 @@ "reservations": "cpus": "0.1" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -403,7 +403,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -420,7 +420,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -447,7 +447,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -478,7 +478,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -493,7 +493,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "cassandra": {} diff --git a/tg-launch-bedrock-neo4j.yaml b/tg-launch-bedrock-neo4j.yaml index a081a5cf..e0333a34 100644 --- a/tg-launch-bedrock-neo4j.yaml +++ b/tg-launch-bedrock-neo4j.yaml @@ -16,7 +16,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -33,7 +33,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -105,7 +105,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -138,7 +138,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -153,7 +153,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -233,7 +233,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -281,7 +281,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -317,7 +317,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -370,7 +370,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -387,7 +387,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -404,7 +404,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -421,7 +421,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -448,7 +448,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -479,7 +479,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -494,7 +494,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "etcd": {} diff --git a/tg-launch-claude-cassandra.yaml b/tg-launch-claude-cassandra.yaml index 2d828a26..17e16a2c 100644 --- a/tg-launch-claude-cassandra.yaml +++ b/tg-launch-claude-cassandra.yaml @@ -33,7 +33,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -50,7 +50,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -122,7 +122,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -155,7 +155,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -170,7 +170,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -232,7 +232,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -280,7 +280,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -316,7 +316,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -369,7 +369,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -386,7 +386,7 @@ "reservations": "cpus": "0.1" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -403,7 +403,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -420,7 +420,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -441,7 +441,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -466,7 +466,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -481,7 +481,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "cassandra": {} diff --git a/tg-launch-claude-neo4j.yaml b/tg-launch-claude-neo4j.yaml index e6fc8819..309862e6 100644 --- a/tg-launch-claude-neo4j.yaml +++ b/tg-launch-claude-neo4j.yaml @@ -16,7 +16,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -33,7 +33,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -105,7 +105,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -138,7 +138,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -153,7 +153,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -233,7 +233,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -281,7 +281,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -317,7 +317,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -370,7 +370,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -387,7 +387,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -404,7 +404,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -421,7 +421,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -442,7 +442,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -467,7 +467,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -482,7 +482,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "etcd": {} diff --git a/tg-launch-cohere-cassandra.yaml b/tg-launch-cohere-cassandra.yaml index a2557c0e..560287d6 100644 --- a/tg-launch-cohere-cassandra.yaml +++ b/tg-launch-cohere-cassandra.yaml @@ -33,7 +33,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -50,7 +50,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -122,7 +122,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -155,7 +155,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -170,7 +170,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -232,7 +232,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -280,7 +280,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -316,7 +316,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -369,7 +369,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -386,7 +386,7 @@ "reservations": "cpus": "0.1" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -403,7 +403,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -420,7 +420,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -439,7 +439,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -462,7 +462,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -477,7 +477,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "cassandra": {} diff --git a/tg-launch-cohere-neo4j.yaml b/tg-launch-cohere-neo4j.yaml index a43c85c9..6d4fe84e 100644 --- a/tg-launch-cohere-neo4j.yaml +++ b/tg-launch-cohere-neo4j.yaml @@ -16,7 +16,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -33,7 +33,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -105,7 +105,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -138,7 +138,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -153,7 +153,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -233,7 +233,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -281,7 +281,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -317,7 +317,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -370,7 +370,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -387,7 +387,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -404,7 +404,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -421,7 +421,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -440,7 +440,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -463,7 +463,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -478,7 +478,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "etcd": {} diff --git a/tg-launch-ollama-cassandra.yaml b/tg-launch-ollama-cassandra.yaml index 3406c221..844ac953 100644 --- a/tg-launch-ollama-cassandra.yaml +++ b/tg-launch-ollama-cassandra.yaml @@ -33,7 +33,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -50,7 +50,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -122,7 +122,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -155,7 +155,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -170,7 +170,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -232,7 +232,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -267,7 +267,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -290,7 +290,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -343,7 +343,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -360,7 +360,7 @@ "reservations": "cpus": "0.1" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -377,7 +377,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -394,7 +394,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -413,7 +413,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -436,7 +436,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -451,7 +451,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "cassandra": {} diff --git a/tg-launch-ollama-neo4j.yaml b/tg-launch-ollama-neo4j.yaml index d53e6d82..4f790823 100644 --- a/tg-launch-ollama-neo4j.yaml +++ b/tg-launch-ollama-neo4j.yaml @@ -16,7 +16,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -33,7 +33,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -105,7 +105,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -138,7 +138,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -153,7 +153,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -233,7 +233,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -268,7 +268,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -291,7 +291,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -344,7 +344,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -361,7 +361,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -378,7 +378,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -395,7 +395,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -414,7 +414,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -437,7 +437,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -452,7 +452,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "etcd": {} diff --git a/tg-launch-openai-cassandra.yaml b/tg-launch-openai-cassandra.yaml index 575ce806..6f49abf7 100644 --- a/tg-launch-openai-cassandra.yaml +++ b/tg-launch-openai-cassandra.yaml @@ -33,7 +33,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -50,7 +50,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -122,7 +122,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -155,7 +155,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -170,7 +170,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -232,7 +232,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -280,7 +280,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -316,7 +316,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -369,7 +369,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -386,7 +386,7 @@ "reservations": "cpus": "0.1" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -403,7 +403,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -420,7 +420,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -441,7 +441,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -466,7 +466,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -481,7 +481,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "cassandra": {} diff --git a/tg-launch-openai-neo4j.yaml b/tg-launch-openai-neo4j.yaml index 0e261f74..cce360b7 100644 --- a/tg-launch-openai-neo4j.yaml +++ b/tg-launch-openai-neo4j.yaml @@ -16,7 +16,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -33,7 +33,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -105,7 +105,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -138,7 +138,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -153,7 +153,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -233,7 +233,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -281,7 +281,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -317,7 +317,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -370,7 +370,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -387,7 +387,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -404,7 +404,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -421,7 +421,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -442,7 +442,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion-rag": "command": @@ -467,7 +467,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "vectorize": "command": @@ -482,7 +482,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "etcd": {} diff --git a/tg-launch-vertexai-cassandra.yaml b/tg-launch-vertexai-cassandra.yaml index 36af972d..66877ac6 100644 --- a/tg-launch-vertexai-cassandra.yaml +++ b/tg-launch-vertexai-cassandra.yaml @@ -33,7 +33,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -50,7 +50,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -122,7 +122,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -155,7 +155,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -170,7 +170,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -232,7 +232,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -280,7 +280,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -316,7 +316,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -369,7 +369,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -386,7 +386,7 @@ "reservations": "cpus": "0.1" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -403,7 +403,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -420,7 +420,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -443,7 +443,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": - "./vertexai:/vertexai" @@ -472,7 +472,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": - "./vertexai:/vertexai" @@ -489,7 +489,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "cassandra": {} diff --git a/tg-launch-vertexai-neo4j.yaml b/tg-launch-vertexai-neo4j.yaml index fd5488f5..0caa51db 100644 --- a/tg-launch-vertexai-neo4j.yaml +++ b/tg-launch-vertexai-neo4j.yaml @@ -16,7 +16,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "embeddings": "command": @@ -33,7 +33,7 @@ "reservations": "cpus": "0.5" "memory": "256M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "etcd": "command": @@ -105,7 +105,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "init-pulsar": "command": @@ -138,7 +138,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "kg-extract-relationships": "command": @@ -153,7 +153,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "milvus": "command": @@ -233,7 +233,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prometheus": "deploy": @@ -281,7 +281,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "prompt-rag": "command": @@ -317,7 +317,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "pulsar": "command": "bin/pulsar standalone" @@ -370,7 +370,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "query-triples": "command": @@ -387,7 +387,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-graph-embeddings": "command": @@ -404,7 +404,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "store-triples": "command": @@ -421,7 +421,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "text-completion": "command": @@ -444,7 +444,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": - "./vertexai:/vertexai" @@ -473,7 +473,7 @@ "reservations": "cpus": "0.1" "memory": "128M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": - "./vertexai:/vertexai" @@ -490,7 +490,7 @@ "reservations": "cpus": "0.5" "memory": "512M" - "image": "docker.io/trustgraph/trustgraph-flow:0.7.12" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" "restart": "on-failure:100" "volumes": "etcd": {} diff --git a/tg-storage-cassandra.yaml b/tg-storage-cassandra.yaml new file mode 100644 index 00000000..f2b91d27 --- /dev/null +++ b/tg-storage-cassandra.yaml @@ -0,0 +1,259 @@ +"services": + "cassandra": + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "800M" + "reservations": + "cpus": "0.5" + "memory": "800M" + "environment": + "JVM_OPTS": "-Xms256M -Xmx256M" + "image": "docker.io/cassandra:4.1.6" + "ports": + - "9042:9042" + "restart": "on-failure:100" + "volumes": + - "cassandra:/var/lib/cassandra" + "etcd": + "command": + - "etcd" + - "-advertise-client-urls=http://127.0.0.1:2379" + - "-listen-client-urls" + - "http://0.0.0.0:2379" + - "--data-dir" + - "/etcd" + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "128M" + "reservations": + "cpus": "0.25" + "memory": "128M" + "environment": + "ETCD_AUTO_COMPACTION_MODE": "revision" + "ETCD_AUTO_COMPACTION_RETENTION": "1000" + "ETCD_QUOTA_BACKEND_BYTES": "4294967296" + "ETCD_SNAPSHOT_COUNT": "50000" + "image": "quay.io/coreos/etcd:v3.5.15" + "ports": + - "2379:2379" + "restart": "on-failure:100" + "volumes": + - "etcd:/etcd" + "grafana": + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "256M" + "reservations": + "cpus": "0.5" + "memory": "256M" + "environment": + "GF_ORG_NAME": "trustgraph.ai" + "image": "docker.io/grafana/grafana:11.1.4" + "ports": + - "3000:3000" + "restart": "on-failure:100" + "volumes": + - "grafana-storage:/var/lib/grafana" + - "./grafana/dashboard.yml:/etc/grafana/provisioning/dashboards/dashboard.yml" + - "./grafana/datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml" + - "./grafana/dashboard.json:/var/lib/grafana/dashboards/dashboard.json" + "init-pulsar": + "command": + - "sh" + - "-c" + - "pulsar-admin --admin-url http://pulsar:8080 tenants create tg && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/flow && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/request && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/response && pulsar-admin --admin-url http://pulsar:8080 namespaces set-retention --size -1 --time 3m tg/response" + "depends_on": + "pulsar": + "condition": "service_started" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/apachepulsar/pulsar:3.3.1" + "restart": "on-failure:100" + "milvus": + "command": + - "milvus" + - "run" + - "standalone" + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "256M" + "reservations": + "cpus": "0.5" + "memory": "256M" + "environment": + "ETCD_ENDPOINTS": "etcd:2379" + "MINIO_ADDRESS": "minio:9000" + "image": "docker.io/milvusdb/milvus:v2.4.9" + "ports": + - "9091:9091" + - "19530:19530" + "restart": "on-failure:100" + "volumes": + - "milvus:/var/lib/milvus" + "minio": + "command": + - "minio" + - "server" + - "/minio_data" + - "--console-address" + - ":9001" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.25" + "memory": "128M" + "environment": + "MINIO_ROOT_PASSWORD": "minioadmin" + "MINIO_ROOT_USER": "minioadmin" + "image": "docker.io/minio/minio:RELEASE.2024-08-17T01-24-54Z" + "ports": + - "9001:9001" + "restart": "on-failure:100" + "volumes": + - "minio-data:/minio_data" + "prometheus": + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/prom/prometheus:v2.53.2" + "ports": + - "9090:9090" + "restart": "on-failure:100" + "volumes": + - "./prometheus:/etc/prometheus" + - "prometheus-data:/prometheus" + "pulsar": + "command": "bin/pulsar standalone" + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "900M" + "reservations": + "cpus": "0.5" + "memory": "900M" + "environment": + "PULSAR_MEM": "-Xms700M -Xmx700M" + "image": "docker.io/apachepulsar/pulsar:3.3.1" + "ports": + - "6650:6650" + - "8080:8080" + "restart": "on-failure:100" + "volumes": + - "pulsar-conf:/pulsar/conf" + - "pulsar-data:/pulsar/data" + "pulsar-manager": + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "1.4G" + "reservations": + "cpus": "0.1" + "memory": "1.4G" + "environment": + "SPRING_CONFIGURATION_FILE": "/pulsar-manager/pulsar-manager/application.properties" + "image": "docker.io/apachepulsar/pulsar-manager:v0.4.0" + "ports": + - "9527:9527" + - "7750:7750" + "restart": "on-failure:100" + "query-graph-embeddings": + "command": + - "ge-query-milvus" + - "-p" + - "pulsar://pulsar:6650" + - "-t" + - "http://milvus:19530" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" + "query-triples": + "command": + - "triples-query-cassandra" + - "-p" + - "pulsar://pulsar:6650" + - "-g" + - "cassandra" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "512M" + "reservations": + "cpus": "0.1" + "memory": "512M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" + "store-graph-embeddings": + "command": + - "ge-write-milvus" + - "-p" + - "pulsar://pulsar:6650" + - "-t" + - "http://milvus:19530" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" + "store-triples": + "command": + - "triples-write-cassandra" + - "-p" + - "pulsar://pulsar:6650" + - "-g" + - "cassandra" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" +"volumes": + "cassandra": {} + "etcd": {} + "grafana-storage": {} + "milvus": {} + "minio-data": {} + "prometheus-data": {} + "pulsar-conf": {} + "pulsar-data": {} diff --git a/tg-storage-neo4j.yaml b/tg-storage-neo4j.yaml new file mode 100644 index 00000000..4916c46f --- /dev/null +++ b/tg-storage-neo4j.yaml @@ -0,0 +1,260 @@ +"services": + "etcd": + "command": + - "etcd" + - "-advertise-client-urls=http://127.0.0.1:2379" + - "-listen-client-urls" + - "http://0.0.0.0:2379" + - "--data-dir" + - "/etcd" + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "128M" + "reservations": + "cpus": "0.25" + "memory": "128M" + "environment": + "ETCD_AUTO_COMPACTION_MODE": "revision" + "ETCD_AUTO_COMPACTION_RETENTION": "1000" + "ETCD_QUOTA_BACKEND_BYTES": "4294967296" + "ETCD_SNAPSHOT_COUNT": "50000" + "image": "quay.io/coreos/etcd:v3.5.15" + "ports": + - "2379:2379" + "restart": "on-failure:100" + "volumes": + - "etcd:/etcd" + "grafana": + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "256M" + "reservations": + "cpus": "0.5" + "memory": "256M" + "environment": + "GF_ORG_NAME": "trustgraph.ai" + "image": "docker.io/grafana/grafana:11.1.4" + "ports": + - "3000:3000" + "restart": "on-failure:100" + "volumes": + - "grafana-storage:/var/lib/grafana" + - "./grafana/dashboard.yml:/etc/grafana/provisioning/dashboards/dashboard.yml" + - "./grafana/datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml" + - "./grafana/dashboard.json:/var/lib/grafana/dashboards/dashboard.json" + "init-pulsar": + "command": + - "sh" + - "-c" + - "pulsar-admin --admin-url http://pulsar:8080 tenants create tg && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/flow && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/request && pulsar-admin --admin-url http://pulsar:8080 namespaces create tg/response && pulsar-admin --admin-url http://pulsar:8080 namespaces set-retention --size -1 --time 3m tg/response" + "depends_on": + "pulsar": + "condition": "service_started" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/apachepulsar/pulsar:3.3.1" + "restart": "on-failure:100" + "milvus": + "command": + - "milvus" + - "run" + - "standalone" + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "256M" + "reservations": + "cpus": "0.5" + "memory": "256M" + "environment": + "ETCD_ENDPOINTS": "etcd:2379" + "MINIO_ADDRESS": "minio:9000" + "image": "docker.io/milvusdb/milvus:v2.4.9" + "ports": + - "9091:9091" + - "19530:19530" + "restart": "on-failure:100" + "volumes": + - "milvus:/var/lib/milvus" + "minio": + "command": + - "minio" + - "server" + - "/minio_data" + - "--console-address" + - ":9001" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.25" + "memory": "128M" + "environment": + "MINIO_ROOT_PASSWORD": "minioadmin" + "MINIO_ROOT_USER": "minioadmin" + "image": "docker.io/minio/minio:RELEASE.2024-08-17T01-24-54Z" + "ports": + - "9001:9001" + "restart": "on-failure:100" + "volumes": + - "minio-data:/minio_data" + "neo4j": + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "768M" + "reservations": + "cpus": "0.5" + "memory": "768M" + "environment": + "NEO4J_AUTH": "neo4j/password" + "image": "docker.io/neo4j:5.22.0-community-bullseye" + "ports": + - "7474:7474" + - "7687:7687" + "restart": "on-failure:100" + "volumes": + - "neo4j:/data" + "prometheus": + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/prom/prometheus:v2.53.2" + "ports": + - "9090:9090" + "restart": "on-failure:100" + "volumes": + - "./prometheus:/etc/prometheus" + - "prometheus-data:/prometheus" + "pulsar": + "command": "bin/pulsar standalone" + "deploy": + "resources": + "limits": + "cpus": "1.0" + "memory": "900M" + "reservations": + "cpus": "0.5" + "memory": "900M" + "environment": + "PULSAR_MEM": "-Xms700M -Xmx700M" + "image": "docker.io/apachepulsar/pulsar:3.3.1" + "ports": + - "6650:6650" + - "8080:8080" + "restart": "on-failure:100" + "volumes": + - "pulsar-conf:/pulsar/conf" + - "pulsar-data:/pulsar/data" + "pulsar-manager": + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "1.4G" + "reservations": + "cpus": "0.1" + "memory": "1.4G" + "environment": + "SPRING_CONFIGURATION_FILE": "/pulsar-manager/pulsar-manager/application.properties" + "image": "docker.io/apachepulsar/pulsar-manager:v0.4.0" + "ports": + - "9527:9527" + - "7750:7750" + "restart": "on-failure:100" + "query-graph-embeddings": + "command": + - "ge-query-milvus" + - "-p" + - "pulsar://pulsar:6650" + - "-t" + - "http://milvus:19530" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" + "query-triples": + "command": + - "triples-query-neo4j" + - "-p" + - "pulsar://pulsar:6650" + - "-g" + - "bolt://neo4j:7687" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" + "store-graph-embeddings": + "command": + - "ge-write-milvus" + - "-p" + - "pulsar://pulsar:6650" + - "-t" + - "http://milvus:19530" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" + "store-triples": + "command": + - "triples-write-neo4j" + - "-p" + - "pulsar://pulsar:6650" + - "-g" + - "bolt://neo4j:7687" + "deploy": + "resources": + "limits": + "cpus": "0.5" + "memory": "128M" + "reservations": + "cpus": "0.1" + "memory": "128M" + "image": "docker.io/trustgraph/trustgraph-flow:0.7.13" + "restart": "on-failure:100" +"volumes": + "etcd": {} + "grafana-storage": {} + "milvus": {} + "minio-data": {} + "neo4j": {} + "prometheus-data": {} + "pulsar-conf": {} + "pulsar-data": {} diff --git a/trustgraph/clients/base.py b/trustgraph/clients/base.py index e574a47d..726b57df 100644 --- a/trustgraph/clients/base.py +++ b/trustgraph/clients/base.py @@ -74,7 +74,7 @@ class BaseClient: while time.time() < end_time: try: - msg = self.consumer.receive(timeout_millis=5000) + msg = self.consumer.receive(timeout_millis=2500) except pulsar.exceptions.Timeout: continue diff --git a/trustgraph/clients/embeddings_client.py b/trustgraph/clients/embeddings_client.py index c5b5a3bb..8d21bdec 100644 --- a/trustgraph/clients/embeddings_client.py +++ b/trustgraph/clients/embeddings_client.py @@ -38,7 +38,7 @@ class EmbeddingsClient(BaseClient): output_schema=EmbeddingsResponse, ) - def request(self, text, timeout=30): + def request(self, text, timeout=300): return self.call(text=text, timeout=timeout).vectors diff --git a/trustgraph/clients/graph_embeddings_client.py b/trustgraph/clients/graph_embeddings_client.py index e775946c..bb1358fc 100644 --- a/trustgraph/clients/graph_embeddings_client.py +++ b/trustgraph/clients/graph_embeddings_client.py @@ -38,7 +38,7 @@ class GraphEmbeddingsClient(BaseClient): output_schema=GraphEmbeddingsResponse, ) - def request(self, vectors, limit=10, timeout=30): + def request(self, vectors, limit=10, timeout=300): return self.call( vectors=vectors, limit=limit, timeout=timeout ).entities diff --git a/trustgraph/clients/llm_client.py b/trustgraph/clients/llm_client.py index 7ed38bdc..3b52cb16 100644 --- a/trustgraph/clients/llm_client.py +++ b/trustgraph/clients/llm_client.py @@ -35,6 +35,6 @@ class LlmClient(BaseClient): output_schema=TextCompletionResponse, ) - def request(self, prompt, timeout=30): + def request(self, prompt, timeout=300): return self.call(prompt=prompt, timeout=timeout).response diff --git a/trustgraph/clients/prompt_client.py b/trustgraph/clients/prompt_client.py index 45931ddd..c8fea1a4 100644 --- a/trustgraph/clients/prompt_client.py +++ b/trustgraph/clients/prompt_client.py @@ -38,17 +38,21 @@ class PromptClient(BaseClient): output_schema=PromptResponse, ) - def request_definitions(self, chunk, timeout=30): + def request_definitions(self, chunk, timeout=300): - return self.call(kind="extract-definitions", chunk=chunk, - timeout=timeout).definitions + return self.call( + kind="extract-definitions", chunk=chunk, + timeout=timeout + ).definitions - def request_relationships(self, chunk, timeout=30): + def request_relationships(self, chunk, timeout=300): - return self.call(kind="extract-relationships", chunk=chunk, - timeout=timeout).relationships + return self.call( + kind="extract-relationships", chunk=chunk, + timeout=timeout + ).relationships - def request_kg_prompt(self, query, kg, timeout=30): + def request_kg_prompt(self, query, kg, timeout=300): return self.call( kind="kg-prompt", diff --git a/trustgraph/clients/triples_query_client.py b/trustgraph/clients/triples_query_client.py index db2bef34..14b75151 100644 --- a/trustgraph/clients/triples_query_client.py +++ b/trustgraph/clients/triples_query_client.py @@ -48,7 +48,7 @@ class TriplesQueryClient(BaseClient): return Value(value=ent, is_uri=False) - def request(self, s, p, o, limit=10, timeout=30): + def request(self, s, p, o, limit=10, timeout=60): return self.call( s=self.create_value(s), p=self.create_value(p),