(10) What are the advantages of Kafka over Redis for pub-sub? - Quora
This page may be out of date. Save your draft before refreshing this page.Submit any pending changes before refreshing this page. What are the advantages of Kafka over Redis for pub-sub? Yieldbot uses Kafka and Storm but apparently used to use Redis and Mongo. Why did they (or why might one) switch? I'm trying to understand statements like these: They are really quite different beasts. Redis is an in memory database that happens to have publish subscribe features. Redis needs to have as much memory as there are messages in flight. For this reason it is much better to use when you have short lived messages and where you will have more consumer capacity that you have publishing throughput so as to not run out of memory. Kafka is a high throughput, distributed log that can be used like a queue. It is built to accept and persist vast sums of data regardless of any consumers. Instead of pushing data to consumers,Read full article from (10) What are the advantages of Kafka over Redis for pub-sub? - Quora
No comments:
Post a Comment