1. A test must verify that a new Avro schema version is COMPATIBLE with existing consumers before deployment. What should the test check against?
- A. Schema Registry compatibility rules (e.g., backward/forward compatibility) for the subject✓ Correct
- B. The number of partitions in the topic
- C. The consumer group's offset
- D. The broker's disk size
Explanation
Testing schema evolution means validating the new schema against the Schema Registry's configured compatibility mode (backward, forward, full) for that subject, so consumers won't break. Partition count (B), offsets (C), and disk size (D) are unrelated to schema compatibility.