我在elasticsearch 1.1.1上使用模板,它在索引创建时创建特殊映射。 我的模板如下:
{
"template": "*",
"mappings": {
"foo": {
"properties": {
"where": {
"type": "nested",
"properties": {
"*": {
"index": "not_analyzed"
},
"geo_point": {
"type": "geo_point"
}
}
}
}
}
}
}
嵌套对象“where”中将来会有字段。我希望不要对它们进行分析以避免在术语Faceting期间进行标记化。不幸的是,在创建索引时,我不知道这个未来字段的名称。
您知道如何为嵌套或内部对象中的任何未来字段定义映射吗?
此致