File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
src/Nest/IndexModules/IndexSettings/Settings Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public static class UpdatableIndexSettings
14
14
15
15
public const string CompoundFormat = "index.compound_format" ;
16
16
public const string CompoundOnFlush = "index.compound_on_flush" ;
17
-
17
+
18
18
/// <summary>limits the number of unique nested types per index.</summary>
19
19
public const string MappingNestedFieldsLimit = "index.mapping.nested_fields.limit" ;
20
20
/// <summary>
@@ -23,6 +23,19 @@ public static class UpdatableIndexSettings
23
23
/// </summary>
24
24
public const string MappingNestedObjectsLimit = "index.mapping.nested_objects.limit" ;
25
25
26
+ /// <summary>the maximum difference between min_gram and max_gram for <see cref="INGramTokenizer"/> and <see cref="INGramTokenFilter"/></summary>
27
+ public const string MaxNGramDiff = "index.max_ngram_diff" ;
28
+ /// <summary>maximum value of from + size on a query</summary>
29
+ public const string MaxResultWindow = "index.max_result_window" ;
30
+ /// <summary>maximum value of from + size on an individual inner hit definition or top hits aggregation</summary>
31
+ public const string MaxInnerResultWindow = "index.max_inner_result_window" ;
32
+ /// <summary>maximum value of allowed script_fields that can be retrieved per search request.</summary>
33
+ public const string MaxScriptFields = "index.max_script_fields" ;
34
+ /// <summary>the maximum difference between min_shingle_size and max_shingle_size for <see cref="IShingleTokenFilter"/></summary>
35
+ public const string MaxShingleDiff = "index.max_shingle_diff" ;
36
+
37
+
38
+
26
39
public const string MergePolicyExpungeDeletesAllowed = "index.merge.policy.expunge_deletes_allowed" ;
27
40
public const string MergePolicyFloorSegment = "index.merge.policy.floor_segment" ;
28
41
public const string MergePolicyMaxMergeAtOnce = "index.merge.policy.max_merge_at_once" ;
You can’t perform that action at this time.
0 commit comments