前言:错误虽小但愁人

ES = Elasticsearch()
ES = Elasticsearch(['127.0.0.1:9200'])

在使用以上语句用python操作ElasticSearch连接时,报出以下错误:

ValueError: URL must include a 'scheme', 'host', and 'port' component (ie 'https://localhost:9200')

错误字面意思理解为连接时候URL不符合格式,但查证后才发现是版本的原因,ElasticSearch==7.14.0以上的版本都不支持这样的连接方式。解决方法就是把ElasticSearch版本降低到7.13.0及以下即可。

 pip install -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com elasticsearch==7.13.0
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐