我试图在弹性搜索中索引数据。
以下是有关弹性搜索的版本和其他详细信息
{ "name" : "Tmqcj9W",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "HvwGfRrpR4-iaViCTm9ZwA",
"version" : {
"number" : "6.1.1",
"build_hash" : "bd92e7f",
"build_date" : "2017-12-17T20:23:25.338Z",
"build_snapshot" : false,
"lucene_version" : "7.1.0",
"minimum_wire_compatibility_version" : "5.6.0",
"minimum_index_compatibility_version" : "5.0.0",
}"tagline" : "You Know, for Search"}
索引数据的客户端代码在python中:
es = ElasticSearch('http://localhost:9200/')
es.create_index(index_name)
es.bulk_index("index_name", "doc_type", [{"title":"this is title","desc":"this is description"}])
我收到以下错误。
“pyelasticsearch.exceptions.ElasticHttpError:(406,'不支持'Content-Type header []')”
经过几次搜索,我得到一些建议,说我需要将内容类型设置为“application / json”,但我不知道如何设置它。 任何人都可以帮我这个吗?。
答案 0 :(得分:1)
问题出在elasticsearch python库上。我将版本降级为6。 sudo pip3 install elasticsearch == 6.0.0