Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
aandreakis
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
5 ms
·
1.
▲
by
aandreakis
7y ago
yes. Debezium is a related project.
2.
▲
by
aandreakis
7y ago
This is a good point, we will fix that. Thx for the feedback
3.
▲
by
aandreakis
7y ago
DBLog has a very simple Output interface which allows to plugin a writer into whatever Output is desired: a stream (like Kafka), a datastore, a service, ... For example one can use MySQL as a source and have ElasticSearch as a direct output
4.
▲
by
aandreakis
7y ago
This is a great question :) We may share details about that in a future blog post.
5.
▲
by
aandreakis
7y ago
correct. This way we can capture create, update and delete events of individual rows. binlog_format must be set to ROW in order to make this work in MySQL. For Postgres we are using replication slots which provide row based events. We use M