具有动态键的对象的Elasticsearch映射

时间:2012-04-12 16:41:43

标签: elasticsearch

我有这个映射的简单文档:

'product': {
  'properties': {
    'name': { 'type': 'string' },
    'shops': { 
      'type': 'object', 
      'index_name': 'shop', 
      'properties': {
        'name': { 'type': 'string' },
        'url': { 'type': 'string' },
        'price': { 'type': 'integer' },
      }
    }
  }
}

文档看起来像这样:

{ 
  'name': 'Kindle', 
  'shops': [ 
    { 'name': 'amazon', 'url': 'http://...', 'price': 79 },
    { 'name': 'ebay', 'url': 'http://...', 'price': 99 }
}

但我想要这种格式的商店文件:

{
  'name': 'Kindle',
  'shops': {
    'amazon': { 'url': 'http://...', 'price': 79 },
    'ebay': { 'url': 'http://...', 'price': 99 }
  }
}

有没有办法为此进行映射?或者我应该只创建对象'商店'并保持无模式。

1 个答案:

答案 0 :(得分:3)

您可以将dynamic_template与path_match一起使用("商店。*")[1]。

[1] https://www.elastic.co/guide/en/elasticsearch/reference/1.4/mapping-root-object-type.html