Re: Did you see "Got error -1 from storage engine"?
Well, I din't solve it... I'm waiting for 5.6.11 as my SysAdmin said that it would help..
This is my temporary solution (PHP):
// regular query
$this->result[$r] = mysql_query($sql, $this->connection);
// if we have error
if(!$this->result[$r])
{
// if this error is storage engine
if( mysql_error() == "Got error -1 from storage engine" )
{
// better to wait a while..
sleep(2);
// here i never got error again...
$this->result[$r] = mysql_query($sql, $this->connection);
...
Subject
Views
Written By
Posted
5204
March 19, 2013 03:52PM
2491
April 11, 2013 04:03AM
Re: Did you see "Got error -1 from storage engine"?
2380
April 11, 2013 04:25AM
2241
April 11, 2013 05:07AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.