Doug Franklin
Doug Franklin
Hey @selwin thanks for the reply! I misspoke about our load balancers' capabilities. They don't detect old code versions, they only detect servers undergoing deployment. So in a 3-server deployment...
I'm in a similar position here (more than a year later) wrestling with job IDs and their uniqueness. I have an rq-scheduler recurring job that every minute enqueues a batch...
This would be REALLY cool! Currently, we use a super sophisticated exception handler. In `settings.py`: ``` RQ_EXCEPTION_HANDLERS = [ 'my.app.django_rq_custom_failed' ] ``` It does a few things that you mentioned,...
Unfortunately not. Are you experiencing it as well? When we dropped the TTL on the jobs to be very, very small, it helped a bit. Not solved though. We just...
Yeah @ccurvey I see this as well. I too have to delete jobs in batches 😆
The scheduler only queues job on a certain interval. If your enqueue_time falls between intervals, it will not be added to the queue until the next interval (which will then...
A quick look at the docs shows the default interval is 60. https://github.com/rq/rq-scheduler/blob/master/rq_scheduler/scheduler.py#L26
Just experienced this issue, thanks for the fix @Audace! @kislyuk it may be worth updating the docs to include a reference to that library. I'm working with [django rq](https://github.com/rq/django-rq) and...
Just wanted to add that although this _seemed_ solved, I still encounter situations where all logging stops reaching CloudWatch suddenly, but continues to successfully log to local log files. I...