CCAAK · Question #31
You are designing a Kafka-based application to process real-time data. Your application needs to separate incoming sensor data into categories such as 'Temperature Readings', 'Pressure Readings'…
The correct answer is C. Topic. Topics are Kafka's primary organizational unit for categorizing and storing different data streams. Creating separate topics for each sensor type allows independent processing and scaling for
Question
You are designing a Kafka-based application to process real-time data. Your application needs to separate incoming sensor data into categories such as 'Temperature Readings', 'Pressure Readings', and 'Humidity Readings' so each type of data is processed independently. Which Kafka resource should you use to organize and store these different categories of data?
Options
- ACluster
- BBroker
- CTopic
- DConsumer Group
How the community answered
(34 responses)- A9% (3)
- B3% (1)
- C82% (28)
- D6% (2)
Explanation
Topics are Kafka's primary organizational unit for categorizing and storing different data streams. Creating separate topics for each sensor type allows independent processing and scaling for
Topics
Community Discussion
No community discussion yet for this question.