Email or username:

Password:

Forgot your password?
Top-level
Eugen Rochko

@thomas Actually, I'm not really sure, I did three things. First, to confirm the trends weren't right, I opened the Rails console and manually executed TrendingTags.update!

I immediately noticed the trends became different, which suggested the scheduler wasn't doing its job.

I found no obvious issues in the Sidekiq web UI, but I suspected it might have been some hiccup with unique job locks, so I actually removed all locks from Redis through the console and then restarted Sidekiq

No comments
Eugen Rochko

@thomas I don't know if removing the locks was necessary or just restarting would've helped.

If you need to remove the locks, the code in the console would be:

Redis.current.del(*Redis.current.keys('uniquejobs:*'))

Go Up