Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

How partitions enable work not only to be distributed, but reliably distributed ! What happens if the disk fails or the data is inaccessible ?

There is no redundancy between the nodes, there could be unrecoverable data loss because the data being managed by the failed broker, unless replicated to another cluster, is now accessible.

The property “Replication-Factor” will enable to handle failed broker or server.

kafka/bin/kafka-topics.sh --create \
--zookeeper localhost:2181 \
--replication-factor 3 \
--partitions 3 \
--topic unique-topic-name

The replication set to 2 or 3 at minimum so that failures or machine maintenance will not interrupt the cluster’s operation.

  • No labels