pbjson
unread,Jul 19, 2013, 7:41:30 PM7/19/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to prot...@googlegroups.com
Hello,
Has anyone seen the following structure in protobuffer?
message KeyValue{
required string key=1;
optional string value=2;
optional KeyValue key_value=10;
}
this is a circular reference and how would you resolve this if you have convert this to a flat structure of primitives for eg: to be converted to a hive schema.
eg: keyvalue<key:string,value string, key_value:string>
Has anyone come across such a situation and any better way to do this?
Thanks in advance.