search for: start_work

Displaying 20 results from an estimated 28 matches for "start_work".

Did you mean: start_worker
2008 Jan 22
9
Cannot connect when spawning new workers on demand
Hi! I''m using the latest&greatest backgroundrb with rails 2.0.2 on ubuntu dapper. I''ve made an app that lets you run a query on several servers at once, which are selected at runtime. Therefore, for each server that is selected, I spawn a new worker and assign its work. After everything is completed, the workers are deleted. I often get this error:
2008 Mar 21
5
State of backgroundrb (dupe?)
Hi, pardon if this is a duplicate mail, I forgot to click the subscription link the first time around. I''ve been using backgroundrb for a while now (older version) and I''ve had so many headaches because of it that I began looking for a replacement technology. And then I saw the new and shiny backgroundrb website, looking good! Initially I used the version maintained by
2008 Jan 29
4
Setting up release-1.0.1
.../core.rb:156:in `start_reactor'' from RAILS_HOME/vendor/plugins/backgroundrb/framework/core.rb:147:in `loop'' from RAILS_HOME/vendor/plugins/backgroundrb/framework/core.rb:147:in `start_reactor'' from RAILS_HOME/vendor/plugins/backgroundrb/framework/worker.rb:21:in `start_worker'' from RAILS_HOME/vendor/plugins/backgroundrb/framework/packet_master.rb:134:in `fork_and_load'' from RAILS_HOME/vendor/plugins/backgroundrb/framework/packet_master.rb:115:in `start_worker'' from RAILS_HOME/vendor/plugins/backgroundrb/server/master_worker.rb:165:i...
2008 Jun 06
1
Unexpected NameError when invoking task on worker
...l/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_core.rb:124:in `loop'' from /opt/local/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_core.rb:124:in `start_reactor'' from /opt/local/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_worker.rb:20:in `start_worker'' from /opt/local/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_master.rb:133:in `fork_and_load'' from /opt/local/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_master.rb:96:in `load_workers'' from /opt/local/lib/ruby/gems/1.8/gems/pa...
2008 Dec 26
4
''stack level too deep'' error
...uby/gems/1.8/gems/packet-0.1.6/bin/../lib/packet/packet_core.rb:126:in `loop'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.6/bin/../lib/packet/packet_core.rb:126:in `start_reactor'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.6/bin/../lib/packet/packet_worker.rb:21:in `start_worker'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.6/bin/packet_worker_runner:33:in `load_worker'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.6/bin/packet_worker_runner:26:in `initialize'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.6/bin/packet_worker_run...
2008 Apr 02
2
scheduling worker methods in rails
...n is, that the trigger_args are wrong, but i checked everything a thousend times and maybe i dont see the wood for the trees (maybe I have to sleep a litte bit more ;) ) Even the backgroundrb_11006_debug.log don''t say anything i can use to find the error: > 00000012{ > : type:start_worker: > schedule{:calculate{:trigger_args"*/5 * * * * * *: data"6: > job_key@ ; > @ > {:data=>"6", :worker=>:account_worker...
2007 Dec 06
10
Feedback on RC2
I tried to upgrade my existing application to RC2 last night. Like many, I use this mostly for running scheduled tasks. For the moment, I''ve abandoned the effort, but am looking forward to being able to use this. Feedback below: First, the reason I was looking forward to this upgrade was to use the threaded scheduler. I have an application with long-running tasks. I found that
2007 Dec 28
9
lost connection 2.0
I lost my "connection lost" error.. but now I''ve got a "Mysql::Error: MySQL server has gone away" error.. It comes from: /usr/lib/ruby/gems/1.8/gems/activerecord-1.15.6/lib/active_record/connection_adapters/abstract_adapter.rb:128:in ''log''. I''m not sure if Rails / BackgroundRb uses it .. but i''ve got the mysql (2.7) gem
2006 Jul 24
0
Mongrel + BackgrounDRb + File Column = Upload Progress Bar?
...ef done MiddleMan.delete_worker(session[:job_key]) redirect_to :action => ''edit_songs'' end Just for clarity sake, here''s my upload_worker class: class UploadWorker < BackgrounDRb::Rails attr_reader :progress def do_work(args) @progress = 0 start_working end def start_working Thread.new do while @progress < 100 sleep rand / 2 a = [1,3,5,7] @progress += a[rand(a.length-1)] if @progress > 100 @progress = 100 end end end end def progress...
2009 Jan 06
1
ask_status/register_status deprecated???
...register_status'' for #<SessionWorker:0xb6e7d52c> (NoMethodError) from /home/rut216/dev/illinicourses/vendor/plugins/backgroundrb/server/lib/meta_worker.rb:129:in `worker_init'' from /var/lib/gems/1.8/gems/packet-0.1.14/bin/../lib/packet/packet_worker.rb:19:in `start_worker'' from /var/lib/gems/1.8/gems/packet-0.1.14/bin/packet_worker_runner:33:in `load_worker'' from /var/lib/gems/1.8/gems/packet-0.1.14/bin/packet_worker_runner:26:in `initialize'' from /var/lib/gems/1.8/gems/packet-0.1.14/bin/packet_worker_runner:47:in...
2007 Dec 25
6
error: no marshal_dump is defined for class Thread
...71224050255/vendor/plugins/backgroundrb/framework/core.rb:147:in `loop'' /var/www/apps/rpg/releases/20071224050255/vendor/plugins/backgroundrb/framework/core.rb:147:in `start_reactor'' /var/www/apps/rpg/releases/20071224050255/vendor/plugins/backgroundrb/framework/worker.rb:21:in `start_worker'' /var/www/apps/rpg/releases/20071224050255/vendor/plugins/backgroundrb/framework/packet_master.rb:134:in `fork_and_load'' /var/www/apps/rpg/releases/20071224050255/vendor/plugins/backgroundrb/framework/packet_master.rb:98:in `load_workers'' /var/www/apps/rpg/releases/2...
2006 Jun 04
3
Database access for workers
Hi, nice work on BackgrounDrb! I have a question, though: What would be the best way to enable database access for a worker, preferably through ActiveRecord models. Background: I''m trying to write a worker that periodically gets data from an external source, writes it to the database and is then displayed by Rails. Anybody done something like this? Thanks in advance! ciao,
2008 Jan 31
2
cron scheduling problem
...#39;' from brb-test/vendor/plugins/backgroundrb/server/meta_worker.rb:258:in `new_load_schedule'' from brb-test/vendor/plugins/backgroundrb/server/meta_worker.rb:183:in `worker_init'' from brb-test/vendor/plugins/backgroundrb/framework/worker.rb:20:in `start_worker'' from brb-test/vendor/plugins/backgroundrb/framework/packet_master.rb:134:in `fork_and_load'' from brb-test/vendor/plugins/backgroundrb/framework/packet_master.rb:98:in `load_workers'' from brb-test/vendor/plugins/backgroundrb/framework/packet_m...
2009 Jan 05
1
packet_worker_runner error
...ib/workers (Errno::ENOENT) from /opt/ruby-enterprise-1.8.6-20081215/lib/ruby/gems/1.8/ gems/packet-0.1.14/lib/packet/packet_master.rb:116:in `fork_and_load'' from /opt/ruby-enterprise-1.8.6-20081215/lib/ruby/gems/1.8/ gems/packet-0.1.14/lib/packet/packet_master.rb:80:in `start_worker'' from /home/antz/declix.com/production/vendor/plugins/ backgroundrb/server/lib/master_proxy.rb:101:in `load_and_invoke'' from /home/antz/declix.com/production/vendor/plugins/ backgroundrb/server/lib/master_proxy.rb:88:in `reload_workers'' from...
2006 Jun 15
5
Cannot invoke ActiveRecord subclass accessors in DRb worker
Hi there, I''m trying to create a worker to do some asynchronous web client work and update the data model with its results. It seems, however, that every call I make to an ActiveRecord subclass causes the whole thing to block. At least I think it''s blocked. Right now I''m just using debug log output. Is there a decent way to debug/test workers I can try? Is there any
2008 May 30
1
Packet error on startup suddenly.
...from /usr/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_core.rb:124:in `loop'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_core.rb:124:in `start_reactor'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_worker.rb:20:in `start_worker'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_master.rb:133:in `fork_and_load'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/packet/packet_master.rb:96:in `load_workers'' from /usr/lib/ruby/gems/1.8/gems/packet-0.1.5/lib/pac...
2006 Jul 24
4
Mongrel + BackgrounDRb + File Column = Upload Progress Bar?
...ef done MiddleMan.delete_worker(session[:job_key]) redirect_to :action => ''edit_songs'' end Just for clarity sake, here''s my upload_worker class: class UploadWorker < BackgrounDRb::Rails attr_reader :progress def do_work(args) @progress = 0 start_working end def start_working Thread.new do while @progress < 100 sleep rand / 2 a = [1,3,5,7] @progress += a[rand(a.length-1)] if @progress > 100 @progress = 100 end end end end def progress...
2006 Apr 04
4
Threads vs. Processes and Rails
Hey all, I need to launce a rather lengthy process from a small Rails application. It''s the sort of thing (sending out an email newsletter) that would need to be launched from a browser window, but the browser doesn''t need to stick around to see it through. I played around with Thread.new, but I think, based on limited testing, that the threads need to complete before the view
2006 Sep 06
0
rescue?
...into a form and it fires off a worker that then updates that page using AJAX (all of this is working so far). How would I correctly wrap the worker in a begin..rescue so that it spits out ''invalid command'' when someone types in something incorrect. Right now, I have: def start_working begin @result = IO.popen(@cmd) rescue SystemCallError @result = "Invalid or Failed Command: " + $! end end but in my view, the @result doesn''t seem to be accessible to the ajax periodical updater in the same way the @result from the...
2009 Apr 10
0
Error running server: Exec format error - packet_worker_runner
...(Errno::ENOEXEC) >> from /Applications/rubystack-1.4-beta-1/ruby/lib/ruby/gems/1.8/gems/packet-0.1.14/lib/packet/packet_master.rb:116:in `fork_and_load'' >> from /Applications/rubystack-1.4-beta-1/ruby/lib/ruby/gems/1.8/gems/packet-0.1.14/lib/packet/packet_master.rb:80:in `start_worker'' >> from /Volumes/DATA/development/rails/sched/vendor/plugins/backgroundrb/server/lib/master_proxy.rb:16:in `initialize'' >> from /Applications/rubystack-1.4-beta-1/ruby/lib/ruby/gems/1.8/gems/packet-0.1.14/lib/packet/packet_master.rb:19:in `run'' >&g...