Giter Site home page Giter Site logo

vishnuixm / celerysqs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from cacois/celerysqs

0.0 0.0 0.0 5 KB

Some example code using Python's celery and celery beat with Amazon SQS as a broker and SQLAlchemy to store the task schedules

License: MIT License

Python 100.00%

celerysqs's Introduction

celerysqs

Some example code using celery and celery beat with SQS as a broker and SQLAlchemy to store the task schedules

SQLAlchemy scheduler adapted from https://github.com/tuomur/celery_sqlalchemy_scheduler

Step 1: Copy settings.cfg.example into settings.cfg

Note: all steps should be performed from outside the celerysqs directory

$ mv celerysqs/settings.cfg.example celerysqs/settings.cfg

Update this file to contain your aws_access_key_id and aws_secret_access_key.

Step 2: Run main.py to insert schedules into the db

$ python -m celerysqs.main

The example is currently configured to write to a local sqlite db file named app.db. This can be easily reconfigured to meet your needs. By default, we are inserting a single task to run the add() function every 60 seconds.

Step 3: Run a worker

$ celery -A celerysqs.tasks worker --loglevel=info

This worker will sit and wait for tasks to come onto the SQS queue, and will execute them when they appear.

Step 4: Run the Scheduler

$ celery -A celerysqs.tasks beat -S celerysqs.sqlalchemy_scheduler.DatabaseScheduler

celerysqs's People

Contributors

cacois avatar

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.