标签: protocol-buffers orc
我想知道是否存在可以将protobuf模式转换为ORC模式的实现。
例如,给定一个protobuf消息定义People:
People
message People { string name = 1; uint32 age = 2; }
它返回struct<name:string,age:int>之类的ORC模式。
struct<name:string,age:int>