Using Celery and MQTT to launch long running tasks with feedback to the user

El Niño
4 min readOct 9, 2017

--

While doing work for VRM (Victron Remote Management) platform I worked with an interesting combination of tools to accomplish launching long running tasks with feedback to the user.

A few common ways to handle long(er) running tasks:

  1. Starting a long running task by launching it with an asynchronous request that returns when the task is complete.
  2. Option 1 but sending the request through a websocket and receiving status updates through that same websocket.
  3. Launching the task with a request that creates a job to be handled by a worker async which returns upon adding the job to the queue.
  4. Option 3 with status updates by saving/updating the status in a database and having the browser poll for the current status.

Some of these methods work fine for shorter tasks, tasks that are less sensitive to disruption, but none of the above work for longer tasks with status updates without polling in an effectively non-disruptable way.

A way to achieve the above using mostly the same tools as the options described above is as follows:

Celery

Celery is a task queue, basically celery allows you to execute tasks asynchronously (or synchronously). You can submit tasks, Celery will communicate to the connected Celery workers that a task is available and one of the workers takes the task out of the queue and starts executing the task.
Each task has an id and the result of the task gets placed by the worker in the backend in use by celery (redis in this case). The result can then be fetched from celery/redis if required.

Redis

Redis is a key value store, it is often used as cache backend because of high performance and seeing as this is already available on the server running the VRM backend it is an easy choice to go for Redis instead of RabbitMQ which is also commonly used with Celery. Celery uses redis to distribute the tasks to the workers and to return the result of a task.

MQTT

MQTT is a lightweight messaging protocol in which you are able to subscribe and publish to paths. The exchange of messages is facilitated by a (message) broker. Publishers connect to the broker and send messages to paths, subscribers connect to the broker and subscribe to paths. The subscribers to a certain path will receive a message when a message is published to that path. Using MQTT in a browser is usually done using a websocket connection to a broker. The MQTT broker in use is Mosquitto exposed over a websocket using websockify, another popular broker for MQTT is HiveMQ.

Requirements and conclusion

The only requirement for the backend/API is that you can submit tasks to Celery with it. You can implement this yourself, but chances are that there is an existing library for the programming language in use. The VRM backend is PHP, so to submit tasks we use the celery-php library.

There is only one requirement for the web application backend, which is that it should be able to submit tasks to celery. With that covered an overview of what happens in the graph above:

  1. Backend creates a job for the task the users wants to run and returns a message to the browser it did so successfully.
  2. Celery worker executes said task and sends status updates out to a specific path over MQTT.
  3. Browser is connected to the MQTT broker and is subscribed to the path where status updates will be sent.

This way the task is launched with a short request, because it will return after launching the task instead of executing it. Status updates are send by a Celery worker that could be running on a different server, through the use of MQTT the browser will receive the status updates regardless. If the user reloads the page and a new status messages is received in the browser it could still show the current status of the task

What is described above is implemented for a system to update the firmware of devices from VRM, there is no control over the process after it is launched which is desirable in this case. You don’t want a user to be able to interrupt the firmware updating progress. A Celery worker is responsible for executing the firmware update which means that it is outside of the web requests/PHP part of the application.

By Maurits. As a backend programmer Maurits makes sure the non-visible side of applications functions perfectly.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

El Niño
El Niño

Written by El Niño

http://www.elnino.tech. Digital Development Agency building tailor made solutions, ensuring success by making it measurable.

Responses (1)

Write a response