スクリプトで断続的なエラーが発生している原因を突き止めようと頭を悩ませてきました。エラーは次のとおりです。SQLSTATE[HY000]:一般的なエラー:2006MySQLサーバーがなくなりました。
以下の私のスクリプトは、curlを実行し、JSON応答からいくつかの値を取得して、それらをテーブルに書き込む関数の一部です。80%の時間は正常に動作し、残りの20%はサーバーがなくなったというエラーが発生します。エラーの原因となる傾向を特定できませんでした。ランダムなようです。このエラーが発生する理由はありますか?これをチェックしてくれてありがとう
...
//post via cURL
$ch = curl_init( $url );
$timeout = 500;
curl_setopt( $ch, CURLOPT_POST, 1);
curl_setopt( $ch, CURLOPT_POSTFIELDS, $myvars);
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt( $ch, CURLOPT_CONNECTTIMEOUT, $timeout);
curl_setopt( $ch, CURLOPT_HEADER, 0);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1);
$this->response = curl_exec( $ch );
$this->json_decoded = json_decode($this->response);
$this->full = print_r($this->json_decoded, true);
$client_leadid = $this->json_decoded->Parameters->lead_id;
$client_status = $this->json_decoded->Status;
$length = curl_getinfo($ch);
curl_close($ch);
//record in DB
$insert = $this->full.' | '.$url.' | '.$myvars.' | '.$this->date . ' | Time Taken: '.$length['total_time'];
$db->exec("UPDATE table SET client_resp = '$insert' WHERE global_id = '$this->leadid' LIMIT 1");
$db->exec("UPDATE table SET client_leadid = '$client_leadid' WHERE global_id = '$this->leadid' LIMIT 1");