我只是想在 Confluent Control Center 的 Web 界面中为主题设置一个值模式。我选择了 Avro 格式并尝试了以下架构:
{
"fields": [
{"name":"date",
"type":"dates",
"doc":"Date of the count"
},
{"name":"time",
"type":"timestamp-millis",
"doc":"date in ms"
},
{"name":"count",
"type":"int",
"doc":"Number of Articles"
}
],
"name": "articleCount",
"type": "record"
}
但是界面一直说输入模式无效。我不知道为什么。
任何帮助表示赞赏!