mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-04-25 08:26:21 +02:00
- Silence pika, cassandra etc. logging at INFO (too much chatter) - Add per processor log tags so that logs can be understood in processor group. - Deal with RabbitMQ lag weirdness - Added more processor group examples
20 lines
447 B
YAML
20 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
|