我正在尝试通过 Python 在 Elasticsearch 中创建索引。我部署了一个本地 ES 实例并且查询运行良好。但是,我有一个架构。这里是:
{
"mappings": {
"payment":{
"properties":{
"timestamp":{"type":"date"},
"base_amount":{"type":"integer"},
"derived_id":{"type":"keyword", "fielddata": true},
"attempts":{"type":"integer"},
"status":{"type":"text","fielddata":true},
"error_code":{"type":"text","fielddata":true}
}
}
}
}
这是我用来创建此索引的代码
import json
import requests
schema = {
"mappings": {
"payment": {
"properties": {
"timestamp": {"type": "date"},
"base_amount": {"type": "integer"},
"derived_key": {"type": "keyword", "fielddata": True},
"attempts": {"type": "integer"},
"status": {"type": "text", "fielddata": True},
"error_code": {"type": "text", "fielddata": True}
}
}
}
}
index = 'http://localhost:9200/payment_index_2016_08_21'
r = requests.put(index, data=json.dumps(schema))
print r.content
我得到的错误是
我不明白为什么
fielddata = true
会导致问题,因为我认为 https://www.elastic.co/guide/en/elasticsearch/reference/current/fielddata.html 在这里是允许的。任何线索这背后的问题是什么? 最佳答案
您不需要在关键字字段上启用 fielddata
。您可以对关键字字段进行聚合。
关于python - 索引映射时不支持 Elasticsearch fielddata,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44372781/