Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is the best way of automatically refreshing stale connections in Mongo?

After recycling the mongod service I get this exception from my Liferay Portlets:

com.mongodb.MongoException$Network: can't call something : /127.0.0.1:27017/connection_test
share|improve this question

2 Answers

You need to have "handle the exception and retry logic" in your code. This might be of help : Exceptions, and how best to retry when a connection is reset?

share|improve this answer
That is unfortunately a lot of ugly code that would need to go into the DAO layer that I'm using. I'm gonna hold out for a prettier solution. :) Mongo does it's own pooling, but I'm wondering if there is an external Mongo pool that deals with stale connections? – Will May 4 '12 at 15:19
up vote 1 down vote accepted

I ended up writing code that polls the connection before each DBCollection is requested.

private DBCollection safeColl(String pCollectionName, DBCollection pColl) {
    try {
        if (log.isDebugEnabled()) {
            log.debug("getting safe coll count on coll: " + pColl.getName());
        }
        pColl.count();
    } catch (MongoException e) {
        if (e.getMessage().startsWith("can't call something")) {
            pColl = getCollection(pCollectionName, true);
            return pColl;
        } else {
            throw e;
        }
    }
    return pColl;
}
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.