I have a JRuby/Rails web application. I use rbenv and JRuby to test locally (using "rails server"), and it works. I also distribute the production version as a WAR file and run in Tomcat, and that machine has no JRuby installation. It works. I now need to be able to use Resque and Redis to process long-running jobs. I installed Resque/redis locally and ran Resque from the command line as
linux> "QUEUE=* bundle exec rake environment resque:work
It works. I created a little worker class (FooClass) which just prints out the parameter, is called by Resque, and I am able to enqueue requests by running
irb(main):041:0>Resque.enqueue(FooWorker, [1,"4"])
in the Rails console, and the Resque eventually processes the request and prints [1,"4"]
I would like to be able to run this Resque Rake task in the Tomcat/Java environment (which does not have JRuby installed), and I have 3 options to run the Resque Rake Task.
- Run it within the Tomcat, but in a separate Java thread. I prefer not to do this because I want to be able to kill the worker process and restart it.
- Run it from the command line, and have that command called by etc/init.d at startup.
- Run it in a separate Tomcat from the web app.
My warbler is configured such that the following files are present in the application WAR file, and get exploded to webapps/WEB-INF out to webapps/abc/WEB-INF when Tomcat starts the app.
Gemfile
Rakefile
web.xml
lib/jruby-core-1.6.4.jar
lib/jruby-rack-1.0.10.jar
lib/jruby-stdlib-1.6.4.jar
lib/tasks/abc.rake
lib/tasks/resque.rake
gems/gems/bundler-1.0.21
gems/gems/warbler-1.3.2
gems/gems/rails-3.0.10
(other gem files in gems/gems)
config/warble.rb
The file config/warble.rb looks like this:
Warble::Config.new do |config|
config.dirs=%w{app config lib lob vendor tmp}
config.includes=FileList["./Rakefile"]
config.webxml.jruby.compat.version = "1.9"
end
The file lib/tasks/resque.rake has
require "resque/tasks"
task "resque:setup" => :environment
task "resque:work" => :environment
My gemfile includes the following lines:
source 'http://rubygems.org'
gem 'bundler', '1.0.21'
gem 'rails', '3.0.10'
gem 'rake', '0.8.7'
gem 'resque'
Searching on the web yielded the following ways of running Rake tasks (from within WEB-INF/) without using JRuby:
linux> java -cp lib/jruby-core-1.6.4.jar -S rake
The result was
Unrecognized option: -S
Could not create the Java virtual machine
Just for fun, I tried
linux> java -jar lib/jruby-core-1.6.4.jar -S rake
The result was
jruby: No such file or directory -- rake (LoadError)
I then tried downloading jruby-complete-1.6.4 to that directory and I ran
linux> java -jar lib/jruby-complete-1.6.4.jar -S rake -T
(in /WEB-INF)
rake aborted!
no such file to load -- bundler/setup
/WEB-INF/Rakefile:4:in `(root)'
At this point I am at a complete loss. How can I run my desired Resque Rake task in the Java/Tomcat or just Java environment without installing JRuby on that server?
Alternatively you can run Resque with your application in daemon Threads (instead of a separate rake process) using https://github.com/kares/jruby-rack-worker.
Simply configure Warbler (or your Gemfile) to include the jruby-rack-worker gem (alternatively you can download the .jar and tell Warbler it's to be placed in your WEB-INF/lib dir) and setup the Resque in the deployment descriptor. With Warbler create the config/web.xml.erb file and put there the following code :