File "/home/test/publish/virtualenvs/pyv_honey_manage/lib/python2.7/site-packages/pymongo/mongo_client.py", line 1138, in _send_message
raise AutoReconnect(str(e))
AutoReconnect: [Errno 104] Connection reset by peer
--
centos:6.5
python:2.7.8
pymongo:2.8
服务端监控看mongo客户端连接数才300左右.不知道大家遇到过类似问题吗?
exception pymongo.errors.AutoReconnect(message='', errors=None)¶
Raised when a connection to the database is lost and an attempt to auto-reconnect will be made.
In order to auto-reconnect you must handle this exception, recognizing that the operation which caused it has not necessarily succeeded. Future operations will attempt to open a new connection to the database (and will continue to raise this exception until the first successful connection is made).
连接丢失需要重连时将抛出这个错误,文档中说明了,必须要手动处理这个错误.比较好的处理
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。