使用ElasticSearch-py的Bulk-API

时间:2014-10-30 15:57:19

标签: python elasticsearch

我希望在ElasticSearch-py中使用Bulk-API选项。我试着在这个例子中使用bulk-api:

from elasticsearch import Elasticsearch
es = Elasticsearch()
doc ={.....}
result = es.bulk(index="my_index", doc_type="my_doc_type", body=doc)

我的索引和我的doc类型很好但是,我发现了这个错误:

  

警告:elasticsearch:POST / my_index / my_doc_type / _bulk [状态:500   请求:0.002s]

为什么我有这个错误? 提前谢谢。

更新

经过一些调试后,我设法显示此错误:

  

{"错误":" ActionRequestValidationException [验证失败:1:否   请求已添加;]"," status":500}

0 个答案:

没有答案