File tree 1 file changed +8
-0
lines changed
src/Nest/IndexModules/IndexSettings/Settings
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,14 @@ public static class UpdatableIndexSettings
15
15
public const string CompoundFormat = "index.compound_format" ;
16
16
public const string CompoundOnFlush = "index.compound_on_flush" ;
17
17
18
+ /// <summary>limits the number of unique nested types per index.</summary>
19
+ public const string MappingNestedFieldsLimit = "index.mapping.nested_fields.limit" ;
20
+ /// <summary>
21
+ /// limits the number of nested objects that a single document may contain across all nested types,
22
+ /// in order to prevent out of memory errors when a document contains too many nested objects.
23
+ /// </summary>
24
+ public const string MappingNestedObjectsLimit = "index.mapping.nested_objects.limit" ;
25
+
18
26
public const string MergePolicyExpungeDeletesAllowed = "index.merge.policy.expunge_deletes_allowed" ;
19
27
public const string MergePolicyFloorSegment = "index.merge.policy.floor_segment" ;
20
28
public const string MergePolicyMaxMergeAtOnce = "index.merge.policy.max_merge_at_once" ;
You can’t perform that action at this time.
0 commit comments