Mahimman ra'ayoyin Kafka sun haɗa da jabuna (nau'ikan abubuwan da suka faru), bangare (rabe-rabin aikin a cikin jabuna), dilalai (sarivun), masu samarwa (rubuta), da masu karanta (karanta). Fahimtar waɗannan abubuwan yana da mahimmanci sosai don aiki tare da Kafka.
Mahimman ra'ayoyin
TOPIC → a named category/stream of events (like a "channel" — e.g. "orders", "clicks")
→ producers write to topics; consumers read from them
PARTITION → a topic is split into PARTITIONS (ordered, append-only logs):
→ the unit of PARALLELISM and scaling; events distributed across partitions
→ order is guaranteed WITHIN a partition (not across partitions)
BROKER → a Kafka SERVER (stores data, serves clients); a CLUSTER = multiple brokers
PRODUCER → writes (publishes) events to topics
CONSUMER → reads (subscribes to) events from topics
