13

我正在尝试为如下对象创建动态映射:

  {
    "product": {
        "productId": 99999,
        "manufacturerId": "A0001",
        "manufacturerCode": "A101LI",
        "name": "Test Product",
        "description": "Describe the product here.",
        "feature_details":{
            "category": "Category1",
            "brand": "Brand Name"
        },
        "feature_tpcerts":{
            "certifiedPass": true,
            "levelCertified": 2
        },
        "feature_characteristics":{
            "amount": 0.73,
            "location": 49464
        }
    }
}

我希望feature_*属性是嵌套类型,我在下面的映射中使用 nested_feature 模板定义了它,它按预期工作。但是,我还希望属性的嵌套对象中的每个属性都feature_*定义multi_value了一个附加facet属性。我已经尝试了第二个nested_template 模板,但没有任何成功。

 {
    "product" : {
        "_timestamp" : {"enabled" : true, "store": "yes" },
        "dynamic_templates": [
            {
              "nested_feature": {
                "match" : "feature_*",
                "mapping" : {
                  "type" : "nested",
                  "stored": "true"
                }
              }
            },
            {
                "nested_template": {
                    "match": "feature_*.*",
                    "mapping": {
                        "type": "multi_field",
                        "fields": {
                            "{name}": {
                                "type": "{dynamic_type}",
                                "index": "analyzed"
                            },
                            "facet": {
                                "type": "{dynamic_type}",
                                "index": "not_analyzed"
                            }
                        }
                    }
                }
            }           
        ],
        "properties" : {
            "productId" : { "type" : "integer", "store" : "yes"},
            "manufacturerId" : { "type" : "string", "store" : "yes", "index" : "analyzed"},
            "manufacturer" : { "type" : "string", "store" : "yes", "index" : "not_analyzed"},
            "manufacturerCode" : { "type" : "string", "store" : "yes"},
            "name" : {"type" : "string", "store" : "yes"},
            "description": {"type": "string", "index" : "analyzed"}
        }
    }
}

不幸的是,属性中的feature_*属性是从另一个进程创建的,并且几乎可以是任何名称/值对。关于如何使用动态模板将属性设置为嵌套以及使嵌套对象中的每个属性multi_field具有附加facet属性的任何建议?

4

1 回答 1

29

当模式引用整个字段路径时,您只需要使用path_match而不是match,否则只考虑其名称(最后一部分)。查看根对象的参考页面,其中还包含一些与动态模板相关的文档。

例如,您可能还想使用match_mapping_type无法设置"index":"analyzed"数字或布尔字段。在这种情况下,您可能希望根据字段类型执行不同的操作。

我注意到您的文档包含您并不真正需要的产品根对象。我会删除它,因为类型名称已经是产品。

此外,除非您真的需要,否则我会避免显式存储字段,就像使用弹性搜索一样,您默认存储_source字段,这是您一直需要的。

以下映射应该适用于您的情况(文档中没有产品根对象):

{
      "product" : {
          "dynamic_templates": [
              {
                "nested_feature": {
                  "match" : "feature_*",
                  "mapping" : {
                    "type" : "nested"
                  }
                }
              },
              {
                  "nested_template": {
                      "path_match": "feature_*.*",
                      "match_mapping_type" : "string",
                      "mapping": {
                          "type": "multi_field",
                          "fields": {
                              "{name}": {
                                  "type": "{dynamic_type}",
                                  "index": "analyzed"
                              },
                              "facet": {
                                  "type": "{dynamic_type}",
                                  "index": "not_analyzed"
                              }
                          }
                      }
                  }
              }                
          ]
      }
  }
于 2013-10-11T09:29:20.817 回答