2026-04-15 14:52:01 +01:00
|
|
|
# Embeddings store. All Qdrant-backed vector query/write processors.
|
|
|
|
|
# One process owns the Qdrant driver pool for the whole group.
|
|
|
|
|
|
|
|
|
|
_defaults: &defaults
|
|
|
|
|
pubsub_backend: rabbitmq
|
|
|
|
|
rabbitmq_host: localhost
|
|
|
|
|
log_level: INFO
|
|
|
|
|
|
|
|
|
|
processors:
|
|
|
|
|
|
|
|
|
|
- class: trustgraph.query.doc_embeddings.qdrant.Processor
|
|
|
|
|
params:
|
|
|
|
|
<<: *defaults
|
|
|
|
|
id: doc-embeddings-query
|
|
|
|
|
store_uri: http://localhost:6333
|
|
|
|
|
|
|
|
|
|
- class: trustgraph.storage.doc_embeddings.qdrant.Processor
|
|
|
|
|
params:
|
|
|
|
|
<<: *defaults
|
|
|
|
|
id: doc-embeddings-write
|
|
|
|
|
store_uri: http://localhost:6333
|
|
|
|
|
|
|
|
|
|
- class: trustgraph.query.graph_embeddings.qdrant.Processor
|
|
|
|
|
params:
|
|
|
|
|
<<: *defaults
|
|
|
|
|
id: graph-embeddings-query
|
|
|
|
|
store_uri: http://localhost:6333
|
|
|
|
|
|
|
|
|
|
- class: trustgraph.storage.graph_embeddings.qdrant.Processor
|
|
|
|
|
params:
|
|
|
|
|
<<: *defaults
|
|
|
|
|
id: graph-embeddings-write
|
|
|
|
|
store_uri: http://localhost:6333
|
|
|
|
|
|
2026-07-07 05:54:02 -06:00
|
|
|
# Keyword (BM25) index: ingest-write and query in one processor, since
|
|
|
|
|
# the FTS5 index is a single local file.
|
|
|
|
|
- class: trustgraph.storage.kw_index.fts5.Processor
|
|
|
|
|
params:
|
|
|
|
|
<<: *defaults
|
|
|
|
|
id: kw-index
|
|
|
|
|
index_path: /tmp/tg-kw-index.db
|
|
|
|
|
|
2026-04-15 14:52:01 +01:00
|
|
|
- class: trustgraph.query.row_embeddings.qdrant.Processor
|
|
|
|
|
params:
|
|
|
|
|
<<: *defaults
|
|
|
|
|
id: row-embeddings-query
|
|
|
|
|
store_uri: http://localhost:6333
|
|
|
|
|
|
|
|
|
|
- class: trustgraph.storage.row_embeddings.qdrant.Processor
|
|
|
|
|
params:
|
|
|
|
|
<<: *defaults
|
|
|
|
|
id: row-embeddings-write
|
|
|
|
|
store_uri: http://localhost:6333
|