Tagged Questions
The backgroundrb tag has no wiki summary.
6
votes
4answers
710 views
Best rails solution for a mailer that runs every minute
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 job ...
5
votes
3answers
524 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 ...
2
votes
2answers
99 views
How to pass more than one argument to a worker at backgroundrb
I'm trying to pass a list of arguments to a backgroundrb
in documentation it says: MiddleMan.worker(:billing_worker).async_charge_customer(:arg => current_customer.id)
but it only works for just one ...
2
votes
2answers
371 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:
...
1
vote
1answer
169 views
Long running tasks in Rails
I have a controller that generates HTML, XML, and CSV reports. The queries used for these reports take over a minute to return their result.
What is the best approach to run these tasks in the ...
1
vote
1answer
139 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 ...
1
vote
1answer
572 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 ...
0
votes
1answer
243 views
Rails 3 - psych.rb - couldn't parse YAML
While integrating backgroundrb-rails3 I get the following error,
~/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/psych.rb:148:in `parse': couldn't parse YAML at line 8 column 22 (Psych::SyntaxError)
...
0
votes
2answers
163 views
Need help designing my first Rails app! (involves Twitter, databases, background processes)
Firstly let me mention that I'm new to web-frameworks.
I have to write my first web-app for a Uni project. I spent two weeks learning Grails and Django. Started working with Rails yesterday and ...
0
votes
1answer
88 views
Is there an easy way to have backgroundrb started with server?
Is there an easy way to have backgroundrb started (restarted) when the server reboots?
Ex. What if your hosting use mongrel cluster and you have no access to it (except start/stop)
One of solution i ...
0
votes
1answer
75 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 ...
0
votes
1answer
135 views
Rails backgroundRB plugin need to schedule it and queue to database for persistancy
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 schedule ...
0
votes
1answer
52 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
1answer
206 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 ...
0
votes
1answer
178 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"
...