mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 00:16:23 +02:00
Feature/track processor state (#78)
* Add a Prom metric to consumers & consumer/producers to track the running state. * New script, gets processor state using prometheus * Bump version, add tg-processor-state to package * Update templates
This commit is contained in:
parent
efc364583b
commit
74a14639bd
23 changed files with 384 additions and 336 deletions
2
Makefile
2
Makefile
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
# VERSION=$(shell git describe | sed 's/^v//')
|
# VERSION=$(shell git describe | sed 's/^v//')
|
||||||
VERSION=0.11.2
|
VERSION=0.11.3
|
||||||
|
|
||||||
DOCKER=podman
|
DOCKER=podman
|
||||||
|
|
||||||
|
|
|
||||||
24
scripts/tg-processor-state
Executable file
24
scripts/tg-processor-state
Executable file
|
|
@ -0,0 +1,24 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
|
import requests
|
||||||
|
import tabulate
|
||||||
|
|
||||||
|
url = 'http://localhost:9090/api/v1/query?query=processor_state%7Bprocessor_state%3D%22running%22%7D'
|
||||||
|
|
||||||
|
resp = requests.get(url)
|
||||||
|
|
||||||
|
obj = resp.json()
|
||||||
|
|
||||||
|
tbl = [
|
||||||
|
[
|
||||||
|
m["metric"]["instance"],
|
||||||
|
"running" if int(m["value"][1]) > 0 else "down"
|
||||||
|
]
|
||||||
|
for m in obj["data"]["result"]
|
||||||
|
]
|
||||||
|
|
||||||
|
print(tabulate.tabulate(
|
||||||
|
tbl, tablefmt="pretty", headers=["processor", "state"],
|
||||||
|
stralign="left"
|
||||||
|
))
|
||||||
|
|
||||||
4
setup.py
4
setup.py
|
|
@ -4,7 +4,7 @@ import os
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
version = "0.11.2"
|
version = "0.11.3"
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="trustgraph",
|
name="trustgraph",
|
||||||
|
|
@ -41,6 +41,7 @@ setuptools.setup(
|
||||||
"pulsar-client",
|
"pulsar-client",
|
||||||
"pypdf",
|
"pypdf",
|
||||||
"qdrant-client",
|
"qdrant-client",
|
||||||
|
"tabulate",
|
||||||
"anthropic",
|
"anthropic",
|
||||||
"google-cloud-aiplatform",
|
"google-cloud-aiplatform",
|
||||||
"pyyaml",
|
"pyyaml",
|
||||||
|
|
@ -99,6 +100,7 @@ setuptools.setup(
|
||||||
"scripts/text-completion-ollama",
|
"scripts/text-completion-ollama",
|
||||||
"scripts/text-completion-openai",
|
"scripts/text-completion-openai",
|
||||||
"scripts/text-completion-vertexai",
|
"scripts/text-completion-vertexai",
|
||||||
|
"scripts/tg-processor-state",
|
||||||
"scripts/triples-dump-parquet",
|
"scripts/triples-dump-parquet",
|
||||||
"scripts/triples-query-cassandra",
|
"scripts/triples-query-cassandra",
|
||||||
"scripts/triples-query-neo4j",
|
"scripts/triples-query-neo4j",
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -397,7 +397,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -575,7 +575,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -629,7 +629,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -646,7 +646,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -663,7 +663,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -680,7 +680,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -697,7 +697,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -714,7 +714,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -737,7 +737,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -764,7 +764,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -779,7 +779,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -398,7 +398,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -576,7 +576,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -630,7 +630,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -647,7 +647,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -664,7 +664,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -681,7 +681,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -698,7 +698,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -715,7 +715,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -738,7 +738,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -765,7 +765,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -780,7 +780,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -397,7 +397,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -575,7 +575,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -629,7 +629,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -646,7 +646,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -663,7 +663,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -680,7 +680,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -697,7 +697,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -714,7 +714,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -741,7 +741,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -772,7 +772,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -787,7 +787,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -398,7 +398,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -576,7 +576,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -630,7 +630,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -647,7 +647,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -664,7 +664,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -681,7 +681,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -698,7 +698,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -715,7 +715,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -742,7 +742,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -773,7 +773,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -788,7 +788,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -397,7 +397,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -575,7 +575,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -629,7 +629,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -646,7 +646,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -663,7 +663,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -680,7 +680,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -697,7 +697,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -714,7 +714,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -735,7 +735,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -760,7 +760,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -775,7 +775,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -398,7 +398,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -576,7 +576,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -630,7 +630,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -647,7 +647,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -664,7 +664,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -681,7 +681,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -698,7 +698,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -715,7 +715,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -736,7 +736,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -761,7 +761,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -776,7 +776,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -397,7 +397,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -575,7 +575,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -629,7 +629,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -646,7 +646,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -663,7 +663,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -680,7 +680,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -697,7 +697,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -714,7 +714,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -733,7 +733,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -756,7 +756,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -771,7 +771,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -398,7 +398,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -576,7 +576,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -630,7 +630,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -647,7 +647,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -664,7 +664,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -681,7 +681,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -698,7 +698,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -715,7 +715,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -734,7 +734,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -757,7 +757,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -772,7 +772,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -242,7 +242,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -265,7 +265,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -319,7 +319,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -336,7 +336,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -353,7 +353,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -370,7 +370,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -387,7 +387,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -404,7 +404,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -423,7 +423,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -446,7 +446,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -461,7 +461,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -243,7 +243,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -266,7 +266,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -320,7 +320,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -337,7 +337,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -354,7 +354,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -371,7 +371,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -388,7 +388,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -405,7 +405,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -424,7 +424,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -447,7 +447,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -462,7 +462,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -242,7 +242,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -265,7 +265,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -319,7 +319,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -336,7 +336,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -353,7 +353,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -370,7 +370,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -387,7 +387,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -404,7 +404,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -423,7 +423,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -446,7 +446,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -461,7 +461,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -243,7 +243,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -266,7 +266,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -320,7 +320,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -337,7 +337,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -354,7 +354,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -371,7 +371,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -388,7 +388,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -405,7 +405,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -424,7 +424,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -447,7 +447,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -462,7 +462,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -397,7 +397,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -575,7 +575,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -629,7 +629,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -646,7 +646,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -663,7 +663,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -680,7 +680,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -697,7 +697,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -714,7 +714,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -737,7 +737,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -764,7 +764,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -779,7 +779,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -398,7 +398,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -576,7 +576,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -630,7 +630,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -647,7 +647,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -664,7 +664,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -681,7 +681,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -698,7 +698,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -715,7 +715,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -738,7 +738,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion-rag:
|
text-completion-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -765,7 +765,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
vectorize:
|
vectorize:
|
||||||
command:
|
command:
|
||||||
|
|
@ -780,7 +780,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -50,7 +50,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -95,7 +95,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -130,7 +130,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -145,7 +145,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -160,7 +160,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pdf-decoder:
|
pdf-decoder:
|
||||||
command:
|
command:
|
||||||
|
|
@ -207,7 +207,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -397,7 +397,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -575,7 +575,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -629,7 +629,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -646,7 +646,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -663,7 +663,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -680,7 +680,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -697,7 +697,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -714,7 +714,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -739,7 +739,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 256M
|
memory: 256M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
- ./vertexai:/vertexai
|
- ./vertexai:/vertexai
|
||||||
|
|
@ -770,7 +770,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 256M
|
memory: 256M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
- ./vertexai:/vertexai
|
- ./vertexai:/vertexai
|
||||||
|
|
@ -787,7 +787,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
embeddings:
|
embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -33,7 +33,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 400M
|
memory: 400M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
grafana:
|
grafana:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -78,7 +78,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
init-pulsar:
|
init-pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -113,7 +113,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-relationships:
|
kg-extract-relationships:
|
||||||
command:
|
command:
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
kg-extract-topics:
|
kg-extract-topics:
|
||||||
command:
|
command:
|
||||||
|
|
@ -143,7 +143,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering:
|
metering:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
metering-rag:
|
metering-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
neo4j:
|
neo4j:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -208,7 +208,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prometheus:
|
prometheus:
|
||||||
deploy:
|
deploy:
|
||||||
|
|
@ -398,7 +398,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
prompt-rag:
|
prompt-rag:
|
||||||
command:
|
command:
|
||||||
|
|
@ -576,7 +576,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
pulsar:
|
pulsar:
|
||||||
command:
|
command:
|
||||||
|
|
@ -630,7 +630,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -647,7 +647,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -664,7 +664,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -681,7 +681,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -698,7 +698,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -715,7 +715,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
text-completion:
|
text-completion:
|
||||||
command:
|
command:
|
||||||
|
|
@ -740,7 +740,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 256M
|
memory: 256M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
- ./vertexai:/vertexai
|
- ./vertexai:/vertexai
|
||||||
|
|
@ -771,7 +771,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 256M
|
memory: 256M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
- ./vertexai:/vertexai
|
- ./vertexai:/vertexai
|
||||||
|
|
@ -788,7 +788,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.5'
|
cpus: '0.5'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -124,7 +124,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -141,7 +141,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -158,7 +158,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 512M
|
memory: 512M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -175,7 +175,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -192,7 +192,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -209,7 +209,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
cassandra: {}
|
cassandra: {}
|
||||||
|
|
|
||||||
|
|
@ -125,7 +125,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-graph-embeddings:
|
query-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -142,7 +142,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
query-triples:
|
query-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -159,7 +159,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-doc-embeddings:
|
store-doc-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -176,7 +176,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-graph-embeddings:
|
store-graph-embeddings:
|
||||||
command:
|
command:
|
||||||
|
|
@ -193,7 +193,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
store-triples:
|
store-triples:
|
||||||
command:
|
command:
|
||||||
|
|
@ -210,7 +210,7 @@ services:
|
||||||
reservations:
|
reservations:
|
||||||
cpus: '0.1'
|
cpus: '0.1'
|
||||||
memory: 128M
|
memory: 128M
|
||||||
image: docker.io/trustgraph/trustgraph-flow:0.11.2
|
image: docker.io/trustgraph/trustgraph-flow:0.11.3
|
||||||
restart: on-failure:100
|
restart: on-failure:100
|
||||||
volumes:
|
volumes:
|
||||||
grafana-storage: {}
|
grafana-storage: {}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
from pulsar.schema import JsonSchema
|
from pulsar.schema import JsonSchema
|
||||||
from prometheus_client import start_http_server, Histogram, Info, Counter
|
from prometheus_client import Histogram, Info, Counter, Enum
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from . base_processor import BaseProcessor
|
from . base_processor import BaseProcessor
|
||||||
|
|
@ -10,6 +10,15 @@ class Consumer(BaseProcessor):
|
||||||
|
|
||||||
def __init__(self, **params):
|
def __init__(self, **params):
|
||||||
|
|
||||||
|
if not hasattr(__class__, "state_metric"):
|
||||||
|
__class__.state_metric = Enum(
|
||||||
|
'processor_state', 'Processor state',
|
||||||
|
states=['starting', 'running', 'stopped']
|
||||||
|
)
|
||||||
|
__class__.state_metric.state('starting')
|
||||||
|
|
||||||
|
__class__.state_metric.state('starting')
|
||||||
|
|
||||||
super(Consumer, self).__init__(**params)
|
super(Consumer, self).__init__(**params)
|
||||||
|
|
||||||
input_queue = params.get("input_queue")
|
input_queue = params.get("input_queue")
|
||||||
|
|
@ -47,6 +56,8 @@ class Consumer(BaseProcessor):
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
|
||||||
|
__class__.state_metric.state('running')
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
|
||||||
msg = self.consumer.receive()
|
msg = self.consumer.receive()
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
from pulsar.schema import JsonSchema
|
from pulsar.schema import JsonSchema
|
||||||
from prometheus_client import Histogram, Info, Counter
|
from prometheus_client import Histogram, Info, Counter, Enum
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from . base_processor import BaseProcessor
|
from . base_processor import BaseProcessor
|
||||||
|
|
@ -12,6 +12,15 @@ class ConsumerProducer(BaseProcessor):
|
||||||
|
|
||||||
def __init__(self, **params):
|
def __init__(self, **params):
|
||||||
|
|
||||||
|
if not hasattr(__class__, "state_metric"):
|
||||||
|
__class__.state_metric = Enum(
|
||||||
|
'processor_state', 'Processor state',
|
||||||
|
states=['starting', 'running', 'stopped']
|
||||||
|
)
|
||||||
|
__class__.state_metric.state('starting')
|
||||||
|
|
||||||
|
__class__.state_metric.state('starting')
|
||||||
|
|
||||||
input_queue = params.get("input_queue")
|
input_queue = params.get("input_queue")
|
||||||
output_queue = params.get("output_queue")
|
output_queue = params.get("output_queue")
|
||||||
subscriber = params.get("subscriber")
|
subscriber = params.get("subscriber")
|
||||||
|
|
@ -66,6 +75,8 @@ class ConsumerProducer(BaseProcessor):
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
|
||||||
|
__class__.state_metric.state('running')
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
|
|
||||||
msg = self.consumer.receive()
|
msg = self.consumer.receive()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue