المُنتجون ينشرون (يكتبون) الأحداث إلى مواضيع Kafka، والمستهلكون يشتركون في (يقرؤون) الأحداث منها. فهم كيفية عملهما — بما في ذلك التقسيم (Partitioning)، والإزاحات (Offsets)، ومجموعات المستهلكين — أمر أساسي لاستخدام Kafka.
المُنتجون — كتابة الأحداث
PRODUCERS publish events to TOPICS:
→ send a record (key, value) to a topic
→ the key determines the PARTITION (same key → same partition → ordering for that key);
no key → distributed (round-robin)
→ can configure ACKNOWLEDGMENTS (acks) for durability (wait for replicas to confirm)
→ batching, compression for throughput
