You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an index level setting `index.mapping.nested_objects.limit` to control
the number of nested json objects that can be in a single document
across all fields. Defaults to 10000.
Throw an error if the number of created nested documents exceed this
limit during the parsing of a document.
Closes#26962
Copy file name to clipboardExpand all lines: rest-api-spec/src/main/resources/rest-api-spec/test/create/70_nested.yml
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ setup:
16
16
"Indexing a doc with No. nested objects less or equal to index.mapping.nested_objects.limit should succeed":
17
17
- skip:
18
18
version: " - 6.99.99"
19
-
reason: index.mapping.nested_objects setting was introduced from this version
19
+
reason: index.mapping.nested_objects setting has been added in 7.0.0
20
20
- do:
21
21
create:
22
22
index: test_1
@@ -30,7 +30,7 @@ setup:
30
30
"Indexing a doc with No. nested objects more than index.mapping.nested_objects.limit should fail":
31
31
- skip:
32
32
version: " - 6.99.99"
33
-
reason: index.mapping.nested_objects setting was introduced from this version
33
+
reason: index.mapping.nested_objects setting has been added in 7.0.0
34
34
- do:
35
35
catch: /The number of nested documents has exceeded the allowed limit of \[2\]. This limit can be set by changing the \[index.mapping.nested_objects.limit\] index level setting\./
0 commit comments