I've registered the following Avro schema for a topic:
{
"type": "array",
"items": "com.example.User"
}
where com.example.User
is of type record and is defined in a separate file.
I know that SpecificAvroSerde
can be used to serialize/ deserialize a SpecificRecord
, but what Serdes should you use for an array of records?