Y
Hacker News
new
|
ask
|
show
|
jobs
by
jevyjevjevs
227 days ago
Actually you can avoid having a separate DB! You can build a materialized view of the data using [KTables](
https://developer.confluent.io/courses/kafka-streams/ktable/
) or use [interactive queries](
https://developer.confluent.io/courses/kafka-streams/interac...
). The "table" is built up from a backing kafka topic so you don't need maintain another datastore if the data view you want is entirely derived from one or more Kafka topics.
1 comments
enether
220 days ago
My understanding is this is pretty niche and can be complex.
link