Resque (pronounced like "rescue") is a Redis-backed library for creating background jobs, placing those jobs on multiple queues, and processing them later.
0
votes
1answer
11 views
Resque with God uses IO.popen
I am under rvm.
I have god.
It starts resque.
Resque job opens an IO.popen to the local system program, sends it some text, gets some text back from the stream, analyses it a bit, closes the IO.
So: ...
0
votes
1answer
15 views
Resque not performing any methods
I've got Resque set up in my Rails 3.2 app and have an after hook which successfully calls
Resque.enqueue(SomeJob, self.class.name, id)
I can see the job getting fired off, but no methods in my ...
0
votes
1answer
20 views
disable rack-mini-profiler in resque worker
Does anyone know how to disable rack-mini-profiler in my resque worker? I'm running on heroku so the environment is identical to my web server, however in my resque worker I don't want mini-profiler ...
0
votes
0answers
15 views
Getting the Request Env in a worker
I'm using the Mixpanel Gem for server side event tracking. I chose to use the Resque implementation. As you can see in the example, in the UsersController, you have to pass the env as a hash because ...
1
vote
1answer
19 views
Do RabbitMQ, Beanstalk or Resque support scheduling a task at a certain date?
I've looked at RabbitMQ, Beanstalk and Resque, which all seem geared towards asynchronous, non-delayed tasks (i.e., run all of these as quickly as possible).
Do any of them support scheduling a task ...
0
votes
1answer
23 views
Rails & Resque: Exception handling methods
I'm playing around with resque for the first time. The gem itself is fine, but out of the box, I don't have any effective way of identifying errors/exceptions thrown from within resque tasks. The ...
0
votes
1answer
27 views
Process Resque jobs faster in Heroku?
I'm using Resque in a Heroku app for background jobs and I'm wondering if there's a way to get a given job processed faster.
For instance, there are a few jobs that involve taking a large file ...
0
votes
2answers
18 views
Can background jobs complete if you exit a browser after submitting a request?
I'm new to using background jobs (and much of programming in general) - so I'm aware this must be an simple question, but I haven't found an answer in my research.
I've written a Ruby on Rails web ...
0
votes
0answers
25 views
resque-web with rack 1.4.5 (unicorn + nginx)
Recently installed resque-web on Debian 6 (with ruby 1.8) using
sudo gem install resque
sudo gem install unicorn
Everything works fine until I restart the server (which is also running Redmine + ...
0
votes
1answer
54 views
Resque to connect to Redis with AUTH
Need some help connecting Resque Web UI (Rack config.ru) to a Redis server with AUTH
Using Resque + Unicorn + Nginx and installed most using apt-get install (Debian) and gem install
So basically ...
0
votes
0answers
20 views
Unable to get resque 2.0.0.pre.1 to work
I have added the line to my Gemfile:
gem 'resque', :git => 'https://github.com/resque/resque.git'
And I have created config/initializers/resque.rb:
but it is failing on the first line:
require ...
2
votes
2answers
99 views
Best Ruby on Rails Architecture for Image Heavy App
I'm building an application that allows for large amounts of photo uploads at once, and wanted to know what the best setup would be to tackle this.
This is what I am using so far:
Jquery File ...
0
votes
1answer
25 views
How do I inspect what was the last failed job in Resque?
I know it returns a hash, but its strange how the syntax goes.. I'm trying to find out what the last one is.
If I do this :
Resque.info[:failed] # -> 68
So assuming there's 68 failed jobs, when ...
0
votes
0answers
12 views
Resque workes in controllers but not in models
I have a Resque worker that only works when used from Controllers, or Observers, but not in Models. I tried running from trigger, or call the function from controller but no luck. Keeps returning
...
3
votes
1answer
37 views
How resque checks when to run a job?
I have found the Resque:
https://github.com/elucid/resque-delayed
And I can see that I can schedule delayed Job. My question is, how does it check for delayed jobs? If I have 5000 delayed jobs ...
0
votes
1answer
34 views
Commands in the “system” block works in console but NOT inside application
It has been 12 hours since I've been trying to solve this problem... Here it is:
Inside my controller, I have a method like this:
def restart_workers
system("cd /var/www/sts/current ...
0
votes
0answers
30 views
rails: resque worker log doesn't honor log_tags
I have the following line in my config/environments/development.rb:
config.log_tags = [lambda { |req| Time.now }]
which works perfectly for the rails log (it prepends every entry with a ...
0
votes
0answers
38 views
NameError uninitialized constant Mixpanel when trying to start Resque worker
Rails 3.2.9
Ruby 1.9.3dev (2011-09-23 revision 33323) [i686-linux]
resque (1.24.1)
resque-scheduler (2.0.1)
resque_mailer (2.2.3)
When trying to start resque worker using command:
$ ...
0
votes
1answer
43 views
Process job using workers while client waits and return response when complete
I'm building an API using Rails where requests come in and they need to be executed by a cluster of workers running on a different server (these workers call remote APIs and parse the data, etc...). ...
0
votes
4answers
629 views
Define ActiveRecord connection for given Resque queue
Problem Domain
Heroku Cedar stack, with multiple databases. RDS for main database, and Postgres for a second Analytics database. Server runs using the read/write RDS and Postgres databases. Nightly ...
0
votes
1answer
26 views
Logging in to the Redis(Puts should go to redis)
I want a functionality to log my all "puts" to go to redis at the same time to STDOUT as well.
class Job
def self.perform
puts "Abc"
end
end
Then I am expecting a key value pair in redis. ...
0
votes
1answer
71 views
ruby on rails how to kill the resque worker
I run the crawler in resque queue.It's a crawler and fetch information into the database...
I want to stop it ..
then I start the console in the server I use the commands:
irb(main):001:0> ...
0
votes
1answer
42 views
Heroku gem api scaling workers response 422 Unprocessable Entity
I am using the gem "heroku-resque-auto-scale" to scale workers.
In resque I can see all jobs are failed:
RestClient::UnprocessableEntity
Error
422 Unprocessable Entity
Here is the full error log: ...
0
votes
1answer
35 views
Heroku resque no worker
I have succesfully queued a job, which I can see in resque web.
But the job is never executeted, just pending. I have 1 worker on my heroku app. In resque stats the workers are 0.
In ...
1
vote
1answer
75 views
What goes in config.ru for a non-rails app on heroku?
I have a simple ruby (non-rails) app that uses resque, and won't start up without config.ru on heroku. When I add a config.ru file I get the following error when running rackup locally:
...
0
votes
1answer
33 views
Starting a Resque Job handled by another Rails Server
I have a Rails with a worker (Worker App) that I want another Rails app to invoke (Requester App). One option is to create a controller action on the Worker App that the Requester App can post to.
...
0
votes
1answer
236 views
Could not find gem 'resque (>= 2.0) ruby' in the gems available on this machine
I am using ruby 2 installed latest version for rubygems + installed latest version for rails ie 3.2.13.
I was using delayed_job in my previous project. Now I was thinking to redis + resque. But When ...
1
vote
0answers
16 views
Resque Optimisation on Heroku
I'm using Resque for heavy data processing on Heroku.
Using NewRelic, I see that my tasks use somthing like 15% of CPU share and 50mo RAM per instance.
I could process 5 jobs using only one dyno.
...
1
vote
0answers
92 views
MySQL error using resque with rails table does not exist
Edit: Ok I've posted my code on this repository here https://github.com/willnance/doctor-self-study
Hoping someone can take a look at it. I'm at wits end. I've looked at every single example I can ...
1
vote
1answer
39 views
Enqueue_at(..) error in rails app. Resque scheduler raises NoQueueError
I keep getting this error while trying to use ResqueScheduler enqueue_at
Resque::NoQueueError in QuestionsController#create
Jobs must be placed onto a queue.
Here is the class that's calling it: ...
2
votes
1answer
54 views
Strange behavior with a resque scheduler job
so some context, I got some advice here:
Scheduling events in Ruby on Rails
aand have been tying to implement it today. I cant seem to make it work though. this is my scheduler job that is used ...
0
votes
0answers
33 views
Best way to handle a lot of different background tasks in Rails
We have to run in the background a lot of different tasks, including:
Video Transcoding
Video Uploads to S3
Create Objects in third-party APIs
Grab Statistics from third-party APIs (every midnight)
...
0
votes
1answer
181 views
ruby app crashes on heroku: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
I am trying to load a simple ruby app on heroku that periodically runs a background task using resque, which checks an email account. It works fine locally with foreman, but keeps crashing on heroku.
...
0
votes
1answer
31 views
Resque Not Picking Up Jobs
So, I am trying to set up resque and it is a bit of a weird issue. I had it working before, but I don't know what happened.
When I run the command:
QUEUE=* bundle exec rake resque:work
It starts ...
0
votes
1answer
66 views
What “workers” really are?
I feel lost.
Nginx has it's own "Worker" processes,
Unicorn has it's own "Worker" settings,
Resque has it's own "Workers".
Unicorn's settings should be related to Nginx's or Resque's I guess?
I ...
0
votes
1answer
84 views
rails 3 resque-scheduler no queues being registered
I am currently trying to set up resque-scheduler for my rails 3 application. In my simple test application, I am trying to expire a token which is in my User model 10 seconds after it has been set.
...
0
votes
0answers
73 views
How to manually prune and restart php-resque workers
Very frequently php-Resque workers will be stuck on a job for days, and eventually all the workers gets stuck and the site stops working.The php-resque library was installed using Composer.
Question: ...
0
votes
1answer
62 views
Ruby on rails Resque db connection error while starting queue
while i try to start resque queue by rake resque:work QUEUE='*'
i am getting "database configuration does not specify adapter" error.
db connection is okay i guess because it can fetch data and shows ...
0
votes
1answer
53 views
What is the maximum number of resque workers I can run in production?
Right now I'm running 3 resque workers to run the background jobs. My system has around 50K users and there are many jobs pending in the Queue.
Can I increase the number of resque workers, but that ...
0
votes
1answer
99 views
Starting resque workers while started development server
I want to start my workers when I start my development server to test the a new cron job I have in my resque scheduler, so I run this command when starting dev server-
QUEUE=* rake environment ...
0
votes
1answer
58 views
“pg” Ruby gem is throwing a “prepared statement already exists” error from Resque
Apparently the pg gem uses prepared statements for Postgres. I have seen fixes for Unicorn to ensure that each process uses it's own db connection like so:
after_fork do |server, worker|
...
0
votes
1answer
131 views
Generating file with PDFKit on Heroku - No such file or directory
I'm using PDFKit to create pdfs of from a given url within a Resque job on Heroku Cedar. My code looks like:
kit = PDFKit.new(url)
pdf = kit.to_file("/tmp/#{SecureRandom.hex}.pdf")
I then upload ...
1
vote
0answers
45 views
Optimal number of Resque workers for maximum performance
I am using Resque for achieving cheap parallelism in my academic research - I split huge tasks into relatively small independent portions and submit them to Resque. These tasks do some heavy stuff, ...
1
vote
0answers
26 views
How does Jesque work with Huge Payload?
I read about Jesque at https://github.com/gresrun and I would like to understand how does it perform under huge payload. Is the only way of queuing a job to create an instance of Job class and then ...
0
votes
1answer
38 views
resque blocked by worker job
I am using redis pub/sub withing resque worker, resque hangs after first job,
my worker task is of blocking nature. My understanding is resque forks a new thread for each new job.
my worker is as ...
0
votes
1answer
75 views
Rake task not running from within worker
I don't understand why my rake task is not running from within a resque worker. Running
rake :send_this_email
from the console works fine, I just want to run it as a cron job (as follows) but ...
0
votes
0answers
80 views
resque help - deprecated code in tutorial
I usually do work on windows, so this is all new to me. So forgive me for dumb newbie questions. I recently tried going through this tutorial ...
3
votes
1answer
118 views
Testing resque-scheduler
In resque-scheduler, how do I rspec-test that some job is queued EVERY 30 seconds?
Here is my resque-scheduler.yml file:
hipchat_schedule:
queue: hipchat
every: 30s
class: HipChatPolling
There ...
0
votes
0answers
34 views
Finding schedules in resque - ruby
I am using resque to process some background jobs (like cron jobs). So I fire these two rake tasks:
$> rake resque:work
$> rake resque:scheduler
My question is how to find worker and scheduler are ...
0
votes
0answers
44 views
Heroku worker.1: crashed
I have a app on production and i am using resque to process some background jobs.
When i run
heroku ps --app myapp-prod
I get
=== web: `bundle exec thin start -R config.ru -e $RAILS_ENV -p $PORT`
...



