我想通过 Kafka Rest Proxy 生成一个 kafka 主题。我在模式注册表中创建了一个 JSON 模式,我希望所有消息都根据注册的模式进行验证,如果它们与模式不匹配,则会被拒绝。
我的架构
{
"type": "object",
"properties": {
"foo": {
"type": "string",
},
"bar": {
"type": "number"
}
}
}
此架构已正确注册并分配了版本 1。然后我尝试为两者生成一条数据类型错误的消息foo
,bar
但该消息被接受。
curl --location --request POST 'http://localhost:8082/topics/test' \
--header 'Content-Type: application/vnd.kafka.jsonschema.v2+json' \
--header 'Accept: application/vnd.kafka.v2+json' \
--data-raw '{
"value_schema_id": 1,
"records": [
{
"value": {
"foo": 10,
"bar":"not a number"
}
}
]
}'
请注意,我正在生成test
具有关联模式的主题,但无论如何都会接受错误消息。我还尝试添加"value_schema_id": 1
以确保在有效负载中引用了架构,但仍然接受错误消息。
但是,如果我传递 JSON 模式,因为value_schema
它按预期工作
{
"value_schema": "{\"type\": \"object\",\"properties\": {\"foo\": {\"type\": \"string\"},\"bar\": {\"type\": \"number\"}}}",
"records": [
{
"value": {
"foo": "10",
"bar": "1"
}
}
]
}
回复
{
"error_code": 42203,
"message": "Conversion of JSON to Object failed: Failed to convert JSON using JSON Schema: #/bar: expected type: Number, found: String"
}
问题:是否可以在生成消息时引用现有的模式 id 而不必每次都传递整个 JSON 模式?