Django-serverless-cron – A Django app with a simpler approach running cron jobs




https://readthedocs.org/projects/django-serverless-cron/badge/?version=latest

django-serverless-cron is a Django app with a simpler approach running cron jobs.
This is done through exposing a HTTP endpoint to invoke the jobs that allows you to run any task without having to manage always-on infrastructure.

There is also an option to run jobs via management commands and the Django admin.

Why?

This is essentially a replacement/supplement for a traditional OS ‘cron’ or ‘job scheduler’ system:

  • Serverless cron jobs no-longer a pain.
  • Schedule jobs to run at a frequency that is less than 1 min. (crontab is limited to 1 min)
  • The machine running crontab is no longer a single point of failure.
  • The problem with the above systems

     

     

     

    To finish reading, please visit source site