Our CTO Kamal Mustafa presented the topic of building a multi-tenant task queue with Python and PostgreSQL at Pycon Indonesia 2021.
Task queue is an important part of web applications as it allows executing long-running tasks without affecting the user’s request and response flow. Multi-tenant support allows a fair distribution of tasks among users and can be tricky to find. We can build one using PostgreSQL and Python.