Answer the question
In order to leave comments, you need to log in
Why do you need celery?
So, if we take dry information from the manuals, we get the definition:
Celery is nothing more than a distributed job queue implemented in Python.
Answer the question
In order to leave comments, you need to log in
For example, a video conversion
job queue for a Django web application.
, while the first video file will be converted for 5 minutes, after that it will be marked in the database as is_converted (converted) and the command will end there. After a minute, cron will run the command again to convert the next file.
But in 5 minutes the file will not be marked as converted yet, so cron will create 4-5 processes in 5 minutes that will convert the same file.
Okay, then at the start of the conversion, we will immediately mark the file as convertible so that other processes take other files.
But what happens if the process crashes? Mark the start time of the conversion in the database and if more than n hours have passed, convert again - so-so solution.
And what if users upload 10 files, each of which takes 30 minutes to convert? In 10-11 minutes, 10 converting video processes will be running on the server. Heavy load on the server. You can create a table in the database that notes how many files are being converted at the moment.
When we decide to use cron for long running tasks, we have to deal with a number of problems.
Frameworks are worth using due to the fact that they create a unified environment that everyone who reads the documentation can understand. You don't write documentation for your decision. Frameworks provide basic and boring code that no one likes to write.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question