Coder Social home page Coder Social logo

Running scheduled jobs about channels HOT 12 CLOSED

django avatar django commented on July 1, 2024 7
Running scheduled jobs

from channels.

Comments (12)

mattrasband avatar mattrasband commented on July 1, 2024 7

For anyone else coming here and not being sure where to start (like me), a quick example:

# settings.py
CHANNEL_LAYERS = {
    # This is the channel layer id, you can have a bunch if you want
    'default': {
        'BACKEND': 'asgi_redis.RedisChannelLayer',
        'CONFIG': {
            'hosts': [os.environ.get('REDIS_URL', 'redis://localhost:6379')],
        },
        # this defines the router for the layer, e.g. the definitions of channels and their handlers
        'ROUTING': 'app.routing.channel_routing',  
    }
}

# app/routing.py
channel_routing = {
    # You can name your channel anything you want, you probably see 'websocket.*' in most tutorials.
    'your_channel_name': lambda x: print('Channel Triggered Event!'),
}

# ./manage.py shell
from channels import Channel, channel_layers

# default here matches your layer name (from settings.py) that can delegate to your_channel_name
c = Channel('your_channel_name', channel_layer=channel_layers['default'])
c.send({})

Adding a command is pretty simple, see here and then you can just call ./manage.py commandname from cron

from channels.

andrewgodwin avatar andrewgodwin commented on July 1, 2024 3

For now, I recommend writing a management command that sends the signals onto the channels, and calling that from cron.

from channels.

andrewgodwin avatar andrewgodwin commented on July 1, 2024

Yes, the intention is to have some sort of command that can push messages onto channels periodically. In the meantime, I suggest writing a custom management command that does this and calling it using cron.

from channels.

erikash avatar erikash commented on July 1, 2024

Thanks, sounds great

from channels.

avayo avatar avayo commented on July 1, 2024

Hello Andrew. Thank you for the great project!
Can you (or someone else) suggest the best way to send signals to channels via cron?

from channels.

andrewgodwin avatar andrewgodwin commented on July 1, 2024

Yup, that's a great example - thanks @mrasband! I'll see if I can work stuff for calling from cron into the docs - it also looks like we're going to have some work start on a scheduled task interface server soon (similar to celerybeat), which might be better if you want things very frequently or can't set cron tasks.

from channels.

mattrasband avatar mattrasband commented on July 1, 2024

Thank you @andrewgodwin for the awesome work, this has helped swing me back to using Django more :)

from channels.

andrewgodwin avatar andrewgodwin commented on July 1, 2024

I believe @jacobian was looking into it, but I don't know what sort of progress he's made, or if he's found the time to start yet.

from channels.

ssteinerx avatar ssteinerx commented on July 1, 2024

You can do it in Twisted in three lines:

from twisted.internet.task import LoopingCall
looper = LoopingCall(send_some_message_function)
looper.start(1)

looper.start(1) will call the function send_some_message_function once every second.

from channels.

ssteinerx avatar ssteinerx commented on July 1, 2024

looper.stop()

docs

from channels.

JohnDoee avatar JohnDoee commented on July 1, 2024

I went ahead and created a thin wrapper around apscheduler add_job command that'll send a message back on a specified channel when triggered in my own asgi implementation.

It would be simple to squeeze it into Daphne too and solves most, if not all, delayed-call / scheduling issues.

from channels.

andrewgodwin avatar andrewgodwin commented on July 1, 2024

Closing this as there's delay for channels 1 and in channels 2 you can just use asyncio stuff.

from channels.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.