Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

Prioridade da transação?


Eu tentaria Keep It Simple S ..... e usaria um processo simples de bloqueio de arquivo como este na parte superior do seu script cron existente.
$fp = fopen("/tmp/my_cron_lock.txt", "r+");

if ( ! flock($fp, LOCK_EX)) {
    // other cron is overrunning so
    // I'll get restarted in 3 mins 
    // so I will let other job finish

    fclose($fp);

    exit;
}

// existing script



// free the lock, 
// although this will happen automatically when script terminates

    fclose($fp);
?>