Прочитав исходный код библиотеки Avro, я нашел способ сделать это.Вот код
import json
import avro.schema
from avro.datafile import DataFileReader, DataFileWriter
from avro.io import DatumReader, DatumWriter
def create_schema():
names = avro.schema.Names()
load = lambda dict_value: avro.schema.SchemaFromJSONData(dict_value, names=names)
transaction_schema_dict = {
"namespace": "myavro",
"type": "record",
"name": "Transaction",
"fields": [
{"name": "name", "type": "string"},
]
}
account_schema_dict = {
"namespace": "myavro",
"type": "record",
"name": "Account",
"fields": [
{"name": "name", "type": "string"},
{"name": "transaction", "type": ["null", {'type': 'array', 'items': 'Transaction'}], 'default': "null"},
]
}
load(transaction_schema_dict)
return load(account_schema_dict)
def write_avro_file(file_path, schema, data):
with open(file_path, 'wb') as f, DataFileWriter(f, DatumWriter(), schema) as writer:
writer.append(data)
def print_avro_file(file_path):
with open(file_path, 'rb') as f, DataFileReader(f, DatumReader()) as reader:
for account in reader:
print(account)
def run():
schema = create_schema()
file_path = 'account.avro'
data = {
'name': 'my account',
'transaction': [
{ 'name': 'my transaction 1' },
{ 'name': 'my transaction 2' },
]
}
write_avro_file(file_path, schema, data)
print_avro_file(file_path)
run()
Ключ должен использовать функцию SchemaFromJSONData
вместо Parse
и назначать один и тот же объект Names
, чтобы схемы могли ссылаться друг на друга.Обратите внимание, что порядок загрузки вызовов схемы имеет значение.