March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I am pulling in a table from a MySql Database that has millions of rows. All other tables are pulled n correctly, no worries. This table gets to about 5million rows and then just fails saying Timeout Experienced (eventhough everything is up and running).
Is there any og or anything to get more details?
Solved! Go to Solution.
Hi @duggy,
Actually, that's an error of Mysql database. I would suggest you enlarge the timeout values. Please refer to https://forums.mysql.com/read.php?38,188231,188231 and https://stackoverflow.com/questions/3475867/mysql-data-mysqlclient-mysqlexception-timeout-expired.
Please understand that this link is provided “AS IS” with no warranties or guarantees of content changes, and confers no rights.
Best Regards,
Hi @duggy,
Actually, that's an error of Mysql database. I would suggest you enlarge the timeout values. Please refer to https://forums.mysql.com/read.php?38,188231,188231 and https://stackoverflow.com/questions/3475867/mysql-data-mysqlclient-mysqlexception-timeout-expired.
Please understand that this link is provided “AS IS” with no warranties or guarantees of content changes, and confers no rights.
Best Regards,
I incresed the timeout to 60 as you suggested and error dissapeared.
MUCH APPRECIATED!
As far as MySQL timeout errors go, this addresses one end. There can be a timeout on the server as well as a timeout on the client. In this case, it seems that it was a timeout on the server end, which when addressed resolved the issue.
However, I ran into a similar error message, with my data refresh failing after 11 minutes or so. My server timeout was set to indefinite, so the problem wasn't on the server. It turns out by default the CommandTimeout on the MySQL.Database() function in Power Query M is set to 10 minutes. I was trying to download 3 million rows, and it was taking more than 10 minutes, and so it would fail.
The option to set the CommandTimeout is as an optional record in the third parameter of the MySQL.Database() function.
https://docs.microsoft.com/en-us/powerquery-m/mysql-database
I used the following:
Source = MySQL.Database( "192.168.0.100", "myschema", [ CommandTimeout = #duration(0,0,30,0) ] ),
Sure enough it worked just fine. Duration is listed in Days, Hours, Minutes, Seconds.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
73 | |
68 |