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