########## User guide ########## Installing APScheduler ---------------------- The preferred installation method is by using `pip `_:: $ pip install apscheduler If you don't have pip installed, you can easily install it by downloading and running `get-pip.py `_. If, for some reason, pip won't work, you can manually `download the APScheduler distribution `_ from PyPI, extract and then install it:: $ pip install . Code examples ------------- The source distribution contains the :file:`examples` directory where you can find many working examples for using APScheduler in different ways. The examples can also be `browsed online `_. Basic concepts -------------- APScheduler has four kinds of components: * triggers * job stores * executors * schedulers *Triggers* contain the scheduling logic. Each job has its own trigger which determines when the job should be run next. Beyond their initial configuration, triggers are completely stateless. *Job stores* house the scheduled jobs. The default job store simply keeps the jobs in memory, but others store them in various kinds of databases. A job's data is serialized when it is saved to a persistent job store, and deserialized when it's loaded back from it. Job stores (other than the default one) don't keep the job data in memory, but act as middlemen for saving, loading, updating and searching jobs in the backend. Job stores must never be shared between schedulers. *Executors* are what handle the running of the jobs. They do this typically by submitting the designated callable in a job to a thread or process pool. When the job is done, the executor notifies the scheduler which then emits an appropriate event. *Schedulers* are what bind the rest together. You typically have only one scheduler running in your application. The application developer doesn't normally deal with the job stores, executors or triggers directly. Instead, the scheduler provides the proper interface to handle all those. Configuring the job stores and executors is done through the scheduler, as is adding, modifying and removing jobs. Choosing the right scheduler, job store(s), executor(s) and trigger(s) ---------------------------------------------------------------------- Your choice of scheduler depends mostly on your programming environment and what you'll be using APScheduler for. Here's a quick guide for choosing a scheduler: * :class:`~apscheduler.schedulers.blocking.BlockingScheduler`: use when the scheduler is the only thing running in your process * :class:`~apscheduler.schedulers.background.BackgroundScheduler`: use when you're not using any of the frameworks below, and want the scheduler to run in the background inside your application * :class:`~apscheduler.schedulers.asyncio.AsyncIOScheduler`: use if your application uses the asyncio module * :class:`~apscheduler.schedulers.gevent.GeventScheduler`: use if your application uses gevent * :class:`~apscheduler.schedulers.tornado.TornadoScheduler`: use if you're building a Tornado application * :class:`~apscheduler.schedulers.twisted.TwistedScheduler`: use if you're building a Twisted application * :class:`~apscheduler.schedulers.qt.QtScheduler`: use if you're building a Qt application Simple enough, yes? To pick the appropriate job store, you need to determine whether you need job persistence or not. If you always recreate your jobs at the start of your application, then you can probably go with the default (:class:`~apscheduler.jobstores.memory.MemoryJobStore`). But if you need your jobs to persist over scheduler restarts or application crashes, then your choice usually boils down to what tools are used in your programming environment. If, however, you are in the position to choose freely, then :class:`~apscheduler.jobstores.sqlalchemy.SQLAlchemyJobStore` on a `PostgreSQL `_ backend is the recommended choice due to its strong data integrity protection. Likewise, the choice of executors is usually made for you if you use one of the frameworks above. Otherwise, the default :class:`~apscheduler.executors.pool.ThreadPoolExecutor` should be good enough for most purposes. If your workload involves CPU intensive operations, you should consider using :class:`~apscheduler.executors.pool.ProcessPoolExecutor` instead to make use of multiple CPU cores. You could even use both at once, adding the process pool executor as a secondary executor. When you schedule a job, you need to choose a *trigger* for it. The trigger determines the logic by which the dates/times are calculated when the job will be run. APScheduler comes with three built-in trigger types: * :mod:`~apscheduler.triggers.date`: use when you want to run the job just once at a certain point of time * :mod:`~apscheduler.triggers.interval`: use when you want to run the job at fixed intervals of time * :mod:`~apscheduler.triggers.cron`: use when you want to run the job periodically at certain time(s) of day It is also possible to combine multiple triggers into one which fires either on times agreed on by all the participating triggers, or when any of the triggers would fire. For more information, see the documentation for :mod:`combining triggers `. You can find the plugin names of each job store, executor and trigger type on their respective API documentation pages. .. _scheduler-config: Configuring the scheduler ------------------------- APScheduler provides many different ways to configure the scheduler. You can use a configuration dictionary or you can pass in the options as keyword arguments. You can also instantiate the scheduler first, add jobs and configure the scheduler afterwards. This way you get maximum flexibility for any environment. The full list of scheduler level configuration options can be found on the API reference of the :class:`~apscheduler.schedulers.base.BaseScheduler` class. Scheduler subclasses may also have additional options which are documented on their respective API references. Configuration options for individual job stores and executors can likewise be found on their API reference pages. Let's say you want to run BackgroundScheduler in your application with the default job store and the default executor:: from apscheduler.schedulers.background import BackgroundScheduler scheduler = BackgroundScheduler() # Initialize the rest of the application here, or before the scheduler initialization This will get you a BackgroundScheduler with a MemoryJobStore named "default" and a ThreadPoolExecutor named "default" with a default maximum thread count of 10. Now, suppose you want more. You want to have *two* job stores using *two* executors and you also want to tweak the default values for new jobs and set a different timezone. The following three examples are completely equivalent, and will get you: * a MongoDBJobStore named "mongo" * an SQLAlchemyJobStore named "default" (using SQLite) * a ThreadPoolExecutor named "default", with a worker count of 20 * a ProcessPoolExecutor named "processpool", with a worker count of 5 * UTC as the scheduler's timezone * coalescing turned off for new jobs by default * a default maximum instance limit of 3 for new jobs Method 1:: from pytz import utc from apscheduler.schedulers.background import BackgroundScheduler from apscheduler.jobstores.mongodb import MongoDBJobStore from apscheduler.jobstores.sqlalchemy import SQLAlchemyJobStore from apscheduler.executors.pool import ThreadPoolExecutor, ProcessPoolExecutor jobstores = { 'mongo': MongoDBJobStore(), 'default': SQLAlchemyJobStore(url='sqlite:///jobs.sqlite') } executors = { 'default': ThreadPoolExecutor(20), 'processpool': ProcessPoolExecutor(5) } job_defaults = { 'coalesce': False, 'max_instances': 3 } scheduler = BackgroundScheduler(jobstores=jobstores, executors=executors, job_defaults=job_defaults, timezone=utc) Method 2:: from apscheduler.schedulers.background import BackgroundScheduler # The "apscheduler." prefix is hard coded scheduler = BackgroundScheduler({ 'apscheduler.jobstores.mongo': { 'type': 'mongodb' }, 'apscheduler.jobstores.default': { 'type': 'sqlalchemy', 'url': 'sqlite:///jobs.sqlite' }, 'apscheduler.executors.default': { 'class': 'apscheduler.executors.pool:ThreadPoolExecutor', 'max_workers': '20' }, 'apscheduler.executors.processpool': { 'type': 'processpool', 'max_workers': '5' }, 'apscheduler.job_defaults.coalesce': 'false', 'apscheduler.job_defaults.max_instances': '3', 'apscheduler.timezone': 'UTC', }) Method 3:: from pytz import utc from apscheduler.schedulers.background import BackgroundScheduler from apscheduler.jobstores.sqlalchemy import SQLAlchemyJobStore from apscheduler.executors.pool import ProcessPoolExecutor jobstores = { 'mongo': {'type': 'mongodb'}, 'default': SQLAlchemyJobStore(url='sqlite:///jobs.sqlite') } executors = { 'default': {'type': 'threadpool', 'max_workers': 20}, 'processpool': ProcessPoolExecutor(max_workers=5) } job_defaults = { 'coalesce': False, 'max_instances': 3 } scheduler = BackgroundScheduler() # .. do something else here, maybe add jobs etc. scheduler.configure(jobstores=jobstores, executors=executors, job_defaults=job_defaults, timezone=utc) Starting the scheduler ---------------------- Starting the scheduler is done by simply calling :meth:`~apscheduler.schedulers.base.BaseScheduler.start` on the scheduler. For schedulers other than :class:`~apscheduler.schedulers.blocking.BlockingScheduler`, this call will return immediately and you can continue the initialization process of your application, possibly adding jobs to the scheduler. For BlockingScheduler, you will only want to call :meth:`~apscheduler.schedulers.base.BaseScheduler.start` after you're done with any initialization steps. .. note:: After the scheduler has been started, you can no longer alter its settings. Adding jobs ----------- There are two ways to add jobs to a scheduler: #. by calling :meth:`~apscheduler.schedulers.base.BaseScheduler.add_job` #. by decorating a function with :meth:`~apscheduler.schedulers.base.BaseScheduler.scheduled_job` The first way is the most common way to do it. The second way is mostly a convenience to declare jobs that don't change during the application's run time. The :meth:`~apscheduler.schedulers.base.BaseScheduler.add_job` method returns a :class:`apscheduler.job.Job` instance that you can use to modify or remove the job later. You can schedule jobs on the scheduler **at any time**. If the scheduler is not yet running when the job is added, the job will be scheduled *tentatively* and its first run time will only be computed when the scheduler starts. It is important to note that if you use an executor or job store that serializes the job, it will add a couple requirements on your job: #. The target callable must be globally accessible #. Any arguments to the callable must be serializable Of the builtin job stores, only MemoryJobStore doesn't serialize jobs. Of the builtin executors, only ProcessPoolExecutor will serialize jobs. .. important:: If you schedule jobs in a persistent job store during your application's initialization, you **MUST** define an explicit ID for the job and use ``replace_existing=True`` or you will get a new copy of the job every time your application restarts! .. tip:: To run a job immediately, omit ``trigger`` argument when adding the job. Removing jobs ------------- When you remove a job from the scheduler, it is removed from its associated job store and will not be executed anymore. There are two ways to make this happen: #. by calling :meth:`~apscheduler.schedulers.base.BaseScheduler.remove_job` with the job's ID and job store alias #. by calling :meth:`~apscheduler.job.Job.remove` on the Job instance you got from :meth:`~apscheduler.schedulers.base.BaseScheduler.add_job` The latter method is probably more convenient, but it requires that you store somewhere the :class:`~apscheduler.job.Job` instance you received when adding the job. For jobs scheduled via the :meth:`~apscheduler.schedulers.base.BaseScheduler.scheduled_job`, the first way is the only way. If the job's schedule ends (i.e. its trigger doesn't produce any further run times), it is automatically removed. Example:: job = scheduler.add_job(myfunc, 'interval', minutes=2) job.remove() Same, using an explicit job ID:: scheduler.add_job(myfunc, 'interval', minutes=2, id='my_job_id') scheduler.remove_job('my_job_id') Pausing and resuming jobs ------------------------- You can easily pause and resume jobs through either the :class:`~apscheduler.job.Job` instance or the scheduler itself. When a job is paused, its next run time is cleared and no further run times will be calculated for it until the job is resumed. To pause a job, use either method: * :meth:`apscheduler.job.Job.pause` * :meth:`apscheduler.schedulers.base.BaseScheduler.pause_job` To resume: * :meth:`apscheduler.job.Job.resume` * :meth:`apscheduler.schedulers.base.BaseScheduler.resume_job` Getting a list of scheduled jobs -------------------------------- To get a machine processable list of the scheduled jobs, you can use the :meth:`~apscheduler.schedulers.base.BaseScheduler.get_jobs` method. It will return a list of :class:`~apscheduler.job.Job` instances. If you're only interested in the jobs contained in a particular job store, then give a job store alias as the second argument. As a convenience, you can use the :meth:`~apscheduler.schedulers.base.BaseScheduler.print_jobs` method which will print out a formatted list of jobs, their triggers and next run times. Modifying jobs -------------- You can modify any job attributes by calling either :meth:`apscheduler.job.Job.modify` or :meth:`~apscheduler.schedulers.base.BaseScheduler.modify_job`. You can modify any Job attributes except for ``id``. Example:: job.modify(max_instances=6, name='Alternate name') If you want to reschedule the job -- that is, change its trigger, you can use either :meth:`apscheduler.job.Job.reschedule` or :meth:`~apscheduler.schedulers.base.BaseScheduler.reschedule_job`. These methods construct a new trigger for the job and recalculate its next run time based on the new trigger. Example:: scheduler.reschedule_job('my_job_id', trigger='cron', minute='*/5') Shutting down the scheduler --------------------------- To shut down the scheduler:: scheduler.shutdown() By default, the scheduler shuts down its job stores and executors and waits until all currently executing jobs are finished. If you don't want to wait, you can do:: scheduler.shutdown(wait=False) This will still shut down the job stores and executors but does not wait for any running tasks to complete. Pausing/resuming job processing ------------------------------- It is possible to pause the processing of scheduled jobs:: scheduler.pause() This will cause the scheduler to not wake up until processing is resumed:: scheduler.resume() It is also possible to start the scheduler in paused state, that is, without the first wakeup call:: scheduler.start(paused=True) This is useful when you need to prune unwanted jobs before they have a chance to run. Limiting the number of concurrently executing instances of a job ---------------------------------------------------------------- By default, only one instance of each job is allowed to be run at the same time. This means that if the job is about to be run but the previous run hasn't finished yet, then the latest run is considered a misfire. It is possible to set the maximum number of instances for a particular job that the scheduler will let run concurrently, by using the ``max_instances`` keyword argument when adding the job. .. _missed-job-executions: Missed job executions and coalescing ------------------------------------ Sometimes the scheduler may be unable to execute a scheduled job at the time it was scheduled to run. The most common case is when a job is scheduled in a persistent job store and the scheduler is shut down and restarted after the job was supposed to execute. When this happens, the job is considered to have "misfired". The scheduler will then check each missed execution time against the job's ``misfire_grace_time`` option (which can be set on per-job basis or globally in the scheduler) to see if the execution should still be triggered. This can lead into the job being executed several times in succession. If this behavior is undesirable for your particular use case, it is possible to use ``coalescing`` to roll all these missed executions into one. In other words, if coalescing is enabled for the job and the scheduler sees one or more queued executions for the job, it will only trigger it once. No misfire events will be sent for the "bypassed" runs. .. note:: If the execution of a job is delayed due to no threads or processes being available in the pool, the executor may skip it due to it being run too late (compared to its originally designated run time). If this is likely to happen in your application, you may want to either increase the number of threads/processes in the executor, or adjust the ``misfire_grace_time`` setting to a higher value. .. _scheduler-events: Scheduler events ---------------- It is possible to attach event listeners to the scheduler. Scheduler events are fired on certain occasions, and may carry additional information in them concerning the details of that particular event. It is possible to listen to only particular types of events by giving the appropriate ``mask`` argument to :meth:`~apscheduler.schedulers.base.BaseScheduler.add_listener`, OR'ing the different constants together. The listener callable is called with one argument, the event object. See the documentation for the :mod:`~apscheduler.events` module for specifics on the available events and their attributes. Example:: def my_listener(event): if event.exception: print('The job crashed :(') else: print('The job worked :)') scheduler.add_listener(my_listener, EVENT_JOB_EXECUTED | EVENT_JOB_ERROR) Exporting and importing jobs ---------------------------- If you need to migrate your jobs to a different job store, you need to first export the jobs to a JSON document and then import them back again. Here's an example for exporting the jobs from all the scheduler's job stores:: # The scheduler has to be initialized, but can be paused scheduler.export_jobs("/tmp/jobs.json") Then you will import the jobs in the destination scheduler:: # Again, the scheduler needs to be either running or paused scheduler.import_jobs("/tmp/jobs.json") Both methods take a ``jobstore`` argument which can limit the source job store (on export), or specify a non-default target job store (on import). The first argument for both methods can either be an open file, a :class:`~pathlib.Path` or a file system path as a string. .. _troubleshooting: Troubleshooting --------------- If the scheduler isn't working as expected, it will be helpful to increase the logging level of the ``apscheduler`` logger to the ``DEBUG`` level. If you do not yet have logging enabled in the first place, you can do this:: import logging logging.basicConfig() logging.getLogger('apscheduler').setLevel(logging.DEBUG) This should provide lots of useful information about what's going on inside the scheduler. Also make sure that you check the :doc:`faq` section to see if your problem already has a solution. Reporting bugs -------------- .. include:: ../README.rst :start-after: Reporting bugs --------------