0

我们存储看起来像这样的文档:

{
    "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(毕竟这是一个蛞蝓)

但是映射不会,我们有这些设置:

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正在覆盖文档该部分的所有其他映射。文档似乎同意。

我确信有一种方法可以使用该lat_lon选项,但我找不到任何关于它如何工作的文档。(我假设一个人用设置映射个人latlon字段lat_lon

也有可能,我曾希望使用字段multi类型,但这似乎不适用于主文档属性的整个子树。

如何在不必更改整个数据模型的情况下继续操作?

4

1 回答 1

2

恐怕您必须更改模型,因为 geo_point 是完整的数据类型,您不能在其中添加属性(元)。

于 2012-09-06T17:14:25.787 回答