将工作制作应用程序连接到本地mongo后,我们决定转移到Mongo Atlas
。
这导致生产错误。
Our stack is docker -> alping 3.6 -> python 2.7.13 -> Flask -> uwsgi (2.0.17) -> nginx running on aws
flask-mongoengine-0.9.3 mongoengine-0.14.3 pymongo-3.5.1
在staging/production
中启动应用时,uwsgi
正在发送No replica set members found yet
。
我们不知道为什么。
我们尝试了不同的连接设置connect: False
这是一种延迟连接,这意味着不是在初始化时,而是在第一次查询时。
它导致nginx在我们的某些应用上因resource temporarily unavailable
错误而失败。我们不得不多次重启应用程序才能最终开始提供请求。
我认为这个问题与pymongo有关,而且它不是fork-safe
http://api.mongodb.com/python/current/faq.html?highlight=thread#id3
并且uwsgi
正在使用分叉
我怀疑这可能与我的应用程序被初始化的方式有关。 可能是由aginst Using PyMongo with Multiprocessing 这是app init代码:
from app import FlaskApp
from flask import current_app
app = None
from flask_mongoengine import MongoEngine
import logging
application, app = init_flask_app(app_instance, module_name='my_module')
def init_flask_app(app_instance, **kwargs):
app_instance.init_instance(environment_config)
application = app_instance.get_instance()
app = application.app
return application, app
# app_instance.py
import FlaskApp
def init_instance(env):
global app
app = FlaskApp(env)
return app
def get_instance():
if globals().get('app') is None:
app = current_app.flask_app_object
else:
app = globals().get('app')
assert app is not None
return app
class FlaskApp(object):
def __init__(self, env):
.....
# Initialize the DB
self.db = Database(self.app)
....
# used in app_instance.py to get the flask app object in case it's None
self.app.flask_app_object = self
def run_server(self):
self.app.run(host=self.app.config['HOST'], port=self.app.config['PORT'], debug=self.app.config['DEBUG'])
class Database(object):
def __init__(self, app):
self.db = MongoEngine(app)
def drop_all(self, database_name):
logging.warn("Dropping database %s" % database_name)
self.db.connection.drop_database(database_name)
if __name__ == '__main__':
application.run_server()
帮助调试这将不胜感激!