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

I'm trying to make resque work with heroku. It works with my other application but I don't understand this error in the worker logs:

PG::Error: result has been cleared: SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1

So whenever I add a job to the queue, a worker takes the job and throws the error above.

Here is the worker class:

class Companies
  @queue = :companies

  def self.perform(current_user_id, model)
    @current_user = User.find(current_user_id)

    ... do things with @current_user and model...
  end
end

And I call the perform action using: Resque.enqueue(Companies, current_user.id, 'quotes')

Thanks for your help.

share|improve this question

2 Answers

up vote 2 down vote accepted
+50

This error message indicates an internal error in the PG gem that is being used to interface with the Postgres database. It indicates a Garbage Collection/memory allocation error where the result of the executed postgres query has been cleared from memory on access.

Someone as heroku will have to debug this, it appears to be a platform level issue.

share|improve this answer

This is most frequently related to multiple processes/threads sharing the same connection. Are you using something a callback (either after_fork or before_hook) to reconnect to the database for each job?

For more on this, see: http://stackoverflow.com/a/5519372/66752

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.