SQS Broker for TaskIQ
Project description
TaskIQ SQS Broker
Mostly generic SQS async broker for TaskIQ.
Expiration
If you set the sqs_expiry
label to a unix timestamp, the message will be discarded if the worker receives it after that time.
import asyncio
from taskiq_sqs import SQSBroker
broker = SQSBroker("http://sqs.us-east-1.localhost.localstack.cloud:4566/000000000000/my-queue")
@broker.task
async def add_one(value: int) -> int:
return value + 1
async def main() -> None:
# Never forget to call startup in the beginning.
await broker.startup()
# Send the task to the broker.
task = await add_one.kiq(1)
# Wait for the result. (result backend must be configured)
result = await task.wait_result(timeout=2)
print(f"Task execution took: {result.execution_time} seconds.")
if not result.is_err:
print(f"Returned value: {result.return_value}")
else:
print("Error found while executing task.")
await broker.shutdown()
if __name__ == "__main__":
asyncio.run(main())
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
taskiq_sqs-0.0.9.tar.gz
(16.7 kB
view details)
Built Distribution
File details
Details for the file taskiq_sqs-0.0.9.tar.gz
.
File metadata
- Download URL: taskiq_sqs-0.0.9.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b867bee4d5493df3e4ecebc69a3cc4c2914654221f231ef18528e614b582360 |
|
MD5 | e21d3ace5f0b3f825c31b2776e1756cc |
|
BLAKE2b-256 | 6a5effb2667b234bf0a131c33770f50b07e543244fdfc0ece9a6fafbff530a61 |
File details
Details for the file taskiq_sqs-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: taskiq_sqs-0.0.9-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90b2a5ca49dcc9de0bf8f06475db2ead7506c61b4aec437b29abf6bd8c87c8ee |
|
MD5 | 1b9128205ca9b01ef7690658a80ee8b9 |
|
BLAKE2b-256 | cf4cec860c9e5419968a289fe32fd633e7aaccedcc34111c254e7ae59b1ec396 |