报错信息:
Fielddata is disabled on text fields by default. Set fielddata=true on [startTime
] in order to load fielddata in memory by uninverting the inverted index. Note that this can however use significant memory. Alternatively use a keyword field instead.
默认情况下在文本字段中禁用 Fielddata。在字段 [startTime
] 上设置 fielddata=true,以便通过不反转反转索引将 fielddata 加载到内存中。注意,这可能会使用大量内存,或者使用关键字 [keyWord] 字段代替。
解决方法
PUT 你的index/_mapping/你的type/
{
"properties": {
"你的字段": {
"type": "text或keyWord",
"fielddata": true
}
}
}