Displaying 20 results from an estimated 90000 matches similar to: "Any working rails example for backgroundrb?"
2008 Oct 14
3
Server settings for BackgrounDRB?
I have backgroundrb working locally and everything''s fine. However, i
can''t get it running on our server.
I read a blog post by David Burger about backgroundrb
(http://david-burger.blogspot.com/2008/04/backgroundrb-rails-notes.html#comment-form)
and it says that you set up your backgroundrb.yml file with a different
section for each environment you want to use. Mine looks like
2007 Apr 16
0
backgroundrb and rails environment in running tests
Hi,
If I start backgroundrb with rails_env = production, and then run my
test suite, is it true that my background tasks will run against the
production database?
Can I prevent this from happening when I mistakenly end up with a
combination like this?
Thanks
Joerg
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because
2007 Oct 13
2
backgroundrb monit config
I did some googling and found a post where Ezra said he monitors
backgroundrb for memory/cpu/uptime. Just wondering what some
reasonable starting points would be.
Pat
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to
2007 Sep 04
2
backgroundrb install issue
I installed backgroundrb v0.2.1 via svn external per the README. But
when I go to start ''er up I get:
$ ./script/backgroundrb start
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'': no such file to load -- daemons (LoadError)
from /usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require''
from
2008 Jun 05
2
Newbie - Is BackgrounDRb compatible on windows ?
I searched online but couldn''t find it. Even BackgrounDRb does not
specify platform compatibility. Earlier version of BackgrounDRb ( <
0.2 ) were incompatible with windows. The current version of
BackgrounDRb is 1.3. If anybody had any luck running this library on
windows machine ?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are
2007 Jun 16
1
BackgrounDRB and Sqlite3 / Autotest / Memory_test_fix Issues
Hello all.
I am using BackgrounDRB with "great happiness and joy", however, I am
running into one problem in that when I am running my tests with
autotest using Sqlite3 3.3.17 I am getting
"ActiveRecord::StatementInvalid" exception inside of the
sqlite_adapter.rb:360 which is checking for an empty structure.
I thought it might be the version of Sqlite, so I upgraded to 3.3.17
2008 Apr 04
0
Can''t get backgroundrb to work with rails plugin ''batched_sql_fu''
Trying to use backgroundrb to process and insert a large list of bulk
records, but when I try to use it with the batched_sql_fu plugin
installed in vendor/plugins, I get the following error:
---SNIP---
/Users/jdonalds/Sites/3dial_ads/config/../vendor/plugins/
batched_sql_fu/lib/batched_sql_fu/active_record.rb:22:in
`alias_insert_sql_to_batched_version!'': undefined method
2008 Jan 14
3
problem with backgroundrb
hi, i am using drb and it is working fine on my local pc on windows..
and after uploading the code to the server it was working for
sometime but now it gives me error every time i invoke the process..
error---
uninitialized constant EmailWorker::Notifier - (NameError)
/usr/lib64/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/
dependencies.rb:477:in `const_missing''
2006 Jul 31
1
Starting backgroundrb from rails and restarting with rails
Hi,
I have my rails sites tricked out with capistrano, and backgroundrb, so
I can easily use the ant tasks, but I would like to be able to start and
stop backgroundrb from within rails.
I have a few reasons for this:
1. Using fastcgi, backgroundrb would start under the apache user and the
same mod_security context as apache, instead of my developer account
which has many more privileges.
2.
2007 Feb 20
2
rails 1.2.1, locomotive and backgroundrb
Hi
I just tried to move my project to rails 1.2.1 on my locomotive
development setup. It seems that backgroundrb is not willing to start
up anymore. If I switch locomotive back to 1.1.6, everthing is fine.
This is the error I get while attempting to start backgroundrb:
/Applications/Locomotive2/Bundles/standardRailsJan2007.locobundle/
2007 Aug 23
2
Render partial from Backgroundrb worker?
Hi,
I have a long running task which generates JavaScript to files and I am
hoping to move this to a backgroundrb worker. The javascript is
currently generated with call to render_to_string:
File.open(File.join(target_folder, ''all.js''), "w") do |file|
file.puts(render_to_string :partial =>
''partials/shared/javascript/tags'', :locals => {
2006 Dec 31
0
backgroundrb 0.2.1 doesn''t always load rails environment
I found this stack trace in my logs. My worker name is MiscWorker,
and Qualifier is a Rails model.
uninitialized constant MiscWorker::Qualifier: /Users/bryan/
Workspace/sandbox/scraper-trunk/config/../vendor/rails/activerecord/
lib/../../activesupport/lib/active_support/dependencies.rb:476:in
`const_missing''
/Users/bryan/Workspace/sandbox/scraper-trunk/lib/workers/
2007 Apr 10
1
backgroundrb and functional testing
Hi,
I have a backgroundrb task initiated through the front-end.
I also have an action in my controller I poll every second or so to see
whether the task has completed, so that I can redirect to a confirm page
on completion.
How do I functional and unit test this scenario?
Joerg
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this
2008 Mar 18
1
regarding problem backgroundrb setup(new to ruby on rails)
Hi all
My problem is that:
With reference to
http://backgroundrb.rubyforge.org/
1---I have download backgroundrb from
http://opensvn.csie.org/ezra/rails/backgroundrb
to my vendor/plugin in my application folder.
2-- after that I used the command to run :-rake backgroundrb:setup --
trace
From my application
2006 Nov 27
1
rails environment loaded but one plugin is undefined (using backgroundrb 0.2.0)
Hello all,
I''m using BackgroundRb 0.2.0 (standalone) and in the do_work method of
my worker, I''m working with objects from my Rails application. So in my
config/backgroundrb.yml file, I added this line:
:load_rails: true
I think my worker isn''t doing what I want him to do. So I opened the
console and read these error lines:
# ruby script/backgroundrb console
2008 Sep 29
0
BackgroundRB for multiple parallel tasks: thread or worker?
I''m just getting started with BackgroundRB, but I''m not sure how to do
what I need to do.
I have many chat rooms (Jabber) which are controlled or mediated by a
Rails app. There are periodic elections carried out in these rooms.
Just this would be easy. I could set up a chron job in the configuration
which gets all the chat rooms from Rails and calls chat.do_election on
each
2007 Apr 06
0
Data changes in backgroundrb task don''t show up in Rails
BackgrounDRbers:
We pass a data batch to a background task for processing. When it
finishes, our GUI updates correctly (using the results hash). But the
data records don''t appear in the Rails connection to the database.
Our stack is the HEAD BackgrounDRb, Rails 1.1.6, MySQL, and Apache/mongrel.
As soon as I whack the background process with script/backgroundrb
stop, the data records
2007 Feb 14
1
Scheduling in backgroundrb not working
Hi ,
How do i schedule a job that can send emails at intervals of time
using backgroundrb and rails
For testing When i hit the controller i''m able send the emails.
but that is not i intend to do .....
I want to use backgroundrb and rails in which i''ll schedule a job
for every 5 minutes/ 1 minute or so..... to send an email
But when i write
2008 Apr 11
3
does backgroundrb server need rails environment?
Hi everyone,
I noticed that script/backgroudrb requires config/environment which
causes the backgroundrb server as well as the log worker to ''bloat'' to
35MB each. I am kind of sensitive to memory issues, so I patched the
code and essentially moved the require of environment from
script/backgroundrb to the meta_worker. Everything seems good and now
both backgroundrb server and
2007 Dec 22
1
Backgroundrb Question
If I have a worker and everything set up and I call:
MiddleMan.ask_status(:worker => :foo_worker)
MiddleMan.ask_status(:worker => :foo_worker)
MiddleMan.ask_status(:worker => :foo_worker)
three times in quick succession. Will the tasks be queued up and
executed as the previous one finishes? Or is this going to ignore the 2
bottom requests? How does this work?
Do I absolutely need to