Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/mysql/72.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
MySql是否并行执行分区搜索?_Mysql_Partitioning - Fatal编程技术网

MySql是否并行执行分区搜索?

MySql是否并行执行分区搜索?,mysql,partitioning,Mysql,Partitioning,例如,有一个表的列上有2个分区,该列有2个值:“a”和“B”。考虑选择: select * from my_talbe where my_column in ('A','B'); //other where conditions here MySql是否并行执行此选择?或者从第一个分区选择第二个分区?MySQL(目前)不以任何并行方式从单个连接执行任何查询。这包括()中的,或,分区的表,'UNION'等 例外:InnoDB中的一些后台I/O是并行完成的。“并行复制线程”在从属服务器中是可选的,

例如,有一个表的列上有2个分区,该列有2个值:“a”和“B”。考虑选择:

select * from my_talbe where my_column in ('A','B'); //other where conditions here
MySql是否并行执行此选择?或者从第一个分区选择第二个分区?

MySQL(目前)不以任何并行方式从单个连接执行任何查询。这包括()中的
分区的
表,'UNION'等

例外:InnoDB中的一些后台I/O是并行完成的。“并行复制线程”在从属服务器中是可选的,但这有点像有多个连接