我有一個avro模式如下,我想要一個模式的示例/示例記錄。地圖類型的等效avro記錄數據
模式:
{
"name" : "root",
"type" : "record",
"fields" : [
{
"name" : "sub_rec",
"type" : {
"type" : "array",
"items" : {
"type" : "map",
"values" : "string"
}
}
}
]
}
我試圖像下面,但它不工作
{
"sub_rec" : {[
"key1" : "val1",
"key2" : "val2"
]}
}
'子rec' VS'sub_rec'的記錄。此外,它是一個數組,而不是一個對象/地圖 –
你的意思是記錄應該是這樣嗎? { 「sub_rec」:[{[ 「KEY1」: 「VAL1」, 「KEY2」: 「VAL2」 ]}]} 感謝 – ghosts