Remix.run Logo
ahoka 19 hours ago

Funny you mention that, because Kafka consumers actually pull messages.

politelemon 15 hours ago | parent | next [-]

What is the reason for using Kafka then, sorry if I'm missing something fundamental.

pram 10 hours ago | parent [-]

A Kafka consumer does a lot of work coordinating distributed clients in a group, managing the current offset, balancing the readers across partitions, etc which is native broker functionality. Saying you can replace it all with a simple JDBC client or something isn't true (if you need that stuff!)

ycombinatrix 12 hours ago | parent | prev [-]

Not by busy waiting in a loop on a database query though.