I'm using: MongoDB 1.6.4, Python 2.6.6, PyMongo 1.9, Ubuntu 10.10

I'm getting "Client Cursor::yield can't unlock b/c of recursive lock" warning in my logs very often when use findAndModify in two process instances. When i use only one process warning doesn't appear.

How can i fix this?

Thanks.

link|improve this question

1  
this is usually means you are missing indexes on fields used in query. – pingw33n Jan 21 '11 at 13:21
But i'm not using sorting. Or if result get paged i must create index? – Creotiv Jan 21 '11 at 14:07
1  
I don't know tech details of this warning but from my experience adding index on the query field helps. check you have index on fields that used in query part of findAndModify. also run db.collection.find(<queryHere>).explain() to check if it uses the index. – pingw33n Jan 21 '11 at 14:21
Thanks for answer. It helps)) – Creotiv Jan 21 '11 at 14:43
feedback

2 Answers

up vote 2 down vote accepted

this is usually means you are missing indexes on fields used in query.

I don't know tech details of this warning but from my experience adding index on the query field helps. check you have index on fields that used in query part of findAndModify. also run db.collection.find().explain() to check if it uses the index.

Thanks to the pingw33n who help solve this question.

link|improve this answer
feedback

The Mongo folks say that you can ignore this warning -- see this thread. It deals with 2 processes trying to access a mutex (hence you only see it with multi process instances)

We're definitely aware of the issue -- we're discussing the best way to handle those messages going forward. The spurious log entries should be eliminated in a new release very shortly.

Regarding @Creotiv answer. Yeah, if something is slow -- 90% of the time you are missing an index

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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