druid-io / pydruid

A Python connector for Druid
Other
506 stars 194 forks source link

insert data into druid using python code #75

Closed aakashkag closed 7 years ago

aakashkag commented 7 years ago

how we can insert data into druid using python code?

erikdubbelboer commented 7 years ago

You can not insert into Druid directly. But you could set up druid to ingest from Kafka and then use something like https://github.com/dpkp/kafka-python to send events to Druid.

aakashkag commented 7 years ago

thanks!