Study Confluent CCDAK Kafka Fundamentals: key concepts, common traps, and exam decision cues.
This chapter is the foundation for the whole exam. If you do not understand how topics, partitions, keys, offsets, and consumer groups interact, producer and consumer configuration questions start to look like memorization when they are really behavior questions.
Partition: A log shard that defines the real ordering boundary in Kafka.
Key: Record field often used to control partition choice and per-entity ordering.
Confluent’s current public CCDAK description says developers use Kafka’s core APIs and platform capabilities to build and maintain real-time streaming applications. This chapter covers the basics those applications depend on.
| Lesson | Focus |
|---|---|
| 1.1 Topics, Partitions & Groups | Learn how records are stored, copied, and assigned across consumers. |
| 1.2 Keys, Ordering & Parallelism | Understand how partition choice affects ordering, hot spots, and scaling. |
| If the question is really about… | Go first to… |
|---|---|
| offsets, group work sharing, or replication awareness | 1.1 Topics, Partitions & Groups |
| per-entity ordering or hot partitions | 1.2 Keys, Ordering & Parallelism |