gpt4 book ai didi

mysql - 如何对MySQL分区表的每个分区并行执行sql

转载 作者:行者123 更新时间:2023-11-29 19:40:00 27 4
gpt4 key购买 nike

有一个分区表A,有4个分区,我想加载数据到表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;

如何并行加载每个分区的数据。仅在一个连接中。

最佳答案

尝试 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.

关于mysql - 如何对MySQL分区表的每个分区并行执行sql,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41413044/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com