Skip to main content

A Django app to easily use AWS Simple Queue Service (SQS) with S3 for messages up to 2 GB.

Project description

django-sqs-extended-client/README.rst

AWS SQS Extended Client Library for Django

To manage large Amazon Simple Queue Service (Amazon SQS) messages, you can use Amazon Simple Storage Service (Amazon S3) and the Amazon SQS Extended Client Library for Django. This is especially useful for storing and consuming messages up to 2 GB. Unless your application requires repeatedly creating queues and leaving them inactive or storing large amounts of data in your queues, consider using Amazon S3 for storing your data.

Quick start

  1. Add “django_sqs_extended_client” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'django_sqs_extended_client',
    ]
  2. On AWS SQS create your Queue and subscribe it to a SNS Topic. After that edit the subscription in “Subscription filter policy” like this:

    {
      "event_type": [
        "YOUR_SNS_SUBSCRIPTION_FILTER_EVENT_TYPE_1"
      ]
    }
  3. Include some additional django settings like this:

    # AWS SNS KEYS
    AWS_ACCESS_KEY_ID = 'YOUR_AWS_ACCESS_KEY_ID'
    AWS_SECRET_ACCESS_KEY = 'YOUR_AWS_SECRET_ACCESS_KEY'
    AWS_DEFAULT_REGION = 'YOUR_AWS_DEFAULT_REGION'
    AWS_S3_QUEUE_STORAGE_NAME = 'YOUR_AWS_S3_QUEUE_STORAGE_NAME'
    AWS_SNS_TOPIC = 'YOUR_AWS_SNS_TOPIC'
    
    # AWS EVENTS:
    SNS_EVENTS = {
        'EVENT_TYPE_1': 'YOUR_SNS_SUBSCRIPTION_FILTER_EVENT_TYPE_1',
        'EVENT_TYPE_2': 'YOUR_SNS_SUBSCRIPTION_FILTER_EVENT_TYPE_2',
        ...
    }
    
    SQS_EVENTS = {
        'EVENT_TYPE_3': {
            'sns_event_filter': 'YOUR_SNS_SUBSCRIPTION_FILTER_EVENT_TYPE_3',
            'sqs_queue_url': 'YOUR_QUEUE_URL_FOR_EVENT_3',
            'event_processor': 'PATH_OF_THE_CLASS_PROCESSOR_FOR_EVENT_3'
        },
        'EVENT_TYPE_4': {
            'sns_event_filter': 'YOUR_SNS_SUBSCRIPTION_FILTER_EVENT_TYPE_4',
            'sqs_queue_url': 'YOUR_QUEUE_URL_FOR_EVENT_4',
            'event_processor': 'PATH_OF_THE_CLASS_PROCESSOR_FOR_EVENT_4'
        },
        ...
    }
  4. Add one cron for each SQS event to process. Run it every minute with a lock:

    * * * * * python manage.py process_queue EVENT_TYPE_3
    * * * * * python manage.py process_queue EVENT_TYPE_4

You can use a library as https://pypi.org/project/django-chroniker/ for an easier way to manage crons and lockers

E.g:

In django_project/django_project/settings.py:

# AWS SNS KEYS
AWS_ACCESS_KEY_ID = 'ABCDEFGHIJKLMNOPQRSTUWXYZ'
AWS_SECRET_ACCESS_KEY = '74gfq83hg83qh5erg/G&Cwd23^VFBfvV^vvkf7g77'
AWS_DEFAULT_REGION = 'us-east-1'
AWS_S3_QUEUE_STORAGE_NAME = 'sns-queues'
AWS_SNS_TOPIC = 'arn:aws:sns:us-east-1:123456789:domainEvents'


# AWS EVENTS:

SNS_EVENTS = {
    'PAYMENT_REGISTERED': 'this-service.event.payment.registered'
}

SQS_EVENTS = {
    'BOOKING_SERVICE__ROOM_BOOKED': {
        'sns_event_filter': 'booking-service.event.room.booked',
        'sqs_queue_url': 'https://sqs.us-east-1.amazonaws.com/123456789/booking-service--room-booked',
        'event_processor': 'your_project.event_processors.room_booked.RoomBooked'
    },
}

Cron:

* * * * * python manage.py process_queue BOOKING_SERVICE__ROOM_BOOKED

Usage

In the sender service:

Dispatch your data using EventDispatcher like this:

from django_sqs_extended_client.event.event_dispatcher import EventDispatcher

event_dispatcher = EventDispatcher()
    event_dispatcher.dispatch(
        event_name=settings.SNS_EVENTS['PAYMENT_REGISTERED'],
        event_data=your_data,
    )

event_data accept list, dict and row content data as xml, csv, json.

In the receiver service:

For each settings.SQS_EVENTS, add a class which extends django_sqs_extended_client.event_processor.EventProcessor. This Class accepts the data in the constructor and must have the method execute() where you can add the code to manage your data. Use the same paths of the ‘event_processor’ in settings.SQS_EVENTS like this:

from django_sqs_extended_client.event_processor.event_processor import EventProcessor

class ImageCreated(EventProcessor):

    def __init__(self, data):
        super().__init__(data=data)

    def execute(self):
        # your code here
        pass

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-sqs-extended-client-1.0.0.tar.gz (10.1 kB view details)

Uploaded Source

File details

Details for the file django-sqs-extended-client-1.0.0.tar.gz.

File metadata

  • Download URL: django-sqs-extended-client-1.0.0.tar.gz
  • Upload date:
  • Size: 10.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.6

File hashes

Hashes for django-sqs-extended-client-1.0.0.tar.gz
Algorithm Hash digest
SHA256 d20db18ab75965b74950775b8c8eabfe7ce58db51d7aa64413b98595129f29c9
MD5 5b42942e61acc129a6464c5d1dfe8226
BLAKE2b-256 1a6fddfa17f688b580ab8fd878d863b57f5a6d14f39bb56a057b258b6639d37e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page