This message was deleted.
# general
s
This message was deleted.
v
The recommended way to do it is by dumping your data with mysqldump and then loading it via batch ingestion in the console
os start by running something like
mysqldump -u [username] -p --tab=[output_directory] --fields-terminated-by='\t' --fields-enclosed-by='' --fields-escaped-by='\\' --lines-terminated-by='\n' [database_name] [table_name]
r
@Vadim Thanks for your reply, I want to execute this process on automation through python scripts and dataflow is like MySQL to hive load into Druid .If you have any others options using python only let me know.