Sumit Kumar
Sumit Kumar

Reputation: 31

Sidekiq scheduled jobs gets automatically deleted (Sidekiq + Rails)

I want the worker to run on a specific date. I am able to schedule jobs in sidekiq. And sidekiq UI also shows scheduled jobs perfectly. But due to unknown reason my data on sidekiq (processed count,scheduled jobs etc.) gets deleted and everything is reset to 0 in sidekiq UI. Can someone please help me understand this issue.

Upvotes: 2

Views: 559

Answers (1)

Mike Perham
Mike Perham

Reputation: 22208

I suspect you are calling flush on Redis, clearing all your data.

Upvotes: 1

Related Questions