mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 10:25:15 +00:00
Merge branch 'master' into new_index_settings
This commit is contained in:
commit
bd37ba22e3
@ -95,7 +95,7 @@ public class MapperService extends AbstractIndexComponent implements Closeable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static final String DEFAULT_MAPPING = "_default_";
|
public static final String DEFAULT_MAPPING = "_default_";
|
||||||
public static final Setting<Long> INDEX_MAPPING_NESTED_FIELDS_LIMIT_SETTING = Setting.longSetting("index.mapping.nested_fields.limit", 50l, 0, false, Setting.Scope.INDEX);
|
public static final Setting<Long> INDEX_MAPPING_NESTED_FIELDS_LIMIT_SETTING = Setting.longSetting("index.mapping.nested_fields.limit", 50l, 0, true, Setting.Scope.INDEX);
|
||||||
public static final boolean INDEX_MAPPER_DYNAMIC_DEFAULT = true;
|
public static final boolean INDEX_MAPPER_DYNAMIC_DEFAULT = true;
|
||||||
public static final Setting<Boolean> INDEX_MAPPER_DYNAMIC_SETTING = Setting.boolSetting("index.mapper.dynamic", INDEX_MAPPER_DYNAMIC_DEFAULT, false, Setting.Scope.INDEX);
|
public static final Setting<Boolean> INDEX_MAPPER_DYNAMIC_SETTING = Setting.boolSetting("index.mapper.dynamic", INDEX_MAPPER_DYNAMIC_DEFAULT, false, Setting.Scope.INDEX);
|
||||||
private static ObjectHashSet<String> META_FIELDS = ObjectHashSet.from(
|
private static ObjectHashSet<String> META_FIELDS = ObjectHashSet.from(
|
||||||
|
@ -7,7 +7,7 @@ unique sorted list of terms, and from that immediately have access to the list
|
|||||||
of documents that contain the term.
|
of documents that contain the term.
|
||||||
|
|
||||||
Sorting, aggregations, and access to field values in scripts requires a
|
Sorting, aggregations, and access to field values in scripts requires a
|
||||||
different data access pattern. Instead of lookup up the term and finding
|
different data access pattern. Instead of looking up the term and finding
|
||||||
documents, we need to be able to look up the document and find the terms that
|
documents, we need to be able to look up the document and find the terms that
|
||||||
it has in a field.
|
it has in a field.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user