我可以执行以下操作来创建新的 ES 索引:
>>> es.indices.create(index = 'example_index')
{u'index': u'example_index', u'acknowledged': True, u'shards_acknowledged': True}
但是,如果我添加任何类型的映射,我会收到一个未知错误。例如:
request_body = {
'mappings': {
'_doc': {
'properties': {
'address': {'index': 'not_analyzed', 'type': 'string'},
'some_PK': {'index': 'not_analyzed', 'type': 'string'},
}}}
}
es.indices.create(index = 'example_index', body=request_body)
> TransportError: <unprintable TransportError object>
我将如何在此处使用预定义的映射创建适当的索引?为什么它会给出如此无用的错误消息?
缥缈止盈
相关分类