私は次のデータベース接続コードを持っています。最初は複数回試行するためのwhileループがありませんでしたが、実際に失敗する前に複数回試行する方が良いと思いました。私の質問は、これを達成するための最良の方法は何ですか?ティマーを使用する必要がありますか?そして、再試行する前に少し眠りますか?
while connect_attempts < 3:
try:
# dbname cann't have hyphen but host name can'
db_name = self.language.replace('-','_') + 'db'
print 'Connecting to DB ' + db_name
logging.info("Connecting to Toolserver MySql Db: " + db_name)
self.dbConnection = MySQLdb.connect(
db=db_name,
host=self.language + "someserver_name.org",
read_default_file=os.path.expanduser("~/.my.cnf"))
logging.info("Connection Successful: " + str(self.dbConnection))
self.dbCursor = self.dbConnection.cursor(cursors.DictCursor)
except MySQLdb.Error, e:
logging.error("Unable to establish connection MySQL ERROR - attempt-" + str(connect_attempt), e.value)
connect_attempts += 1