From a2c9f666b54b0b666aa16ea4e2de9a48d25715f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Mon, 25 Mar 2019 23:47:25 +0400 Subject: [PATCH] :memo: Add note about Celery in background tasks --- docs/tutorial/background-tasks.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/tutorial/background-tasks.md b/docs/tutorial/background-tasks.md index 5764dc952..2181497e3 100644 --- a/docs/tutorial/background-tasks.md +++ b/docs/tutorial/background-tasks.md @@ -81,6 +81,16 @@ It's still possible to use `BackgroundTask` alone in FastAPI, but you have to cr You can see more details in Starlette's official docs for Background Tasks. +## Caveat + +If you need to perform heavy background computation and you don't necessarily need it to be run by the same process (for example, you don't need to share memory, variables, etc), you might benefit from using other bigger tools like Celery. + +They tend to require more complex configurations, a message/job queue manager, like RabbitMQ or Redis, but they allow you to run background tasks in multiple processes, and especially, in multiple servers. + +To see an example, check the Project Generators, they all include Celery already configured. + +But if you need to access variables and objects from the same **FastAPI** app, or you need to perform small background tasks (like sending an email notification), you can simply just use `BackgroundTasks`. + ## Recap Import and use `BackgroundTasks` with parameters in *path operation functions* and dependencies to add background tasks.