Kafka - Schema Registry
Given this Kafka producer code snippet using Avro schema validation, what happens if the producer sends data that does not match the registered schema?
Assuming the schema expects
producer.send({ key: 'user1', value: { name: 'Alice', age: 'twenty' } });Assuming the schema expects
age as an integer.