Pavel Kirilin

Results 231 comments of Pavel Kirilin
trafficstars

Let's convert this issue to general documentation update. Because we have some other features that were not yet officially announced. Here's list of such topics to cover: - [ ]...

Hi, @ChronoDi. I wrote simple example program with your setup and couldn't reproduce the issue. Seems like you have two schedulers who send tasks. ```python import asyncio import logging from...

If you want to have delayed tasks, I'd suggest you to use scheduler and schedule task by time. The scheduler is compatible with any broker but it should run as...

No, you're correct. It will take up to minute for a default scheduler to send a task. If you want to add delay for few seconds I'd ask you to...

There are plans to implement it differently. There were some attempts. The main idea of another approach is to not give just a sleep function, but an ability to decrease...

Hi!Thought all darwin problems were fixed in https://github.com/taskiq-python/taskiq/commit/4f9f1ae2f2b5181850fa85672e82517070d8ae13. I need to take a deeper look at ddtrace. Also, can you please provide me with information about your machine?

@MuriloScarpaSitonio, hi. I was unable to test your case on macos, but can you please try changing this [line](https://github.com/taskiq-python/taskiq/blob/8ac528147a18dd34b25f6713e70cbd72375e532b/taskiq/cli/worker/run.py#L164) to ```python set_start_method("fork", force=True) ``` Because on linux I couldn't reproduce...

@nickdichev-firework Did you update you taskiq?

Yesterday I made changes. Today I published a new release. Please try version https://github.com/taskiq-python/taskiq/releases/tag/0.8.3. The problem with registries is that it shows only taskiq's metrics. If user wants to add...

Since we only have one master process that maintains children processes. You can get the id of it by calling [os.getppid](https://docs.python.org/3/library/os.html#os.getppid).