Skip to content Skip to sidebar Skip to footer

Is It Possible To Use Django-celery-beat With Django-tenant?

I am using celery for scheduling tasks. So far everything was fine, including hosted on AWS. However, I decided to transform my single application to multi tenant, using django-ten

Solution 1:

You should extend celery Task implementation and inject the db_schema and use it instead

But it would be also OK not to reinvent the wheel and use https://github.com/maciej-gol/tenant-schemas-celery

Post a Comment for "Is It Possible To Use Django-celery-beat With Django-tenant?"