mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-04 04:42:36 +02:00
Fix, was putting Neo in Cassandra config (#26)
This commit is contained in:
parent
25c390469f
commit
2bc602fdcf
16 changed files with 380 additions and 389 deletions
2
Makefile
2
Makefile
|
|
@ -46,7 +46,7 @@ tg-launch-%.yaml: templates/%.jsonnet templates/components/version.jsonnet
|
||||||
update-templates: set-version
|
update-templates: set-version
|
||||||
for model in ${MODELS}; do \
|
for model in ${MODELS}; do \
|
||||||
for graph in ${GRAPHS}; do \
|
for graph in ${GRAPHS}; do \
|
||||||
cm=$${graph},cassandra,pulsar,milvus,grafana,trustgraph,$${model}; \
|
cm=$${graph},pulsar,milvus,grafana,trustgraph,$${model}; \
|
||||||
input=templates/main.jsonnet; \
|
input=templates/main.jsonnet; \
|
||||||
output=tg-launch-$${model}-$${graph}.yaml; \
|
output=tg-launch-$${model}-$${graph}.yaml; \
|
||||||
echo $${model} + $${graph} '->' $${output}; \
|
echo $${model} + $${graph} '->' $${output}; \
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
local components = {
|
local components = {
|
||||||
neo4j: import "components/neo4j.jsonnet",
|
neo4j: import "components/neo4j.jsonnet",
|
||||||
cassandra: import "components/neo4j.jsonnet",
|
cassandra: import "components/cassandra.jsonnet",
|
||||||
pulsar: import "components/pulsar.jsonnet",
|
pulsar: import "components/pulsar.jsonnet",
|
||||||
milvus: import "components/milvus.jsonnet",
|
milvus: import "components/milvus.jsonnet",
|
||||||
grafana: import "components/grafana.jsonnet",
|
grafana: import "components/grafana.jsonnet",
|
||||||
|
|
@ -23,5 +23,3 @@ local config = std.foldl(add, options, {});
|
||||||
|
|
||||||
std.manifestYamlDoc(config)
|
std.manifestYamlDoc(config)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,21 @@
|
||||||
"services":
|
"services":
|
||||||
|
"cassandra":
|
||||||
|
"deploy":
|
||||||
|
"resources":
|
||||||
|
"limits":
|
||||||
|
"cpus": "1.0"
|
||||||
|
"memory": "512M"
|
||||||
|
"reservations":
|
||||||
|
"cpus": "0.5"
|
||||||
|
"memory": "512M"
|
||||||
|
"environment":
|
||||||
|
"JVM_OPTS": "-Xms256M -Xmx256M"
|
||||||
|
"image": "docker.io/cassandra:4.1.6"
|
||||||
|
"ports":
|
||||||
|
- "9042:9042"
|
||||||
|
"restart": "on-failure:100"
|
||||||
|
"volumes":
|
||||||
|
- "cassandra:/var/lib/cassandra"
|
||||||
"chunker":
|
"chunker":
|
||||||
"command":
|
"command":
|
||||||
- "${CHUNKER:-chunker-token}"
|
- "${CHUNKER:-chunker-token}"
|
||||||
|
|
@ -16,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -202,24 +219,6 @@
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "minio-data:/minio_data"
|
- "minio-data:/minio_data"
|
||||||
"neo4j":
|
|
||||||
"deploy":
|
|
||||||
"resources":
|
|
||||||
"limits":
|
|
||||||
"cpus": "1.0"
|
|
||||||
"memory": "256M"
|
|
||||||
"reservations":
|
|
||||||
"cpus": "0.5"
|
|
||||||
"memory": "256M"
|
|
||||||
"environment":
|
|
||||||
"NEO4J_AUTH": "neo4j/password"
|
|
||||||
"image": "docker.io/neo4j:5.22.0-community-bullseye"
|
|
||||||
"ports":
|
|
||||||
- "7474:7474"
|
|
||||||
- "7687:7687"
|
|
||||||
"restart": "on-failure:100"
|
|
||||||
"volumes":
|
|
||||||
- "neo4j:/data"
|
|
||||||
"pdf-decoder":
|
"pdf-decoder":
|
||||||
"command":
|
"command":
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
|
|
@ -233,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,24 +343,24 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-query-neo4j"
|
- "triples-query-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,15 +377,15 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-write-neo4j"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
|
|
@ -395,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -418,7 +417,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -445,7 +444,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -460,14 +459,14 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
|
"cassandra": {}
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
"grafana-storage": {}
|
"grafana-storage": {}
|
||||||
"milvus": {}
|
"milvus": {}
|
||||||
"minio-data": {}
|
"minio-data": {}
|
||||||
"neo4j": {}
|
|
||||||
"prometheus-data": {}
|
"prometheus-data": {}
|
||||||
"pulsar-conf": {}
|
"pulsar-conf": {}
|
||||||
"pulsar-data": {}
|
"pulsar-data": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -418,7 +418,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -445,7 +445,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -460,7 +460,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,21 @@
|
||||||
"services":
|
"services":
|
||||||
|
"cassandra":
|
||||||
|
"deploy":
|
||||||
|
"resources":
|
||||||
|
"limits":
|
||||||
|
"cpus": "1.0"
|
||||||
|
"memory": "512M"
|
||||||
|
"reservations":
|
||||||
|
"cpus": "0.5"
|
||||||
|
"memory": "512M"
|
||||||
|
"environment":
|
||||||
|
"JVM_OPTS": "-Xms256M -Xmx256M"
|
||||||
|
"image": "docker.io/cassandra:4.1.6"
|
||||||
|
"ports":
|
||||||
|
- "9042:9042"
|
||||||
|
"restart": "on-failure:100"
|
||||||
|
"volumes":
|
||||||
|
- "cassandra:/var/lib/cassandra"
|
||||||
"chunker":
|
"chunker":
|
||||||
"command":
|
"command":
|
||||||
- "chunker-recursive"
|
- "chunker-recursive"
|
||||||
|
|
@ -16,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -202,24 +219,6 @@
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "minio-data:/minio_data"
|
- "minio-data:/minio_data"
|
||||||
"neo4j":
|
|
||||||
"deploy":
|
|
||||||
"resources":
|
|
||||||
"limits":
|
|
||||||
"cpus": "1.0"
|
|
||||||
"memory": "256M"
|
|
||||||
"reservations":
|
|
||||||
"cpus": "0.5"
|
|
||||||
"memory": "256M"
|
|
||||||
"environment":
|
|
||||||
"NEO4J_AUTH": "neo4j/password"
|
|
||||||
"image": "docker.io/neo4j:5.22.0-community-bullseye"
|
|
||||||
"ports":
|
|
||||||
- "7474:7474"
|
|
||||||
- "7687:7687"
|
|
||||||
"restart": "on-failure:100"
|
|
||||||
"volumes":
|
|
||||||
- "neo4j:/data"
|
|
||||||
"pdf-decoder":
|
"pdf-decoder":
|
||||||
"command":
|
"command":
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
|
|
@ -233,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,24 +343,24 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-query-neo4j"
|
- "triples-query-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,15 +377,15 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-write-neo4j"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
|
|
@ -395,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -422,7 +421,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -453,7 +452,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -468,14 +467,14 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
|
"cassandra": {}
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
"grafana-storage": {}
|
"grafana-storage": {}
|
||||||
"milvus": {}
|
"milvus": {}
|
||||||
"minio-data": {}
|
"minio-data": {}
|
||||||
"neo4j": {}
|
|
||||||
"prometheus-data": {}
|
"prometheus-data": {}
|
||||||
"pulsar-conf": {}
|
"pulsar-conf": {}
|
||||||
"pulsar-data": {}
|
"pulsar-data": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -422,7 +422,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -453,7 +453,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -468,7 +468,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,21 @@
|
||||||
"services":
|
"services":
|
||||||
|
"cassandra":
|
||||||
|
"deploy":
|
||||||
|
"resources":
|
||||||
|
"limits":
|
||||||
|
"cpus": "1.0"
|
||||||
|
"memory": "512M"
|
||||||
|
"reservations":
|
||||||
|
"cpus": "0.5"
|
||||||
|
"memory": "512M"
|
||||||
|
"environment":
|
||||||
|
"JVM_OPTS": "-Xms256M -Xmx256M"
|
||||||
|
"image": "docker.io/cassandra:4.1.6"
|
||||||
|
"ports":
|
||||||
|
- "9042:9042"
|
||||||
|
"restart": "on-failure:100"
|
||||||
|
"volumes":
|
||||||
|
- "cassandra:/var/lib/cassandra"
|
||||||
"chunker":
|
"chunker":
|
||||||
"command":
|
"command":
|
||||||
- "${CHUNKER:-chunker-token}"
|
- "${CHUNKER:-chunker-token}"
|
||||||
|
|
@ -16,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -202,24 +219,6 @@
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "minio-data:/minio_data"
|
- "minio-data:/minio_data"
|
||||||
"neo4j":
|
|
||||||
"deploy":
|
|
||||||
"resources":
|
|
||||||
"limits":
|
|
||||||
"cpus": "1.0"
|
|
||||||
"memory": "256M"
|
|
||||||
"reservations":
|
|
||||||
"cpus": "0.5"
|
|
||||||
"memory": "256M"
|
|
||||||
"environment":
|
|
||||||
"NEO4J_AUTH": "neo4j/password"
|
|
||||||
"image": "docker.io/neo4j:5.22.0-community-bullseye"
|
|
||||||
"ports":
|
|
||||||
- "7474:7474"
|
|
||||||
- "7687:7687"
|
|
||||||
"restart": "on-failure:100"
|
|
||||||
"volumes":
|
|
||||||
- "neo4j:/data"
|
|
||||||
"pdf-decoder":
|
"pdf-decoder":
|
||||||
"command":
|
"command":
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
|
|
@ -233,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,24 +343,24 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-query-neo4j"
|
- "triples-query-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,15 +377,15 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-write-neo4j"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
|
|
@ -395,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -416,7 +415,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -441,7 +440,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -456,14 +455,14 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
|
"cassandra": {}
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
"grafana-storage": {}
|
"grafana-storage": {}
|
||||||
"milvus": {}
|
"milvus": {}
|
||||||
"minio-data": {}
|
"minio-data": {}
|
||||||
"neo4j": {}
|
|
||||||
"prometheus-data": {}
|
"prometheus-data": {}
|
||||||
"pulsar-conf": {}
|
"pulsar-conf": {}
|
||||||
"pulsar-data": {}
|
"pulsar-data": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -416,7 +416,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -441,7 +441,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -456,7 +456,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,21 @@
|
||||||
"services":
|
"services":
|
||||||
|
"cassandra":
|
||||||
|
"deploy":
|
||||||
|
"resources":
|
||||||
|
"limits":
|
||||||
|
"cpus": "1.0"
|
||||||
|
"memory": "512M"
|
||||||
|
"reservations":
|
||||||
|
"cpus": "0.5"
|
||||||
|
"memory": "512M"
|
||||||
|
"environment":
|
||||||
|
"JVM_OPTS": "-Xms256M -Xmx256M"
|
||||||
|
"image": "docker.io/cassandra:4.1.6"
|
||||||
|
"ports":
|
||||||
|
- "9042:9042"
|
||||||
|
"restart": "on-failure:100"
|
||||||
|
"volumes":
|
||||||
|
- "cassandra:/var/lib/cassandra"
|
||||||
"chunker":
|
"chunker":
|
||||||
"command":
|
"command":
|
||||||
- "${CHUNKER:-chunker-token}"
|
- "${CHUNKER:-chunker-token}"
|
||||||
|
|
@ -16,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -202,24 +219,6 @@
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "minio-data:/minio_data"
|
- "minio-data:/minio_data"
|
||||||
"neo4j":
|
|
||||||
"deploy":
|
|
||||||
"resources":
|
|
||||||
"limits":
|
|
||||||
"cpus": "1.0"
|
|
||||||
"memory": "256M"
|
|
||||||
"reservations":
|
|
||||||
"cpus": "0.5"
|
|
||||||
"memory": "256M"
|
|
||||||
"environment":
|
|
||||||
"NEO4J_AUTH": "neo4j/password"
|
|
||||||
"image": "docker.io/neo4j:5.22.0-community-bullseye"
|
|
||||||
"ports":
|
|
||||||
- "7474:7474"
|
|
||||||
- "7687:7687"
|
|
||||||
"restart": "on-failure:100"
|
|
||||||
"volumes":
|
|
||||||
- "neo4j:/data"
|
|
||||||
"pdf-decoder":
|
"pdf-decoder":
|
||||||
"command":
|
"command":
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
|
|
@ -233,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,24 +343,24 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-query-neo4j"
|
- "triples-query-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,15 +377,15 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-write-neo4j"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
|
|
@ -395,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -414,7 +413,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -437,7 +436,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -452,14 +451,14 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
|
"cassandra": {}
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
"grafana-storage": {}
|
"grafana-storage": {}
|
||||||
"milvus": {}
|
"milvus": {}
|
||||||
"minio-data": {}
|
"minio-data": {}
|
||||||
"neo4j": {}
|
|
||||||
"prometheus-data": {}
|
"prometheus-data": {}
|
||||||
"pulsar-conf": {}
|
"pulsar-conf": {}
|
||||||
"pulsar-data": {}
|
"pulsar-data": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -414,7 +414,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -437,7 +437,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -452,7 +452,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,21 @@
|
||||||
"services":
|
"services":
|
||||||
|
"cassandra":
|
||||||
|
"deploy":
|
||||||
|
"resources":
|
||||||
|
"limits":
|
||||||
|
"cpus": "1.0"
|
||||||
|
"memory": "512M"
|
||||||
|
"reservations":
|
||||||
|
"cpus": "0.5"
|
||||||
|
"memory": "512M"
|
||||||
|
"environment":
|
||||||
|
"JVM_OPTS": "-Xms256M -Xmx256M"
|
||||||
|
"image": "docker.io/cassandra:4.1.6"
|
||||||
|
"ports":
|
||||||
|
- "9042:9042"
|
||||||
|
"restart": "on-failure:100"
|
||||||
|
"volumes":
|
||||||
|
- "cassandra:/var/lib/cassandra"
|
||||||
"chunker":
|
"chunker":
|
||||||
"command":
|
"command":
|
||||||
- "${CHUNKER:-chunker-token}"
|
- "${CHUNKER:-chunker-token}"
|
||||||
|
|
@ -16,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -202,24 +219,6 @@
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "minio-data:/minio_data"
|
- "minio-data:/minio_data"
|
||||||
"neo4j":
|
|
||||||
"deploy":
|
|
||||||
"resources":
|
|
||||||
"limits":
|
|
||||||
"cpus": "1.0"
|
|
||||||
"memory": "256M"
|
|
||||||
"reservations":
|
|
||||||
"cpus": "0.5"
|
|
||||||
"memory": "256M"
|
|
||||||
"environment":
|
|
||||||
"NEO4J_AUTH": "neo4j/password"
|
|
||||||
"image": "docker.io/neo4j:5.22.0-community-bullseye"
|
|
||||||
"ports":
|
|
||||||
- "7474:7474"
|
|
||||||
- "7687:7687"
|
|
||||||
"restart": "on-failure:100"
|
|
||||||
"volumes":
|
|
||||||
- "neo4j:/data"
|
|
||||||
"pdf-decoder":
|
"pdf-decoder":
|
||||||
"command":
|
"command":
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
|
|
@ -233,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,24 +343,24 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-query-neo4j"
|
- "triples-query-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,15 +377,15 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-write-neo4j"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
|
|
@ -395,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -414,7 +413,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -437,7 +436,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -452,14 +451,14 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
|
"cassandra": {}
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
"grafana-storage": {}
|
"grafana-storage": {}
|
||||||
"milvus": {}
|
"milvus": {}
|
||||||
"minio-data": {}
|
"minio-data": {}
|
||||||
"neo4j": {}
|
|
||||||
"prometheus-data": {}
|
"prometheus-data": {}
|
||||||
"pulsar-conf": {}
|
"pulsar-conf": {}
|
||||||
"pulsar-data": {}
|
"pulsar-data": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -414,7 +414,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -437,7 +437,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -452,7 +452,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,21 @@
|
||||||
"services":
|
"services":
|
||||||
|
"cassandra":
|
||||||
|
"deploy":
|
||||||
|
"resources":
|
||||||
|
"limits":
|
||||||
|
"cpus": "1.0"
|
||||||
|
"memory": "512M"
|
||||||
|
"reservations":
|
||||||
|
"cpus": "0.5"
|
||||||
|
"memory": "512M"
|
||||||
|
"environment":
|
||||||
|
"JVM_OPTS": "-Xms256M -Xmx256M"
|
||||||
|
"image": "docker.io/cassandra:4.1.6"
|
||||||
|
"ports":
|
||||||
|
- "9042:9042"
|
||||||
|
"restart": "on-failure:100"
|
||||||
|
"volumes":
|
||||||
|
- "cassandra:/var/lib/cassandra"
|
||||||
"chunker":
|
"chunker":
|
||||||
"command":
|
"command":
|
||||||
- "${CHUNKER:-chunker-token}"
|
- "${CHUNKER:-chunker-token}"
|
||||||
|
|
@ -16,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -202,24 +219,6 @@
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "minio-data:/minio_data"
|
- "minio-data:/minio_data"
|
||||||
"neo4j":
|
|
||||||
"deploy":
|
|
||||||
"resources":
|
|
||||||
"limits":
|
|
||||||
"cpus": "1.0"
|
|
||||||
"memory": "256M"
|
|
||||||
"reservations":
|
|
||||||
"cpus": "0.5"
|
|
||||||
"memory": "256M"
|
|
||||||
"environment":
|
|
||||||
"NEO4J_AUTH": "neo4j/password"
|
|
||||||
"image": "docker.io/neo4j:5.22.0-community-bullseye"
|
|
||||||
"ports":
|
|
||||||
- "7474:7474"
|
|
||||||
- "7687:7687"
|
|
||||||
"restart": "on-failure:100"
|
|
||||||
"volumes":
|
|
||||||
- "neo4j:/data"
|
|
||||||
"pdf-decoder":
|
"pdf-decoder":
|
||||||
"command":
|
"command":
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
|
|
@ -233,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,24 +343,24 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-query-neo4j"
|
- "triples-query-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,15 +377,15 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-write-neo4j"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
|
|
@ -395,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -416,7 +415,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -441,7 +440,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -456,14 +455,14 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
|
"cassandra": {}
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
"grafana-storage": {}
|
"grafana-storage": {}
|
||||||
"milvus": {}
|
"milvus": {}
|
||||||
"minio-data": {}
|
"minio-data": {}
|
||||||
"neo4j": {}
|
|
||||||
"prometheus-data": {}
|
"prometheus-data": {}
|
||||||
"pulsar-conf": {}
|
"pulsar-conf": {}
|
||||||
"pulsar-data": {}
|
"pulsar-data": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -416,7 +416,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -441,7 +441,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -456,7 +456,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,21 @@
|
||||||
"services":
|
"services":
|
||||||
|
"cassandra":
|
||||||
|
"deploy":
|
||||||
|
"resources":
|
||||||
|
"limits":
|
||||||
|
"cpus": "1.0"
|
||||||
|
"memory": "512M"
|
||||||
|
"reservations":
|
||||||
|
"cpus": "0.5"
|
||||||
|
"memory": "512M"
|
||||||
|
"environment":
|
||||||
|
"JVM_OPTS": "-Xms256M -Xmx256M"
|
||||||
|
"image": "docker.io/cassandra:4.1.6"
|
||||||
|
"ports":
|
||||||
|
- "9042:9042"
|
||||||
|
"restart": "on-failure:100"
|
||||||
|
"volumes":
|
||||||
|
- "cassandra:/var/lib/cassandra"
|
||||||
"chunker":
|
"chunker":
|
||||||
"command":
|
"command":
|
||||||
- "${CHUNKER:-chunker-token}"
|
- "${CHUNKER:-chunker-token}"
|
||||||
|
|
@ -16,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -202,24 +219,6 @@
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "minio-data:/minio_data"
|
- "minio-data:/minio_data"
|
||||||
"neo4j":
|
|
||||||
"deploy":
|
|
||||||
"resources":
|
|
||||||
"limits":
|
|
||||||
"cpus": "1.0"
|
|
||||||
"memory": "256M"
|
|
||||||
"reservations":
|
|
||||||
"cpus": "0.5"
|
|
||||||
"memory": "256M"
|
|
||||||
"environment":
|
|
||||||
"NEO4J_AUTH": "neo4j/password"
|
|
||||||
"image": "docker.io/neo4j:5.22.0-community-bullseye"
|
|
||||||
"ports":
|
|
||||||
- "7474:7474"
|
|
||||||
- "7687:7687"
|
|
||||||
"restart": "on-failure:100"
|
|
||||||
"volumes":
|
|
||||||
- "neo4j:/data"
|
|
||||||
"pdf-decoder":
|
"pdf-decoder":
|
||||||
"command":
|
"command":
|
||||||
- "pdf-decoder"
|
- "pdf-decoder"
|
||||||
|
|
@ -233,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,24 +343,24 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-query-neo4j"
|
- "triples-query-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,15 +377,15 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
- "triples-write-neo4j"
|
- "triples-write-cassandra"
|
||||||
- "-p"
|
- "-p"
|
||||||
- "pulsar://pulsar:6650"
|
- "pulsar://pulsar:6650"
|
||||||
- "-g"
|
- "-g"
|
||||||
- "bolt://neo4j:7687"
|
- "cassandra"
|
||||||
"deploy":
|
"deploy":
|
||||||
"resources":
|
"resources":
|
||||||
"limits":
|
"limits":
|
||||||
|
|
@ -395,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -418,7 +417,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -447,7 +446,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -464,14 +463,14 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
|
"cassandra": {}
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
"grafana-storage": {}
|
"grafana-storage": {}
|
||||||
"milvus": {}
|
"milvus": {}
|
||||||
"minio-data": {}
|
"minio-data": {}
|
||||||
"neo4j": {}
|
|
||||||
"prometheus-data": {}
|
"prometheus-data": {}
|
||||||
"pulsar-conf": {}
|
"pulsar-conf": {}
|
||||||
"pulsar-data": {}
|
"pulsar-data": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -418,7 +418,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -447,7 +447,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -464,7 +464,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.2"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.3"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue