apache kafka - Consuming from a replica -


kafka replicates each partition of topic up-to specified replication factor.

as far know, write , read requests routed leader of partition. there way consume followers not leader?

is replication in kafka fail-over?

you can consume leader -- design. replication fault-tolerance only.

if leader fails, followers elect new leader.

have @ blog post more details: http://www.confluent.io/blog/hands-free-kafka-replication-a-lesson-in-operational-simplicity/


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -