1
我是Apache Avro的新手。我通過使用Parsers來讀取模式來序列化數據。以下詳細信息包含我的模式。我需要在同一個模式中包含多個記錄。如何在Avro模式中包含多個記錄?
{ "namespace": "tutorial.model",
"type": "record",
"name": "Employee",
"fields": [
{"name": "firstName", "type": "string"},
{"name": "lastName", "type": "string"},
{"name": "age", "type": "int"},
{"name": "id", "type": "string"},
{"name" : "company", "type" : "string"}
]
}