
org.elasticsearch.search.fetch.subphase.FetchDocValuesContext Maven / Gradle / Ivy
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/
package org.elasticsearch.search.fetch.subphase;
import org.elasticsearch.index.IndexSettings;
import org.elasticsearch.index.query.SearchExecutionContext;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
/**
* All the required context to pull a field from the doc values.
* This contains:
*
* - a list of field names and its format.
*
*/
public class FetchDocValuesContext {
private final List fields = new ArrayList<>();
/**
* Create a new FetchDocValuesContext using the provided input list.
* Field patterns containing wildcards are resolved and unmapped fields are filtered out.
*/
public FetchDocValuesContext(SearchExecutionContext searchExecutionContext, List fieldPatterns) {
for (FieldAndFormat field : fieldPatterns) {
Collection fieldNames = searchExecutionContext.simpleMatchToIndexNames(field.field);
for (String fieldName : fieldNames) {
if (searchExecutionContext.isFieldMapped(fieldName)) {
fields.add(new FieldAndFormat(fieldName, field.format, field.includeUnmapped));
}
}
}
int maxAllowedDocvalueFields = searchExecutionContext.getIndexSettings().getMaxDocvalueFields();
if (fields.size() > maxAllowedDocvalueFields) {
throw new IllegalArgumentException(
"Trying to retrieve too many docvalue_fields. Must be less than or equal to: [" + maxAllowedDocvalueFields
+ "] but was [" + fields.size() + "]. This limit can be set by changing the ["
+ IndexSettings.MAX_DOCVALUE_FIELDS_SEARCH_SETTING.getKey() + "] index level setting.");
}
}
/**
* Returns the required docvalue fields.
*/
public List fields() {
return this.fields;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy