Kafka Eco System
Kafka Eco System Minimize image Edit image Delete image ðð§ðžð―ðķð°ð: Minimize image Edit image Delete image Topics ððžA stream of messages belonging to a particular category is called a Topic. ððžIts is a logical feed name where to which records are published(Similar to Table in DB ) ððžUnique identification of table is called name of the topic - can not be duplicated ððžA topic is a storage mechanism for a sequence of events ððžE vents are immutable ððžkeep events in the same order as they occur in time. So, each new event is always added to the end of the Message. 2. ððĢððĨð§ðð§ððĒðĄðĶ: ððžTopics are split into partition ððžAll the messages within a partition are ordered and immutable ððžAll the messages within the partition has a unique ID associated is called OFFSET. ððžKafka uses topic partitioning to improve scalability. ððž Kafka guarantees the order of the events within the same topic partition. However, by default, it does not guarantee the ...