This message was deleted.
# general
s
This message was deleted.
v
yes, in the
Pares data
step of the data loader you want to set
Use json node reader
to
True
if you are using the API then it goes into the
inputFormat
:
This feature was only added Druid 25 (I believe)
But it does exactly what you need
s
Thanks for answering! So I upgraded to Druid 25, but then, I don't get to the dialog from your first screenshot, because already in the 'connect' tab I get this message: This data looks like regular JSON object. For Druid to parse a text file it must have one row per event. Maybe look at newline delimited JSON instead.
v
let me have a look...
This is actually a bug in the UI wizard. It is fixed here: https://github.com/apache/druid/pull/13709 that warning is wrong (it should appear) and it will prevent you from using the rest of the wizard. You have to make the spec by hand and submit it directly until the fix above is merged and released. If you really wanted to use the wizard you would have to pull out a sample of events from your stream. reformat them to be single line json objects, put them in a new kafka topic, run the wizard on that new topic, grab the spec at the end, edit the topic to the original topic, and submit it by hand. So sorry about this!
s
Okay, that makes sense - Thank you 🙂