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.5.tar.gz
(16.4 kB
view details)
Built Distribution
File details
Details for the file taskiq_sqs-0.0.5.tar.gz
.
File metadata
- Download URL: taskiq_sqs-0.0.5.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fa2861c86e29b94c99dc99f77ef0d8d0811f66869fd013fc4f3ae45debdaf8c7 |
|
MD5 | b2fa9d2d761b5e427243368da93f73b9 |
|
BLAKE2b-256 | 7b43019796e9289379c3774ee78240483af1f4c6ea975cb8996356531b625cd9 |
File details
Details for the file taskiq_sqs-0.0.5-py3-none-any.whl
.
File metadata
- Download URL: taskiq_sqs-0.0.5-py3-none-any.whl
- Upload date:
- Size: 12.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfb5defee95d591b66413acb2af062351dfa38904d7a5d50a517b9d9141efc1a |
|
MD5 | 98ada639811f750c21cc7bf3c3862de2 |
|
BLAKE2b-256 | 949f7be3422a3dc401f0f41f6be4a90bc16d78960806235cdb69e2378b211f8b |