0
私は次のように複数のオプションを試してみましたが、IPデータ型にテキスト/文字列フィールドを変更する方法を松することはできませんでした。私はこれが原因のネストにある推測していますが、私は1elasticsearchダイナミックテンプレート
curl -XPUT localhost:9200/_template/clee-new-* -d '{
"template": "clee-new-*",
"mappings": {
"clee-new": {
"_all": {
"enabled": true
},
"dynamic_templates": [
{
"string_fields": {
"match": "ipAddress*",
"match_mapping_type": "nested",
"mapping": {
"index": "not_analyzed",
"type": "ip"
}
}
}
]
}
}
}'
curl -XPUT localhost:9200/_template/clee-new-* -d '{
"template": "clee-new-*",
"mappings": {
"clee-new": {
"_all": {
"enabled": true
},
"dynamic_templates": [
{
"string_fields": {
"match": "ipAddress.bytes",
"match_mapping_type": "string",
"mapping": {
"index": "not_analyzed",
"type": "ip"
}
}
}
]
}
}
}'