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

I am getting the below error when I run the rake task. Can any one help me?

Error

rake aborted!
The operation: "GET MORE"
failed with error "cursor 178700246530 not found"
C:/Ruby193/lib/ruby/gems/1.9.1/gems/moped-1.3.2/lib/moped/node.rb:210:in `get_more'

My Rake Code

MyCollection.where(:name => "abc").each do |comp|   
 l =     open(comp.logo_url)
 comp.logo = l
 comp.save!
end

Thanks in advance

share|improve this question
Is the MyCollection huge? That would most likely be the case. Check out the related discussion about this error at groups.google.com/forum/?fromgroups=#!topic/mongoid/9QxJZg9sSZo – Prakash Murthy Feb 10 at 5:36
Yes it is huge. is there any possible way to handle this? – Muzaffer Feb 10 at 6:22

1 Answer

up vote 0 down vote accepted

Try to use with find_in_batches with your collection .

share|improve this answer
I have not used find_in_batches but code modified to use limited data at a time. It works without error. Error occur because of huge data retrieval from DB. Retrieve data partially at time and perform activity. – Muzaffer Feb 11 at 5:21
MyCollection.where(:name => "abc").limit(50).each do |comp| l = open(comp.logo_url) comp.logo = l comp.save! end – Muzaffer Feb 12 at 5:47

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.