Created
January 20, 2012 15:26
-
-
Save burgalon/1647879 to your computer and use it in GitHub Desktop.
Rack middleware for Mongo::OperationTimeout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
..... | |
config.middleware.insert_after 'Rack::Cache', 'ReconnectMongo' | |
.... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "reconnect_mongo" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ReconnectMongo | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
begin | |
User.first | |
rescue Mongo::OperationTimeout | |
Mongoid.reconnect! | |
now = Time.now | |
$last_timeout ||= now | |
Rails.logger.warn "Mongo::OperationTimeout - reconnecting... Time since last timeout " + (now - $last_timeout).inspect | |
$last_timeout = now | |
end | |
@app.call(env) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment