我尝试使用以下代码使用python创建数据并将数据加载到索引中:
from datetime import datetime
from elasticsearch import Elasticsearch
from elasticsearch import helpers
es = Elasticsearch()
actions = [
{
"_index": "tickets-index",
"_type": "tickets",
"_id": j,
"_source": {
"any":"data" + str(j),
"timestamp": datetime.now()}
}
for j in range(0, 10)
]
helpers.bulk(es, actions)
执行代码时,显示:
elasticsearch.exceptions.TransportError: TransportError(406, u'Content-Type header [] is not supported')
我想这段代码以前是由这个论坛上的某人编写的一个解决方案,但它对我不起作用。请让我知道为什么我们会遇到这个问题,我怎样才能解决这个问题。
提前致谢。