Vivekananda_session4_4VP20CS069_Rahul#4
Open
Rahul-H-Raj wants to merge 1 commit intoUniCourt:mainfrom
Open
Conversation
anushds
reviewed
Oct 15, 2023
| os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'myworld.settings') | ||
|
|
||
| app = Celery('myworld') | ||
|
|
There was a problem hiding this comment.
@Rahul-H-Raj can you give me usecases of celery?
Author
There was a problem hiding this comment.
@anushds Some of the use cases of Celery are:
- Task scheduling and execution: Celery can be used to schedule tasks to run at specific times or on recurring schedules. This is useful for automating periodic tasks like data backups, database maintenance, and regular data updates
- Parallel Processing: It can be used to distribute tasks across multiple worker nodes so that it is beneficial for tasks that can be parallelized, such as web scraping, data processing, and rendering
- Scalability for handling large workloads: Celery makes it easier to scale by adding more worker nodes to handle increasing tasks.
- Performing long-running tasks: Celery can be used to perform long-running tasks, such as processing large datasets or generating reports, in the background.
- Real-time Data Processing: Celery can be used for real-time data processing, such as handling live data streams, event processing, and real-time analytics. It can process data as it arrives, making it valuable in scenarios like monitoring and reporting.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.