elasticsearch 2.3.3 中的映射更改
Mapping changes in elasticsearch 2.3.3
如何手动设置elasticsearch 2.3.3中ES索引嵌套字段的限制,默认为50?
{"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"Limit of nested fields [50] in index [1000] has been exceeded"}]
这个是在breaking changes for 2.3中提到的:
您可以通过以下方式在索引设置中更改此设置:
index.mapping.nested_fields.limit: 1001
请注意,只有在创建索引或更新映射时才会考虑这一点。
如何手动设置elasticsearch 2.3.3中ES索引嵌套字段的限制,默认为50?
{"error":{"root_cause":[{"type":"illegal_argument_exception","reason":"Limit of nested fields [50] in index [1000] has been exceeded"}]
这个是在breaking changes for 2.3中提到的:
您可以通过以下方式在索引设置中更改此设置:
index.mapping.nested_fields.limit: 1001
请注意,只有在创建索引或更新映射时才会考虑这一点。