是否可以使elasticsearch中的所有嵌套对象自动映射为默认嵌套的类型。而不是对象?
是的,您可以在创建索引时使用以下动态模板来做到这一点:
PUT my_index { "mappings": { "my_type": { "dynamic_templates": [ { "nested": { "match_mapping_type": "object", "mapping": { "type": "nested" } } } ] } } }