are there any core.async integrations with rabbitmq or kafka?
Looking on https://phronmophobic.github.io/dewey/search.html, I could only find https://github.com/AppsFlyer/ketu
Last time I checked, there's a subtle oversight in Ketu where subscriptions aren't paused after polling. You might also want to handle partitions more carefully
For Kafka ketu is proven to work at scale if that's a requirement. But I would also check just using the Java API (I did it maybe a year ago and it wasn't too hard). IDK about RabbitMQ but I'd bet the Java API is also very usable from clojure there.
thanks!