Hi, could Pinot ingest non-json format Kafka stre...
# troubleshooting
a
Hi, could Pinot ingest non-json format Kafka stream data? 😅
I’d better customize a Decoder.😂
n
Can do avro and CSV. What's your format?
a
Thanks. It’s a plain string, example data is like: “event_value 5 1653611160 source=127.0.0.1 service=event_service key1=value1 key2=value2”
n
you could use CSV decoder (available in master though, not in the release yet), and provide
" "
(space) as the delimiter
cc @Prashant Pandey who contributed that feature
a
Thank you. I’ll have a try.
p
@Alice Apologies for the delayed response, but were you able to do this?
a
Hi, I wrote a Decoder to ingest this kind of data. I think it’s ok now.
🙌 1
😅
p
Yes actually the CSV delimiter wouldn’t have worked here without some modifications atleast.