-
Using taskiq 0.11.7 and taskiq-redis 1.0.2, i have this deprecation warning showing up:
```
/.venv/lib/python3.10/site-packages/taskiq_redis/redis_broker.py:49: TaskiqDeprecationWarning: Setting r…
-
I use taskiq with ListQueueBroker (backed by reddis).
In the log, I see a lots of worker process interrupted:
```
2024-10-23 22:22:38.363 | INFO | trace_id=0 | span_id=0 | logging:callHandle…
-
taskiq_demo.py如下
```python
import asyncio
from taskiq_redis import ListQueueBroker, RedisAsyncResultBackend
redis_dsn = 'xxxx'
broker = ListQueueBroker(redis_dsn, queue_name='taskiq:req').wit…
-
Hi,
aio-pika supports params when declare exchange. I'd like to use these params
> path: aio_pika.abc.AbstractRobustChannel.declare_exchange
https://github.com/taskiq-python/taskiq-aio-…
-
When starting scheduler, it doesn't import application and doesn't set dependency context.
Original issue: https://github.com/taskiq-python/taskiq/issues/142
-
After initializing blank project with Taskiq Mypy gives an validation error
```python
Format with Black........................................................Passed
isort..........................…
-
Like this, I just give a simple example, or there may be other more elegant ways to create multiple queues.
```py
from taskiq_aio_pika import AioPikaBroker
broker = AioPikaBroker(queue_name="q1")…
-
Hello
In run_scheduler_loop function in next_minute calculation if datetime.now() = 17:22:59.55555 and we replace seconds and microseconds with 0 and add timedelta(minutes=1) we get next_minute=17…
-
I can't seem to find anything about this in the docs. I'd like to assign a job (not a `task`) a unique name, so that if I were to try to `kiq` a job with the same parameters twice, the broker would ig…
-
I'm using taskiq_redis to distribute the tasks to multiple gpus.
I wanna know if all the tasks are completed or not.
Please let me know how I can this info.
Thanks.