Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚开始使用 Avro,我正在 Python 中使用 fastavro 库。
提前致谢。
根据定义,Avro 文件中已经有一个模式。
您可以先读取该架构,然后继续追加数据,或者您可以将整个文件读入内存,然后追加数据,然后覆盖文件。
不过,每个选项都要求您将 JSON 转换为 Avro(或至少是 Python 字典)。