Answer the question
In order to leave comments, you need to log in
Why is a “heavy” CRON script executed several times?
Greetings,
CRON hits the database once a minute and looks for the last entry with the pid=0 field .
If it finds, then parsing json is performed with further writing to different database tables of what has been parsed.
I recently noticed such a nuisance -
For example, in parsed json there is such a block:
...
{
"pr_id":5,
"com_total":150,
}
...
Answer the question
In order to leave comments, you need to log in
Obviously, the script does not have enough minutes to execute and it processes the same data several times. You need to keep track that the previous run has completed while the new one is starting. If not, then abort the execution of a new launch and do nothing.
And the most correct would be to profile the script. A minute is a very long time for a computer and during this time it can do a lot. Most likely, you have a suboptimal algorithm.
According to the crown, everything you do must be written to some kind of additional log, for example, a text log or a database, and make more tricky conditions in the script. We took record 150 and wrote it into a text box if the script worked successfully at the very end, delete the record. At the beginning of the script, check if the script took 150 and in the text is 150, then something is wrong ...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question