H13-711_V3.5 · Question #273
In the Fusioninsight product, which statement about the Kafka component is correct? (Multiple choice)
The correct answer is A. When creating a Topic, the number of replicas must not be greater than the number of currently B. When Kafka's Producer sends a message, it can specify which Consumer will consume the C. Kafka will store metadata information on Zookeeper D. After the Kafka installation is complete, the sensitive data storage directory cannot be configured. All four options are correct statements about Kafka in the Fusioninsight product. Option A is correct because Kafka requires each replica to reside on a distinct broker, so requesting more replicas than available brokers is physically impossible and will fail at topic creation…
Question
In the Fusioninsight product, which statement about the Kafka component is correct? (Multiple choice)
Options
- AWhen creating a Topic, the number of replicas must not be greater than the number of currently
- BWhen Kafka's Producer sends a message, it can specify which Consumer will consume the
- CKafka will store metadata information on Zookeeper
- DAfter the Kafka installation is complete, the sensitive data storage directory cannot be configured.
How the community answered
(31 responses)- A100% (31)
Explanation
All four options are correct statements about Kafka in the Fusioninsight product. Option A is correct because Kafka requires each replica to reside on a distinct broker, so requesting more replicas than available brokers is physically impossible and will fail at topic creation. Option B is correct in that a Kafka Producer can influence message routing by specifying a partition key or target partition, which - combined with consumer group partition assignments - effectively determines which consumer instance processes the message. Option C is correct because traditional Kafka (as used in Fusioninsight) relies on Zookeeper to store and manage critical metadata including broker registrations, topic configurations, partition leadership, and consumer group offsets. Option D is correct in the Fusioninsight context, where sensitive data storage directories are locked in at installation time as a security measure and cannot be reconfigured afterward.
Since there are no distractors (all options are correct), the key exam trap here is assuming one or more statements are false - particularly D, which sounds restrictive, or B, which may seem to contradict Kafka's topic-based pub/sub model.
Memory tip: Think of the acronym RZPL - Replicas ≤ Brokers, Zookeeper holds metadata, Partition routing lets producers influence consumers, Locked sensitive directory post-install - all four are core Fusioninsight-Kafka truths.
Community Discussion
No community discussion yet for this question.