pull down to refresh
100 sats \ 0 replies \ @optimism 4 Jun \ parent \ on: What are you working on this week? meta
I've used Kafka a lot, but that was in enterprise settings and I'm looking for something that ultimately I could embed, so I decided to give this a go (lol). It works well for what I need it for thus far because I'm really using it as a message bus, but at-least-once delivery is a thing for my use-case.
NATS has JetStream, which is basically a file-based backend that you can use for persisted streams and k/v stores - so that's what I'm testing with right now. The one thing that I'm really missing in the python client implementation is reliable kafka-like consumer group tracking - it looks like I'm going to have to write some code for that, but that's the fun part.