hive-protobuf
hive-protobuf copied to clipboard
Protobuf input format and Serde support
Results
2
hive-protobuf issues
Sort by
recently updated
recently updated
newest added
In order to process the protos I'm working with, I added handling for enum and binary protobuf types. I am able to import all fields into Hive with this change.
My .proto file is: ``` message ldata{ required string header = 1; optional bytes logs = 2; } ``` My create table statement is: ``` create table pbserdetest row format...