I am performing bulk delete for multiple tables around 20. But right now they are in sequence (one by one). So they are taking time. Can i do bulk delete in parallel by using python or Mysql. They are all independent tables. Any suggestions please. I am running my code in AWS EMR
delete from table1;
delete from table2;
delete from table3;