Skip to main content

awscli plugin to treat SQS queues more like files

Project description

awscli-sqsall

awscli plugin to treat SQS queues more like files, with receive-all-messages and send-all-messages.

Quickstart

receive-all-messages dumps all messages to a files. send-all-messages sends all file lines as messages to a queue. FIFO queues are supported.

You should be able to do something like:

aws sqs receive-all-messages --queue my-dlq \
| sed '/some fault/d' \
| aws sqs send-all-messages --queue my-queue

Since receive-all-messages doesn't communicate with send-all-messages, and just deletes the message after printing, you might want to keep a backup. Try this instead:

aws sqs receive-all-messages --queue my-dlq \
| tee safe_place \
| sed '/some fault/d' \
| aws sqs send-all-messages --queue my-queue

Check the commands' help for more details.

Installing

pip install awscli-sqsall
aws configure set plugins.sqsall sqsall

Releasing

It happes on tag. Check the GitHub Actions.

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

awscli-sqsall-1.0.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

awscli_sqsall-1.0.2-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

Supported by

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