Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In a rails project with delayed_job, and I am running into something strange.

I have an article Model, this model can be quite large, with many paragraphs of text in several fields.

If i do:

an_article.delay.do_something

the Delayed::Job that's created does not make it to the queue, it's never marked as failed or successful, and my logs don't acknowledge it's existance. However if i do

def self.proxy_method(article_id)
  an_article = Article.find(article_id)
  an_article.do_something
end

Article.proxy_method(an_article.id)

it works as intended.

Is there some unwritten rule about the size of job objects? Why would A not work, but B work?

One theory I have is that because I'm sort of close to my data cap for mongolab (430 / 496 mb) that the job never makes it to the db, but I have no log or error to really prove this.


NOTE: delayed_job using mongoid on heroku, rails 3.1

share|improve this question
Starting point: github.com/collectiveidea/delayed_job/wiki/… – jordanpg Nov 13 '12 at 4:00

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.