celery_longterm_scheduler
celery_longterm_scheduler copied to clipboard
Schedules celery tasks to run in the potentially far future
Hi team! thanks for this great package. We are trying the package and we faced a small issue when using it with a Redis encrypted (TLS) transport. The Redis connection...
I am trying to schedule tasks for the future on two projects **using the same Redis database** as a backend. These projects have different names and I noticed that the...
I would find it useful if Task was overridden to handle long countdowns (configurable) as well as ETAs. Would you be open to a PR? I believe this is particularly...
I have a trouble with using your library. I've added config for celery as mentioned in documentation: ```app.conf.longterm_scheduler_backend = 'redis://redis:6739/1'``` But got an error: ``` Traceback (most recent call last):...
Can we update readme explicitly with supported versions of python/celery? Does this work with latest celery version (4.4.7) and python 3.8?
Normal Celery tasks support using `kombu` to register object types to serialize/deserialize automatically: ```python from kombu.utils.json import register_type from django.db.models import Model from django.apps import apps # Allow serialization of...