Joe Kemp

Results 19 comments of Joe Kemp

We are in the middle of migrating to some new infrastructure and it looks like it created this change in the search behavior. I will give another update shortly once...

Following-up on this issue. We are in the middle of adding some more sophisticated email searching functionality by parsing addresses around the `@` symbol. But this actually got inadvertently triggered...

I started an alternative implementation using your suggestion. I removed you as a reviewer on this one.

Does the example in the op work for you if you run tasktiger like this so it processes the `periodic` queue? ```PYTHONPATH=. tasktiger -q periodic```

Are these stats different compared to what [get_queue_stats](https://github.com/closeio/tasktiger/blob/master/tasktiger/__init__.py#L326) returns? I didn't compare the output of both functions. Our Prometheus exporter uses those stats with the following code for our metrics....

I can't think of an easy way to do this in Redis without some Lua scripting. And I kind of feel that computing stats should take second priority over the...

I think there are three different areas for tasktiger metrics. The first bullet is pretty easy. I've only been working slowly on the other two. * General queue metrics: This...

I think an example using a decorator would be good first step to show how to export those metrics. Are you just starting the prometheus http server in a separate...

I think we should support a `soft_timeout` that the child can catch and handle appropriately.

Maybe something like [this](https://pymotw.com/2/socket/uds.html#communication-between-parent-and-child-processes) using a unix socket to send over the stop message. Does the base Task class have a method called before running that could setup a thread...