Python连接Elasticsearch时频繁出现连接故障的原因是什么?
- 内容介绍
- 文章标签
- 相关推荐
本文共计124个文字,预计阅读时间需要1分钟。
Elasticsearch 错误:不支持的产品(客户端检测到服务器不是支持的 Elasticsearch 发行版。百度搜索结果显示,Elasticsearch 需要小于 7.14.0 的版本才能安装。请使用以下命令解决:`pip3 uninstall elasticsearch`,然后 `pip3 install elasticsearch==`)。
Elasticsearch::UnsupportedProductError (The client noticed that the server is not a supported distribution of Elasticsearch
百度后的结果是elasticsearch需要小于7.14.0的版本才可以
pip3 uninstall elasticsearchpip3 install elasticsearch==7.13.0
本文共计124个文字,预计阅读时间需要1分钟。
Elasticsearch 错误:不支持的产品(客户端检测到服务器不是支持的 Elasticsearch 发行版。百度搜索结果显示,Elasticsearch 需要小于 7.14.0 的版本才能安装。请使用以下命令解决:`pip3 uninstall elasticsearch`,然后 `pip3 install elasticsearch==`)。
Elasticsearch::UnsupportedProductError (The client noticed that the server is not a supported distribution of Elasticsearch
百度后的结果是elasticsearch需要小于7.14.0的版本才可以
pip3 uninstall elasticsearchpip3 install elasticsearch==7.13.0

