mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 08:26:21 +02:00
21 lines
447 B
YAML
21 lines
447 B
YAML
|
|
# Rows store. Cassandra-backed structured row query/write.
|
||
|
|
|
||
|
|
_defaults: &defaults
|
||
|
|
pubsub_backend: rabbitmq
|
||
|
|
rabbitmq_host: localhost
|
||
|
|
log_level: INFO
|
||
|
|
|
||
|
|
processors:
|
||
|
|
|
||
|
|
- class: trustgraph.query.rows.cassandra.Processor
|
||
|
|
params:
|
||
|
|
<<: *defaults
|
||
|
|
id: rows-query
|
||
|
|
cassandra_host: localhost
|
||
|
|
|
||
|
|
- class: trustgraph.storage.rows.cassandra.Processor
|
||
|
|
params:
|
||
|
|
<<: *defaults
|
||
|
|
id: rows-write
|
||
|
|
cassandra_host: localhost
|