nerdexam
Confluent

CCDAK · Question #89

What's a Kafka partition made of?

The correct answer is C. One file and two indexes per segment. Kafka partitions are made of segments (usually each segment is 1GB), and each segment has two corresponding indexes (offset index and time index).

Kafka Client Fundamentals

Question

What's a Kafka partition made of?

Options

  • AOne file and one index
  • BOne file
  • COne file and two indexes per segment
  • DOne file and two indexes

How the community answered

(53 responses)
  • A
    2% (1)
  • B
    4% (2)
  • C
    92% (49)
  • D
    2% (1)

Explanation

Kafka partitions are made of segments (usually each segment is 1GB), and each segment has two corresponding indexes (offset index and time index).

Topics

#partition internals#segment files#index files#log storage

Community Discussion

No community discussion yet for this question.

Full CCDAK Practice