我希望有一个弹性搜索模式,它包含一些预定义的字段,包括一个对象类型字段。我希望默认情况下将该对象类型字段中的所有字段都设置为字符串。
创建索引时,我有以下映射和动态模板。
PUT myindex
{
"mappings": {
"doc": {
"dynamic_templates": [
{
"default_string": {
"path_match": "myObj.*",
"match_mapping_type": "*",
"mapping": {
"type": "text"
}
}
}],
"properties": {
"dummy_field_name": { "type": "text" },
"timestamp": {
"type": "date",
"format": "epoch_second"
},
"myObj": {
"type": "object"
}
}
}
}
}
但是当我使用数值提交对象内部的字段时,它不会将该字段映射到字符串。
curl -XPOST "http://elastic-url:8080/myindex/test" -d
'{"dummy_field_name": "dymmy_value", "myObj":{ "filed_1": 123 ,
"field_2": "some value"}, "timestamp": 1522196333}'
“filed_1”被标识为数字字段。但我希望它存储为字符串类型。
答案 0 :(得分:0)
您的映射是针对类型" doc"定义的。但是您要编入索引以键入" test",尝试匹配它们