If I am not mistaken, Pinot's integration with kaf...
# general
m
If I am not mistaken, Pinot's integration with kafka schema registry is only for avro decoder? Can pinot read table schemas directly from Kafka schema registry?
m
Yes. For JSON, we simply use the table config
m
How do you manage/automate the schema changes? Do you have a process that takes the canonical schema and then translate it into a Pinot’s table schema?
k
@User Can you elaborate on what is the format of data in Kafka
m
they are serialized json messages
k
Got it! this should be easy to add the ConfluentJsonDecoder. Do you want to take a stab at it.. we can help you
m
Even if it is possible we still need to manage Pinot table schemas separately right?
k
yes. Are you looking at updating pinot schema automatically as the schema in schema registry gets updated?
If yes, that seems like a pretty cool idea
m
yeah dont know if we have considered it
k
We haven’t.. I think one of the reasons was that Pinot did not support query nested columns
But with json udf and json index, this might be a cool idea