Which of the following Kafka components represents a stream of messages of a particular category?
Which of the following Kafka components represents a stream of messages of a particular category?
In Kafka, a 'Topic' represents a stream of messages of a particular category. Topics are logical channels to which records are published and from which records are consumed. Each topic can be split into partitions to maintain load balancing and redundancy.
correct