AVRO, конвертировать запись в массив - PullRequest
1 голос
/ 27 мая 2019

Моя схема AVRO имеет запись fileObject, но мне нужно изменить это на массив fileObject. Как я могу это сделать?

        {
            "name": "file",
            "type": ["null", {
                "type": "record",
                "name": "FileObject",
                "doc": "file object",
                "fields": [{
                        "name": "fileUrl",
                        "type": ["null", "string"],
                        "doc": "url of the file"
                    },
                    {
                        "name": "spId",
                        "type": ["null", "string"],
                        "doc": "space id"
                    },
                    {
                        "name": "contentId",
                        "type": ["null", "string"],
                        "doc": "content id of the file"
                    },
                    {
                        "name": "versionId",
                        "type": ["null", "string"],
                        "doc": "version id of the file"
                    }
                ]
            }]
        },

1 Ответ

0 голосов
/ 28 мая 2019

Я получил это на работу

    {
        "name": "files",
        "type": {
            "type": "array",
            "items":{
                "name": "FileObjects",
                "type": "record",
                "fields":[{
                    "name": "fileUrl",
                    "type": ["null", "string"],
                    "doc": "url of the file"
                },
                {
                    "name": "sId",
                    "type": ["null", "string"],
                    "doc": "sid of the file"
                },
                {
                    "name": "contentId",
                    "type": ["null", "string"],
                    "doc": "content id of the file"
                },
                {
                    "name": "versionId",
                    "type": ["null", "string"],
                    "doc": "version id of the file"
                }]
            }
        },
        "default": []
    }
...