Learn Django Celery - Intro to scheduling Tasks - Part 3

preview_player
Показать описание
In this Django tut exploring and using Celery I take you through scheduling and monitoring tasks with Django, Celery, Beat and Flower. We Install – get started with Flower (Windows), Install django-celery-beat and start to explore how to configure scheduled tasks.

00:00 Introduction
02:57 Install Flower
05:22 Install beat
06:09 Build periodic task in database scheduler interface
11:26 Starting the Database Scheduler in beat
12:40 Example task schedule backup a database table

👍 Django Celery Series:

Code Repository - Part 3:

SUBSCRIBE to get more free tutorials, courses and code snippets!

Follow us on Facebook

Follow use on Twitter:
Рекомендации по теме
Комментарии
Автор

In under an hour, you taught me how to automate my programming. Subscribed + thank you so much!

jsr
Автор

you don't have even idea how awesome u r.. thankyou very much for existing.. thankyou very much for uploading this.. it literally saved my life ...

simarjitkaur
Автор

Excellent video. thanks for explaining in such a simple way

shreymittal
Автор

Your lessons are still helpful! Thank you!

Jumalungma-lsrz
Автор

Nice job, I would love it if you could do a video for deploying to railway using Django, celery, celery beat and redis

specialnwachukwu
Автор

hi...tnx for toturial series....please upload new videos <3

amirhosseinrahimi
Автор

are tasks in "CELERY_BEAT_SCHEDULE" equivalent to tasks in admin's page "Periodic tasks"?

valett
Автор

Thank you for the video. Could you please let me know how to run the celery worker and django celery beat when the project starts?

rhawool
Автор

Great video !! I am having a little issue though. While adding periodic task in Django Administration page, only one task is coming is Task(registered) option. What can be the issue ?

rithikraj
Автор

Thank you, very helpful tutorial video.

siranjeevik
Автор

excellent videos.... did you stopped the celery series also I'm not seeing the playlist. could you please make a playlist

k.m.jiaulislamjibon
Автор

hey. Thanks, For this video, can we use celery to build an activity stream on our website with Celery

johnnwabuforudemezue
Автор

if your addition task is not shown in admin page, add these in the root __init__.py file

from __future__ import absolute_import, unicode_literals

from .celery import app as celery_app

__all__=('celery_app', )

sabarinathjv
Автор

Excellent video. What do you think if we use celery beat + redis ?

budi
Автор

Is there anyway to send an email base on a datetime field?I have model that has a Datetime field. I want to send an email 2 days before the date of that field. I can't find anything, celery, celery beat, crontab can't help. I'm getting mad

XeUs
Автор

add task is not showing as register task why only send mail is showing?

practicalbong
Автор

If we are scheduling sending emails tasks then what should be the format of the args when we pass them is it list or Dict?

sushantnerkar
Автор

Does flower display the tasks results or just the tasks ? I see some repeated rows but with different statuses. Also is there a way to use flower or any other tool to check the celery queue as tasks are put in and out ?

angelleal
Автор

Can we use this for sending emails every 24 hours for example

mohamedelmeziani
Автор

flower -A core --port=5555
is not working for me facing "ImportError: cannot import name 'Command' from 'celery.bin.base'

tareqmahmud