SQS Workers.
Project description
SQS Workers
===========
How can I use it?
-----------------
Unless you are the part of the [Doist development team](https://github.com/orgs/Doist/people),
you most likely don't need it. It's something opinionated, built out of our own internal needs
and probably provides little value for outside developers.
Queue processors are in abundance (see http://queues.io/ for examples), and
there is no shortage of SQS queue processors on
[PyPI](https://pypi-hypernode.com/search/?q=SQS), so please don't put your high hopes
on this particular implementation
Got it, but how can I start using it anyway?
--------------------------------------------
Install the package with
```bash
pip install sqs-workers
```
Configure your boto3 library to provide access requisites for your installation
with [something like this](https://boto3.readthedocs.io/en/latest/guide/quickstart.html#configuration):
```bash
aws configure
```
Don't forget to set your preferred AWS region.
Then you will start managing two systems (most likely, from the same codebase):
one of them adds messages to the queue and another one executes them.
```python
from sqs_workers import SQSEnv
# This environment will use AWS requisites from ~/.aws/ directory
sqs = SQSEnv()
# Create a new queue.
# Note that you can use AWS web interface for the same action as well, the
# web interface provides more options. You only need to do it once.
sqs.create_standard_queue('emails')
# Register a queue processor
@sqs.processor('emails', 'send_email')
def send_email(to, subject, body):
print(f"Sending email {subject} to {to}")
```
Then there are two ways of adding tasks to the queue. Classic (aka "explicit"):
```python
sqs.add_job(
'emails', 'send_email', to='user@examile.com', subject='Hello world', body='hello world')
```
And the "Celery way" (we mimic the Celery API to some extent)
```python
send_email.delay(to='user@examile.com', subject='Hello world', body='hello world')
```
To process the queue you have to run workers manually. Create a new file which
will contain the definition of the sqs object and register all processors (most likely,
by importing necessary modules from your project), and then run SQS
```python
from sqs_workers import SQSEnv
sqs = SQSEnv()
...
sqs.process_queue('emails')
```
In production we usually don't handle multiple queues in the same process,
but for the development environment it's easier to tackle with all the queues
at once with
```python
sqs.process_queues()
```
Serialization
-------------
There are two serializers: json and pickle.
Exception processing
--------------------
If task processing ended up with an exception, the error is logged and the
task is returned back to the queue after a while. The exact behavior is defined
by queue settings.
Batch processing
----------------
Instead of using `sqs.processor` decorator you can use `sqs.batch_processor`.
In this case the function must accept parameter "messages" containing
the list of dicts.
Why it depends on werkzeug? 😱
------------------------------
The only reason is [werkzeug.utils.validate_arguments](http://werkzeug.pocoo.org/docs/dev/utils/#werkzeug.utils.validate_arguments)
which we love and we are lazy enough to move it to this codebase.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
sqs-workers-0.1.1.tar.gz
(10.5 kB
view details)
Built Distributions
File details
Details for the file sqs-workers-0.1.1.tar.gz
.
File metadata
- Download URL: sqs-workers-0.1.1.tar.gz
- Upload date:
- Size: 10.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65e084988c01ed5eb4fe51d96583588f3b9069b7c8d2c05b99b510f12a81ddd0 |
|
MD5 | 24565bf6bfc6c4f3162c099dd9242d93 |
|
BLAKE2b-256 | 92c4ee576e56abd33018f64e9ffd73a7359d02ad00e3c1e3884b8abfabbe0de5 |
File details
Details for the file sqs_workers-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: sqs_workers-0.1.1-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b1a747813c4a4ff5b7b84c9f455c374ad13c6eaa0e79fbf95142e90ef1e01c5 |
|
MD5 | 3088a240d910a45dbdb20f724dc5c3ca |
|
BLAKE2b-256 | 590bbf20185f310abe43dd27015a75316158660486a5279e3b0c42cfdfa90013 |
File details
Details for the file sqs_workers-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: sqs_workers-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/28.8.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 243ca27f544b333dbc9efc46d174d8fb35fe881bb7aa85cf96a1c89d1640e1f7 |
|
MD5 | 73071660cb1cda17c44e1dae01c4b2b5 |
|
BLAKE2b-256 | f6288186c57a7d4457763f47200fc670c65ec8652e12dd08216abaa619753c9e |