🔑Kafka topics are like tables in a database, and each topic can be split into partitions.
🏷️Partitions within a topic have a unique offset that represents the position of a message within the partition.
🔄The order of messages is guaranteed within a partition but not across partitions.
⏰Topics have a limited retention time for data, and once written, messages are immutable.
❓You can have multiple consumers for a topic to process and analyze the streaming data.