我们存储看起来像这样的文档:
{
"id": "dQesbpxeQniUWXpsnjPQ",
"title": "Golf in Hamburg, Altona",
"user": "CtGjEaDxSrhPbf7W7NcH",
"location": {
"id": "Q6sZhRHdiS3mP2innbJ9",
"name": "Hamburg, Altona",
"lat": 53.55,
"lon": 9.93333,
"slug": "hamburg-altona"
},
"_type": "announcement"
}
我们需要announcement.location.slug
为not_analyzed
(毕竟这是一个slu g)
然而,映射不会,我们有这些设置:
Tire.index(@@index_name) do
delete
create(mappings: {
announcement: {
properties: {
"id" => { type: 'string', index: 'not_analyzed' },
"user" => { type: 'string', index: 'not_analyzed' },
"location" => {
type: 'geo_point',
properties: {
"slug" => { type: 'string', index: 'not_analyzed' }
}
},
"times" => { type: 'string', analyzer: 'keyword' },
"sport" => {
"properties" => {
"slug" => { type: 'string', index: 'not_analyzed' }
}
}
}
}
},
settings: {
index: {
number_of_shards: 1,
number_of_replicas: 0
}
})
refresh
end
注意: curl
语法中的相同映射也不起作用,但SO的可读性较差,因此我发布了Ruby代码。
似乎geo_point
覆盖了文档该部分的所有其他映射。 The documentation似乎同意。
我确信有一种方法可以使用lat_lon
选项,但我找不到任何关于它如何工作的文档。 (我假设使用lat
设置映射个别lon
和lat_lon
字段)
也许有可能,我原本希望使用the multi
field type,但这似乎不适用于主要文档属性的整个子树。
如何在不更改整个数据模型的情况下继续进行?
答案 0 :(得分:2)
我担心您必须更改模型,因为geo_point是完整数据类型,您无法在其中添加属性(元)。