How can I parallel execute sql for MySQL partition table each partition

540 Views Asked by At

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.

1

There are 1 best solutions below

0
On

Try Apache Spark.

Great Documentation at this link

These options must all be specified if any of them is specified. They describe how to partition the table when reading in parallel from multiple workers. partitionColumn must be a numeric column from the table in question. Notice that lowerBound and upperBound are just used to decide the partition stride, not for filtering the rows in table. So all rows in the table will be partitioned and returned. This option applies only to reading.