gpt4 book ai didi

java - 使用阅读器架构将 Avro 文件转换为 JSON

转载 作者:行者123 更新时间:2023-12-02 02:24:46 27 4
gpt4 key购买 nike

我想在命令行上使用不同于写入器架构的读取器架构来反序列化 Avro 数据。我可以在序列化时指定编写器架构,但不能在反序列化期间指定。

record.json(数据文件):

{"test1": 1, "test2": 2}

writer.avsc(编写器架构):

{
"type": "record",
"name": "pouac",
"fields": [
{
"name": "test1",
"type": "int"
},
{
"name": "test2",
"type": "int"
}
]
}

reader.avsc(阅读器架构):

{
"type": "record",
"name": "pouac",
"fields": [{
"name": "test2",
"type": "int",
"aliases": ["test1"]
}]
}

序列化数据:

$ java -jar avro-tools-1.8.2.jar fromjson --schema-file writer.avsc record.json > record.avro

为了反序列化数据,我尝试了以下方法:

$ java -jar avro-tools-1.8.2.jar tojson --schema-file reader.avsc record.avro
Exception in thread "main" joptsimple.UnrecognizedOptionException: 'schema-file' is not a recognized option
...

我主要寻找命令行指令,因为我不太擅长编写 Java 代码,但我很乐意自己编译 Java 代码。实际上,我感兴趣的是确切的反序列化结果。 (更根本的问题在我为实现别名而打开的 fastavro PR 上的 this conversation 中进行了描述)

最佳答案

avro-tools tojson 目标仅用作将二进制编码的 Avro 文件转换为 JSON 的转储工具。该架构始终伴随 Avro 文件中的记录,如下面的链接所述。因此它不能被 avro-tools 覆盖。

http://avro.apache.org/docs/1.8.2/#compare

我不知道有什么独立的工具可以用来实现你想要的。我认为您需要进行一些编程才能达到预期的结果。 Avro 支持多种语言,包括 Python,但跨语言的功能并不统一。根据我的经验,Java 是最先进的。作为一个例子,Python 缺乏在 DataFileReader 上指定读取器模式的能力,这将有助于实现您想要的:

https://github.com/apache/avro/blob/master/lang/py/src/avro/datafile.py#L224

您可以在 Python 中获得最接近的结果如下;

import avro.schema as avsc
import avro.datafile as avdf
import avro.io as avio

reader_schema = avsc.parse(open("reader.avsc", "rb").read())

# need ability to inject reader schema as 3rd arg
with avdf.DataFileReader(open("record.avro", "rb"), avio.DatumReader()) as reader:
for record in reader:
print record

就您概述的架构和数据而言。预期行为应该是未定义,因此会发出错误

可以使用以下 Java 代码验证此行为;

package ca.junctionbox.soavro;

import org.apache.avro.Schema;
import org.apache.avro.SchemaValidationException;
import org.apache.avro.SchemaValidationStrategy;
import org.apache.avro.SchemaValidator;
import org.apache.avro.SchemaValidatorBuilder;

import java.util.ArrayList;

public class Main {
public static final String V1 = "{\n" +
" \"type\": \"record\",\n" +
" \"name\": \"pouac\",\n" +
" \"fields\": [\n" +
" {\n" +
" \"name\": \"test1\",\n" +
" \"type\": \"int\"\n" +
" },\n" +
" {\n" +
" \"name\": \"test2\",\n" +
" \"type\": \"int\"\n" +
" }\n" +
" ]\n" +
"}";

public static final String V2 = "{\n" +
" \"type\": \"record\",\n" +
" \"name\": \"pouac\",\n" +
" \"fields\": [{\n" +
" \"name\": \"test2\",\n" +
" \"type\": \"int\",\n" +
" \"aliases\": [\"test1\"]\n" +
" }]\n" +
"}";

public static void main(final String[] args) {
final SchemaValidator sv = new SchemaValidatorBuilder()
.canBeReadStrategy()
.validateAll();
final Schema sv1 = new Schema.Parser().parse(V1);
final Schema sv2 = new Schema.Parser().parse(V2);
final ArrayList<Schema> existing = new ArrayList<>();
existing.add(sv1);

try {
sv.validate(sv2, existing);
System.out.println("Good to go!");
} catch (SchemaValidationException e) {
e.printStackTrace();
}
}
}

这会产生以下输出:

org.apache.avro.SchemaValidationException: Unable to read schema: 
{
"type" : "record",
"name" : "pouac",
"fields" : [ {
"name" : "test2",
"type" : "int",
"aliases" : [ "test1" ]
} ]
}
using schema:
{
"type" : "record",
"name" : "pouac",
"fields" : [ {
"name" : "test1",
"type" : "int"
}, {
"name" : "test2",
"type" : "int"
} ]
}
at org.apache.avro.ValidateMutualRead.canRead(ValidateMutualRead.java:70)
at org.apache.avro.ValidateCanBeRead.validate(ValidateCanBeRead.java:39)
at org.apache.avro.ValidateAll.validate(ValidateAll.java:51)
at ca.junctionbox.soavro.Main.main(Main.java:47)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:294)
at java.lang.Thread.run(Thread.java:748)

别名通常用于模式演化中的向后兼容性,允许从不同/旧键映射到通用键名称。鉴于您的编写器模式不会通过使用联合将 test1 和 test2 字段视为“可选”,我看不出您想要这种转换的场景。如果您想“删除” test1 字段,则可以通过将其从 v2 模式规范中排除来实现。任何可以应用读取器方案的读取器都会使用 v2 架构定义忽略 test1。

为了说明我所说的进化的含义;

v1 架构

{
"type": "record",
"name": "pouac",
"fields": [
{
"name": "test1",
"type": "int"
}]
}

v2 架构

{
"type": "record",
"name": "pouac",
"fields": [
{
"name": "test2",
"type": "int",
"aliases": ["test1"]
}]
}

您可以拥有 v1 格式的 TB 数据,并引入 v2 格式,将 test1 字段重命名为 test2。该别名将允许您对 v1 和 v2 数据执行 Map-Reduce 作业、Hive 查询等,而无需先主动重写所有旧的 v1 数据。请注意,这假设字段的类型和语义没有变化。

关于java - 使用阅读器架构将 Avro 文件转换为 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47963172/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com