A Ruby library to queue and defer processing of slow methods like sending email and image resizing.
0
votes
0answers
14 views
Rails - Roo “file does not exist” error when using Delayed Job
I'm using the Roo gem to import Excel files, CSV files, etc.
The code works great a) on my local box with or without Delayed Job, and b) on Heroku without Delayed Job. Unfortunately when running on ...
0
votes
2answers
21 views
Delayed jobs die silently only on production server
So on my machine, the daemonized version of delayed_jobs runs like a charm.
On my server (Same ruby version, same file architecture, same gems), it fails.
Launching RAILS_ENV=production ...
0
votes
1answer
31 views
Writing a DelayedJob custom job to run script and then destroy object
I've been trying to figure this out for a long time, and can't figure it out.
I am using DelayedJob in my Rails app in order to run a script to fill out some forms on a website via a Mechanize ...
0
votes
0answers
22 views
Rails delayed_jobs don't run in a Rails context
So I have some delayed_jobs that are getting enqueued and dequeued properly. The problem is that when running them, either with $ bundle exec rake jobs:work or $ script/delayed_job start, the ...
1
vote
0answers
13 views
Rails/delayed_job just… not working
I've spent about 3 hours trying to get a simple delayed_job to execute without success. I have this extremely simple job:
class Foo
def foo
`echo foo >> /tmp/mrsmee`
end
end
I'm ...
0
votes
0answers
18 views
Need rails delayed_jobs to go in specific database
I'm planning to use delayed_job in a Rails application using the Mongoid backend. How do I arrange for delayed jobs to be created in a specific Mongo database (not the default)?
1
vote
0answers
39 views
Locked delayed_job row lingers in the database after capistrano deploy
Whenever I deploy with capistrano or run cap production delayed_job:restart, I end up with the currently-running delayed_job row remaining locked.
The delayed_job process is successfully stopped, a ...
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
1answer
17 views
Ruby on Rails - Delayed Job - Return job id
I got a Rails app which basically crawls a lot of RSS feeds. Each feed has a crawl interval like for example 3 hours.
The problem is, since it's crawling more and more feeds every day(more and more ...
1
vote
1answer
14 views
Getting info about a Delayed::Job's instance
I want to do something like this:
Delayed::Job.first.model => which should return the model, like the User instance or whatever, that was enqueued. How can I do that? Nothing in the docs, looked ...
1
vote
2answers
90 views
Using delayed_job for Mechanize script in Rails (NoMethodError: undefined method for nil:NilClass)
I’m going to preface this by saying I’m a relative beginner, and while I may not understand a lot yet, I am more than willing to learn. I hope you can help with this one, as I have been trying to ...
0
votes
0answers
28 views
Delayed_job stuck on production server
I have a project that is using the delay_job_active_record gem for sending mailers to email and to salesforce, this has suddenly stopped sending emails on my production server.
I have managed to work ...
0
votes
2answers
44 views
Delayed Jobs: can't run rake jobs:work
Database:PostgreSQL 9.2
Delayed_job (3.0.5)
Delayed_job_active_record (0.4.4)
When I try to run rake task, rake aborted with:
"invalid byte sequence in UTF-8 (argument error)"
I have no idea ...
2
votes
2answers
101 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 ...
1
vote
1answer
29 views
Rake task sending email newsletters failing when using Heorku Scheduler addon
I have a rake task set up to fire once per day on a Rails app. It checks which users need a newsletter sent, then prepares the newsletter and sends it using SendGrid starter-level addon via DelayedJob ...
0
votes
1answer
36 views
Delayed Job: Configure run_at and max_attempts for a specific job
I need to overwrite the Delayed::Worker.max_attempts for one specific job, which I want to retry a lot of times. Also, I don't want the next scheduled time to be determined exponentially (From the ...
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
45 views
Periodic tasks with Delayed Job gem
class A < ActiveRecord::Base
def self.a
A.first.touch
delay(run_at: Proc.new{ 10.seconds.from_now }).a
log.info 'Added job to run at ' + 10.seconds.from_now.to_s
end
def self.log
...
0
votes
1answer
33 views
Delayed Job object not properly deserialized
I'm having a hard time believing what I'm seeing, but it sure looks like DJ is failing to deserialize an object properly. I look at the DJ record in mongo and I see in the YAML that the object has ...
0
votes
1answer
38 views
Rails delayed_job argument error with mailer
I'm getting a "wrong number of arguments (2 for 1)" error when I try send a mailer to delayed_job. Everything works perfect if I don't try to push it to the background. Below is my controller with ...
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
0answers
35 views
Rails method works in console but not through browser
Here's what I do in my model:
:after_save after_save
def after_save
self.delay.do_thing
end
def do_thing
Dir.mkdir("#{Rails.root}/my/path")
system("cd #{Rails.root}/my/path && ...
1
vote
1answer
69 views
Error with delayed job. Couldn't Parse YAML
I'm passing a csv file to delayed job via the following code.
csv_text = IO.read(params[:emails_import].tempfile.to_path, :encoding => 'UTF-8').gsub(" ", "")
csv_text = csv_text.gsub("\n\n", "\n")
...
4
votes
1answer
55 views
delayed_job update query is running infinitly
I am using delayed_job and delayed_job_active_record for back ground job execution in my rails application. We are using queue based delayed_job. For starting the delayed I am using the following ...
0
votes
1answer
22 views
“Proxy” Capture of $stderr and $stdout for DB Storage
I am trying to store the stderr and stdout in our database for the future debugging purpose of our background processes. I want also the capture to be transparent like a proxy, by that I mean that I ...
0
votes
0answers
30 views
Does workless gem work for jobs scheduled far into the future?
I have an app that allows users to create Events and set event_dates. I'm using delayed_jobs to automatically send an email out 6-hours before the event_date is set to occur. I'm deploying on ...
0
votes
1answer
26 views
Delayed_Job NoMethodError when using Nginx
I'm having trouble implementing the Delayed_Job_Active_Record gem in my Production Environment with Nginx. The user submits a 'Contact Us' form, the relevant controller action is called by Nginx and ...
4
votes
1answer
95 views
delayed_job -i via cron script through ruby will not start after stopping previous processes
So I have a weird situation, I have delayed_job 2.0.7 and daemons 1.0.10 and ruby 1.87 & rails 2.3.5 running on Scientific Linux release 6.3 (Carbon).
I have a rake task that restarts delayed ...
0
votes
2answers
33 views
Can't figure out Delayed::DeserializationError
I am running delayed_job 3.0.5 (delayed_job_active_record 0.4.1) with Rails 3.2.12. I am having problems with some of my jobs failing because of "Deserialization". Here is a really simple example of ...
3
votes
1answer
47 views
Soft deleting huge user accounts with a background task
I'm using Rails and devise for an app that stores a lot of data on users. I want to make it possible for a user to deactivate his account similar to the way Facebook does it so that if you log back ...
0
votes
0answers
41 views
Delayed::Job with RabbitMQ backend
We have a Rails application in which we use Delayed::Job for background processing. Currently it uses ActiveRecord to store jobs. Now we want to use RabbitMQ for storing jobs but there isn't much ...
0
votes
0answers
29 views
html5lib resembles like never ending process
I am having a weird problem in my production environment.
I have a delayed_job running in production and the execution stops after some point, whereas, in the development environment, it is working ...
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
0answers
28 views
How to configure Exception_Notifier for delayed_jobs exception in Rails 3.2.11 on development enviornment
I want to setup exception_notifier for exceptions on delayed_jobs worker on my local development enviornment.
Apparently, I keep missing the exceptions while eyeballing on the tail -f development.log.
...
3
votes
1answer
146 views
Auto orienting image when using delayed job
I have a photo sharing application that allows the user to drag and drop images which are then processed in delayed job and displayed in a gallery. I'm having some problems solving the problem with ...
0
votes
1answer
58 views
Catching errors with Ruby Twitter gem, caching methods using delayed_job: What am I doing wrong?
What I'm doing
I'm using the twitter gem (a Ruby wrapper for the Twitter API) in my app, which is run on Heroku. I use Heroku's Scheduler to periodically run caching tasks that use the twitter gem ...
2
votes
2answers
161 views
YAML - TypeError: can't dump anonymous module
In an action of application_controller, if we try:
p request.env.to_yaml
I will got this error:
TypeError: can't dump anonymous module: #<Module:0x007fee26e34ad8>
from ...
0
votes
0answers
41 views
Rails/ActiveRecord Pessimistic Locking - Do I need to reload after obtaining a lock?
I have a Transaction model in Rails representing a financial transaction which will be charged to a credit card.
When a transaction is created, it's status is :new. When I attempt to settle a ...
0
votes
1answer
52 views
Throttle Geocode requests with DelayedJob run_at
I'm trying to handle geocoding in my Rails app in a way that I can restrict the flow of geocode api calls with DelayedJob.
My intention is just to queue geocoding requests, as they're not time ...
0
votes
2answers
35 views
How can I set a session variable from inside a monkeypath on String
I'm getting the following error...
pry("serp")> session[self.to_sym] = "closed"
NameError: undefined local variable or method `session' for "serp":String
...when I try to set a session variable ...
0
votes
1answer
37 views
Delayed_job going into a busy loop when lodging second task
I am running delayed_job for a few background services, all of which, until recently, run in isolation e.g. send an email, write a report etc.
I now have a need for one delayed_job, as its last step, ...
1
vote
1answer
45 views
Adding some custom methods to delayed job in rails 3?
I want to add some custom methods to the delayed jobs model.
I want to have some extra such as...
def status
return "errored" unless self.last_error.blank?
return "waiting" if ...
0
votes
1answer
66 views
Delayed Job: Apply unsaved ActiveRecord object to something else
I'm trying to apply an unsaved ActiveRecord object Thing to an array of saved objects Person.
person has_many :things
but Delayed Job isn't intended to work with unsaved ActiveRecord models. I ...
1
vote
0answers
73 views
How to use delayed job in rails observer with faraday
With the app I'm building, we're using trumpia to schedule and send sms, and email messages to our users. When they sign up, I'm using an observer to trigger the call to trumpia, and I'm using faraday ...
0
votes
2answers
40 views
passing object as string to delayed job and then desirializing back to object
i started using the delay job gem, and now i am trying to delay a call to a method that accepts an object {:val=>'my name'}
my call is like this:
User.delay.my_static_method(my_object)
this is ...
0
votes
1answer
40 views
Delayed Processing Jobs in Ruby: How much is not blocking my path
I have this project which still uses delayed job as processing job queue. I've recently found an edge case which is making me question a few things: I have this AR (I'm using MySQL, by the way) ...
0
votes
0answers
32 views
What is the magic behind executing 'rake jobs:work' and where can I override that?
I want to create a scheduled delay_job as presented here.
The problem is the last step:
ruby script/delayed_job start
I'm using windows so I do not have 'fork'. I usually run the delayed_job by ...
0
votes
1answer
68 views
Ruby on rails, delayed jobs with rails s
I want to start workes for the job directly after some certain method. So, I start the application with usual rails s. Upload some stuff, so the create method is invoked. After create method the ...
0
votes
1answer
143 views
Ruby on Rails, script/delayed job start. nothing happens
I am using following gems:
gem 'daemons', "=1.0.10"
gem 'delayed_job_active_record'
and following command to delay the method:
after_create :perform_analysis
handle_asynchronously ...
0
votes
1answer
52 views
Ruby on Rails, callback, run a method later
I need somekind of a callback for a function to be caled in 5 min after the create-method.
My situation:
The user logs in in my web-page, uploads some files (create-method is invoked), in 5 min ...



