Hi all, Does Impala supports reading data from protobufs?
I have a NoSQL(key, value) table and value part is going to be protobufs.
So, will impala be able to understand protobuf and do nested type queries.
Example: If protobuf is like this:
message Employee {
string name = 1;
string id = 2;
string address = 3;
}
Can Impala do queries like this? "where Employee.name="Sachin" ?
Thanks,
Sachin
