Tagged Questions

0
votes
1answer
37 views

Rails backgroundRB plugin need to schedule it and queue to database for persistancy.

Hi, I'm trying to do the following: Run a Worker and a method within it every 15 minutes Have a log of the job last runtime, in the database table bdrd_job_queue. What I've done: I have a …
0
votes
1answer
15 views

Can I disable some BackgroundRb workers during tests ?

I have a BackgroundRb worker in charge of dispatching some emails. How should I tell this worker not to run during tests? Does the framework include some configuration parameter or stub worker I …
1
vote
3answers
91 views

using Kernel#fork for backgrounding processes, pros? cons?

I'd like some thoughts on whether using fork{} to 'background' a process from a rails app is such a good idea or not... From what I gather fork{my_method; Process#setsid} does in fact do what it's …
0
votes
1answer
30 views

How to recover cancelled (taken) jobs in case of BackgroundRB crash?

The problem: we have jobs that run from a few seconds to a few minutes in BackgroundRB from a Rails app. But, what happens when we deploy new code and restart BackgroundRB when it's performing a task? …
0
votes
0answers
63 views

Monit & backgroundrb with custom gem paths [closed]

Hi everyone, I'm trying to use monit to monitor a backgroundrb process (that gets killed occasionally), but I cant seem to seem the start or stop commands to work (i simply get 'execution failed') - …
5
votes
4answers
292 views

Best rails solution for a mailer that runs every minute

Hello, I have an application that checks a database every minute for any emails that are supposed to be sent out at that time. I was thinking about making this a rake task that would be run by a cron …
0
votes
1answer
85 views

How to prevent backgroundrb from starting multiple copies of the same task?

Say, I have a worker that's set up to run every 15 minutes using the cron scheduling feature of backgroundrb. Then, say, if a single instance of the worker takes longer than 15 minutes to run, I don't …
1
vote
1answer
81 views

How do I code a rake task to trigger a BackgrounDRb task?

I have a BackgrounDRb worker set up to run its 'sync' method every 15 minutes. Then, say, I want to run the method once just now. I was trying to wrap that in a rake task as follows: namespace …
0
votes
1answer
108 views

backgroundrb thread_pool.defer method logger output goes to where?

It seems like due to the threading issue logger.warn (thats what I tested) doesn't generate any output? my code is similar to this: def deliver(args) logger.info "delivery start" …
1
vote
1answer
207 views

Where is the correct place to initialize the DRb service within a Rails application?

I'm using DRb within a Rails application to offload an expensive task outside the Rails process. Before initializing the client stub with DRbObject.new it is necessary to initialize the DRb service …
2
votes
2answers
199 views

Backgroundrb scheduled task ending

I have a backroundrb scheduled task that takes quite a long time to run. However it seems that the process is ending after only 2.5 minutes. My background.yml file: :schedules: :named_worker: …