Questions tagged [sidetiq]

Sidetiq provides a simple API for defining recurring workers for Sidekiq.

Sidetiq provides a simple API for defining recurring workers for Sidekiq.

  • Concurrency and fault-tolerance using Celluloid actors.

  • Flexible DSL based on ice_cube.

  • Distributed, Redis-based locking to synchronize multiple Sidetiq processes.

  • Web extension with extensive monitoring of recurring jobs.

  • Sidetiq runs in your Sidekiq processes. No extra resources required.

Official repository: https://github.com/tobiassvn/sidetiq

23 questions
0
votes
0 answers

undefined method 'pool' for Sidetiq::Supervisor:Class

I am working on a rails application. On running command bundle exec sidekiq I am getting the following error - undefined method `pool' for Sidetiq::Supervisor:Class /.rvm/gems/ruby-2.6.3/gems/sidetiq-0.6.0/lib/sidetiq/supervisor.rb:12:in…
User
  • 169
  • 1
  • 11
0
votes
1 answer

How do you call a (daily) sidekiq scheduled worker without calling the worker?

Something simple, I'm sure but I've been searching and can't find an answer. in brief: I want to set up a daily mailer to email a lists of tasks daily. I have a worker (scheduled every minute, and only puts'ing for dev): class DailyReminderWorker …
0
votes
1 answer

Sidetiq not working post Rails 5.0 upgrade

I am in process of migrating a rails app to Rails 5 / ruby 2.4 from Rails 4.2 / ruby 2.2.2. Most of the "issues" that I've encountered have been straightforward to address, but this one has me a bit stumped. I have a number of recurring jobs that I…
Navin Gupta
  • 354
  • 3
  • 5
0
votes
1 answer

Ruby on Rails execute recurring task

I need to perform a task roughly every 1 minute on my rails application. So far I have tried delayed job (scheduling a job every minute Rails 3.1 on Heroku) with no success (runs only the one time and then stopped) and right now I'm trying with…
ste
  • 3,087
  • 5
  • 38
  • 73
0
votes
1 answer

Passing custom arguments to Sidekiq

I have a Rails app that requires the user to pass in input that defines how frequently an action is scheduled (e.g one month, three months, six months, etc.) I'm using Sidekiq to run backup jobs, and integrated Sidetiq for the scheduling. As it…
segue_segway
  • 1,490
  • 1
  • 22
  • 40
0
votes
1 answer

Celluloid::DeadActorError: attempted to call a dead actor when running app in vagrant

In my rails app I use the following gems: gem "sidekiq-pro", "~> 2.1.3" gem 'sidetiq', "~> 0.6.3", github: 'akhiln/sidetiq' When I run my app using vagrant VM it returns the following error: 2016-01-03T00:20:02.214Z 15814 TID-ouw1nsoe4 ERROR: Actor…
Mateusz Urbański
  • 7,352
  • 15
  • 68
  • 133
0
votes
1 answer

Reliable scheduling with sidekiq

I'm building a monitoring service similar to pingdom but monitoring different aspects of a system and using sidekiq to queue the tasks which is working well. What I need to do is to schedule sending out pings every minute, rather than using a cron…
JamieD
  • 2,707
  • 2
  • 20
  • 19
0
votes
1 answer

Sending recurring emails with Sidekiq and Sidetiq

I have problem with sending recurring mails with Sidekiq and Sidetiq. I'v tried almost everything and I didn't find the solution. I have Sidekiq worker which looks like this: class InvoiceEmailSender include Sidekiq::Worker include…
Mateusz Urbański
  • 7,352
  • 15
  • 68
  • 133
1
2