-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Labels
Description
I'm looking at switching from Elsa to erlkaf. My use case is to consume entire Kafka topics to populate in-memory caches on application boot. This requires two things from my consumers:
- They start from the beginning of the topic every time the application starts, rather than starting from a previously-set offset
- They're not part of a consumer group, or at least not part of a common or previously-used one, so each node in the cluster can maintain its own independent cache
I think I could accomplish this with randomly-generated unique consumer groups, but that feels like a hack, so I'm hoping there's a better way. I didn't see one looking through the code but might've missed it.
Reactions are currently unavailable