Giter VIP home page Giter VIP logo

django-celery-sqs's Introduction

Celery-SQS

A sample Django App that shows how to use Celery with Amazon SQS as the Broker.

Quick how to

  • clone this repo
  • create a virtualenv & install requirements
  • NOTE python 3 is required
$> mkvirtualenv -p `which python3` celery-sqs
$> pip install -r requirements.txt
  • Add celerysqs/secret.py with the following template
    • NOTE: the access/secret keys must have both IAM Policies listed below attached
KEY = 'some secret key'  # for Django

SQS = {
    'access_key': 'your aws_access_key',
    'secret_key': 'your aws_secret_key',
}
  • run the server

    $> DJANGO_SETTINGS_MODULE=celerysqs.conf.aws python manage.py runserver
  • run the celery worker

    $> DJANGO_SETTINGS_MODULE=celerysqs.conf.aws celery worker -A celerysqs --concurrency=1 -l info
  • queue some tasks

    $> ./scripts/curls.sh

IAM Policy Requirements

NOTE: Both are required

ListQueues (*)

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Stmt1234567890000",
            "Effect": "Allow",
            "Action": [
                "sqs:ListQueues"
            ],
            "Resource": [
                "*"
            ]
        }
    ]
}

CRUD (prefix-)

NOTE: replace {region} and {prefix} with your amazon region and desired prefix

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "Stmt1234567890000",
            "Effect": "Allow",
            "Action": [
                "sqs:ChangeMessageVisibility",
                "sqs:CreateQueue",
                "sqs:DeleteMessage",
                "sqs:DeleteQueue",
                "sqs:GetQueueAttributes",
                "sqs:GetQueueUrl",
                "sqs:ReceiveMessage",
                "sqs:SendMessage",
                "sqs:SetQueueAttributes"
            ],
            "Resource": [
                "arn:aws:sqs:{region}:*:{prefix}-*"
            ]
        }
    ]
}

django-celery-sqs's People

Contributors

dependabot[bot] avatar marz619 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.