Jump to content

What to do if query times out during install


Recommended Posts

Still trying to get 4.4 to install. On test instillation this time instead of live site.  YAAAY

However, during the upgrade from 4.3.6 I noticed one of the queries times out. I have a lot of records to add this key to apparently. Then if I try to run it again it doesn't work because the partially upgraded DB already has the key.

What should I do?

1372120244_gatewayerror.thumb.JPG.fd7f9c036d528e3dab8eca7ab28f9cc9.JPG

 

 

Now it says this

error.JPG.621b3fc25ed7de8aa1d413fd5ecb4a39.JPG

 

Link to comment
Share on other sites

You're going to need to increase that timeout.

Generally, the upgrader will prompt you to run more intensive queries manually, and you should do those via the MySQL CLI directly, not phpMyAdmin (since you're self-hosted).

If the queries have already been run and you're sure they have, the upgrader should allow you to proceed as normal.

Link to comment
Share on other sites

It should be noted, that if you do run these queries via phpMyAdmin, and they do timeout, that the query is likely still running on the server. To confirm, run SHOW PROCESSLIST, which will show all of the queries currently running. You can then re-run that to see if it's still running, and once it disappears from the list, it's finished.

But yes, it's better to run them via CLI to avoid the timeout.

Link to comment
Share on other sites

I realize this is slipping into noob zone for most of the pro's here but I have always used PHPMyAdmin for queries.
I can't get this to run on the command line. Here is what I am trying.

mysql -h localhost -uMyUser -pMyPass -e "ALTER TABLE `core_reputation_index` ADD KEY `leaderboard` (`rep_class`,`rep_date`,`member_received`,`rep_rating`);MyDataBase";

And getting the following error.

ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'ADD KEY  (,,,)' at line 1

What am I doing wrongly?

Link to comment
Share on other sites

Do this instead:

> mysql -h localhost -uUSER -pPASS
mysql> use "MyDatabase";
mysql> ALTER TABLE `core_reputation_index` ADD KEY `leaderboard` (`rep_class`,`rep_date`,`member_received`,`rep_rating`);

Then you can just run any queries as prompted without having to login each time. Then, once your upgrade has finished, just do this to logout:

mysql> exit

 

Link to comment
Share on other sites

  • 4 weeks later...
On 4/9/2019 at 5:06 AM, TDBF said:

If you don't like using CMD or MyPHPAdmin then I would suggest you give HeidiSQL a try.

You will be able to INSERT large Databases without the worry of timing out.

HeidiSQL is such a great interface. +1 to this.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Upcoming Events

    No upcoming events found
×
×
  • Create New...