Originally from the User Slack
@scyllero: Hi everyone,
Lets say that for whatever reason you’re not allowed to use cdc.
What would you use to sync from cassandra/scylladb to elasticsearch?
I’m not asking for a tutorial, just some keywords to look up to
I was thinking some kind of ES:
write to amqp or kafka, then have 2 consumers write to cassandra and elasticsearch concurrently. This could lead to problems.
Are there better approaches?
@Felipe_Cardeneti_Mendes: well the kafka one would be my pick. Unless you want to reinvent the wheel and defer it to a single consumer to coordinate updating both. Maybe listen to yourself pattern, smth like that.
@scyllero: I will look into that pattern. never heard of it