Grokking the System Design Interview, Volume II
Vote
0% completed
Kafka Characteristics
Let's explore different characteristics of Kafka.
Storing messages to disks
Kafka writes its messages to the local disk and does not keep anything in RAM. Disks storage is important for durability so that the messages will not disappear if the system dies and restarts. Disks are generally considered to be slow. However, there is a huge difference in disk performance between random block access and sequential access
.....
.....
.....
Like the course? Get enrolled and start learning!
J
Junaid Effendi
· 4 years ago
Scalability: How removing or adding kafka server/partition treat the rebalancing of data?
Comparing to previous chapters, Consistent Hashing is used, for here, how does uniform distribution is maintained across all partition so there is no data skew?
Show 1 reply