We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be9463d commit c8eadf1Copy full SHA for c8eadf1
src/Nest/IndexModules/IndexSettings/Settings/FixedIndexSettings.cs
@@ -9,5 +9,12 @@ public static class FixedIndexSettings
9
public const string NumberOfRoutingShards = "index.number_of_routing_shards";
10
public const string NumberOfShards = "index.number_of_shards";
11
public const string RoutingPartitionSize = "index.routing_partition_size";
12
+
13
+ /// <summary>
14
+ /// If a field referred to in a percolator query does not exist,
15
+ /// it will be handled as a default text field so that adding the percolator query doesn't fail.
16
+ /// Defaults to <c>false</c>
17
+ /// </summary>
18
+ public const string PercolatorMapUnmappedFieldsAsText = "index.percolator.map_unmapped_fields_as_text";
19
}
20
0 commit comments