Dynamic Template
将字符串类型映射为keyword
PUT test_template { "mappings": { "dynamic_templates":[ { "strings":{ "match_mapping_type":"string", "mapping":{ "type":"keyword" } } } ] } }
将以message开头的映射为text类型
PUT test_template { "mappings": { "dynamic_templates":[ { "message_as_text":{ "match_mapping_type":"string", "match":"message", "mapping":{ "type":"text" } } } ] } }
立志如山 静心求实
浙公网安备 33010602011771号