You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may already be the case, but it's worth double checking and putting in the documentation.
The way the Linux cron system works is that all tasks are run concurrently. This needs to be the case for this project too.
Imagine there are some background scripts that take 20 seconds to run. Put them in on the crontab to run every minute, and they should be completed concurrently within their 20 second execution time... however if they are not run concurrently, more than three scripts will overlap into the next minute, and things will catch fire rather quickly.
The text was updated successfully, but these errors were encountered:
This may already be the case, but it's worth double checking and putting in the documentation.
The way the Linux cron system works is that all tasks are run concurrently. This needs to be the case for this project too.
Imagine there are some background scripts that take 20 seconds to run. Put them in on the crontab to run every minute, and they should be completed concurrently within their 20 second execution time... however if they are not run concurrently, more than three scripts will overlap into the next minute, and things will catch fire rather quickly.
The text was updated successfully, but these errors were encountered: