Bird
0
0

Given this Helm install command:

medium📝 Predict Output Q4 of 15
Kafka - Kubernetes and Cloud Deployment
Given this Helm install command:
helm install kafka bitnami/kafka --set replicaCount=3,logRetentionHours=168

What will be the number of Kafka brokers and log retention period in hours?
A3 brokers and default log retention
B3 brokers and 168 hours
C1 broker and 168 hours
DDefault brokers and 168 hours
Step-by-Step Solution
Solution:
  1. Step 1: Analyze replicaCount setting

    replicaCount=3 sets Kafka brokers to 3.
  2. Step 2: Analyze logRetentionHours setting

    logRetentionHours=168 sets log retention to 168 hours (7 days).
  3. Final Answer:

    3 brokers and 168 hours -> Option B
  4. Quick Check:

    replicaCount=3 and logRetentionHours=168 [OK]
Quick Trick: Multiple settings can be set with --set separated by commas [OK]
Common Mistakes:
  • Assuming default values override --set values
  • Confusing replicaCount with default 1 broker
  • Ignoring logRetentionHours setting

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes