There is a partition table A, has 4 partitions, I want to load data to Table B.
insert into B select * from A partion (p0) where type = 0;
insert into B select * from A partion (p1) where type = 0;
insert into B select * from A partion (p2) where type = 0;
insert into B select * from A partion (p3) where type = 0;
How can I load data for each partition in parallel. just in one connection.
Try Apache Spark.
Great Documentation at this link