Bird
0
0

After running:

medium📝 Debug Q7 of 15
Kafka - Kubernetes and Cloud Deployment
After running:
helm install kafka bitnami/kafka --set persistence.enabled=true

Kafka pods fail to start. What could be a common cause?
AYou must disable persistence to start pods
BPersistence setting is ignored by the chart
CKafka does not support persistence
DPersistent volume claim is not bound or available
Step-by-Step Solution
Solution:
  1. Step 1: Check persistence effect

    Enabling persistence requires a bound persistent volume claim (PVC).
  2. Step 2: Identify pod failure cause

    If PVC is not available, pods cannot mount storage and fail to start.
  3. Final Answer:

    Persistent volume claim is not bound or available -> Option D
  4. Quick Check:

    Persistence needs PVC bound to start pods [OK]
Quick Trick: Ensure PVCs are ready before enabling persistence [OK]
Common Mistakes:
MISTAKES
  • Assuming persistence is optional for pod startup
  • Thinking persistence setting is ignored
  • Believing Kafka cannot use persistent storage

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes