运行生产者将avro消息推送到kafka主题时,出现错误“类型为mappingproxy的对象不可JSON序列化”。
我的Avro架构如下:
{
"type": "record",
"name": "tch_users",
"namespace": "tch",
"fields": [
{
"name": "id",
"type": "string",
"doc": "User ID"
},
{
"name": "name",
"type": "string",
"doc": "User name"
},
{
"name": "created_at",
"type": {
"type": "long",
"logicalType": "timestamp-millis"
},
"doc": "Date of registration"
}
}