Skip to content Skip to sidebar Skip to footer

Mysql Select Request In Parallel (python)

I saw a 'similar' post Executing MySQL SELECT * query in parallel, buy my question is different, and this has not been answered either, so i guess its not a duplicate. I am trying

Solution 1:

I found the "solution" after a lot of research. It is actually not possible. MySQL does not support parallel queries from the same userconnection. It is absolutely impossible, and there are no plans to add this.

The best you can get is the way i implemented it, so parallel the connection as well.

In some other types of databases it is possible, but for now i ll stick with MySQL and use the parallel connection method

Post a Comment for "Mysql Select Request In Parallel (python)"