org.elasticsearch.index.fieldvisitor.FieldsVisitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of elasticsearch Show documentation
Show all versions of elasticsearch Show documentation
Elasticsearch subproject :server
/*
* Licensed to Elasticsearch under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.elasticsearch.index.fieldvisitor;
import com.google.common.collect.ImmutableSet;
import org.apache.lucene.index.FieldInfo;
import org.apache.lucene.index.StoredFieldVisitor;
import org.apache.lucene.util.BytesRef;
import org.elasticsearch.cluster.service.ClusterService;
import org.elasticsearch.common.bytes.BytesArray;
import org.elasticsearch.common.bytes.BytesReference;
import org.elasticsearch.index.mapper.IdFieldMapper;
import org.elasticsearch.index.mapper.MappedFieldType;
import org.elasticsearch.index.mapper.MapperService;
import org.elasticsearch.index.mapper.ParentFieldMapper;
import org.elasticsearch.index.mapper.RoutingFieldMapper;
import org.elasticsearch.index.mapper.SourceFieldMapper;
import org.elasticsearch.index.mapper.TTLFieldMapper;
import org.elasticsearch.index.mapper.TimestampFieldMapper;
import org.elasticsearch.index.mapper.Uid;
import org.elasticsearch.index.mapper.UidFieldMapper;
import org.elasticsearch.search.internal.SearchContext;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.NavigableSet;
import java.util.Set;
import java.util.TreeSet;
import static java.util.Collections.emptyMap;
import static java.util.Collections.unmodifiableSet;
import static org.elasticsearch.common.util.set.Sets.newHashSet;
/**
* Base {@link StoredFieldVisitor} that retrieves all non-redundant metadata.
*/
public class FieldsVisitor extends StoredFieldVisitor {
private static final Set BASE_REQUIRED_FIELDS = unmodifiableSet(newHashSet(
UidFieldMapper.NAME,
TimestampFieldMapper.NAME,
TTLFieldMapper.NAME,
IdFieldMapper.NAME,
RoutingFieldMapper.NAME,
ParentFieldMapper.NAME));
private final boolean loadSource;
private final Set requiredFields;
private Collection filtredFields = null;
protected BytesReference source;
protected String type, id;
protected Map> fieldsValues;
public FieldsVisitor(boolean loadSource) {
this.loadSource = loadSource;
requiredFields = new HashSet<>();
reset();
}
@Override
public Status needsField(FieldInfo fieldInfo) throws IOException {
if (requiredFields.remove(fieldInfo.name)) {
return Status.YES;
}
// All these fields are single-valued so we can stop when the set is
// empty
return requiredFields.isEmpty()
? Status.STOP
: Status.NO;
}
public Set requestedFields() {
return ImmutableSet.of();
}
public NavigableSet requiredColumns(ClusterService clusterService, SearchContext searchContext) throws IOException {
List requiredColumns = new ArrayList();
if (requestedFields() != null) {
for(String fieldExp : requestedFields()) {
for(String field : searchContext.mapperService().simpleMatchToIndexNames(fieldExp)) {
int i = field.indexOf('.');
String columnName = (i > 0) ? field.substring(0, i) : field;
// TODO: eliminate non-existant columns or (non-static or non-partition-key) for static docs.
if (this.filtredFields == null || this.filtredFields.contains(columnName))
requiredColumns.add(columnName);
}
}
}
if (loadSource()) {
for(String columnName : searchContext.mapperService().documentMapper(type).getColumnDefinitions().keySet())
if (this.filtredFields == null || this.filtredFields.contains(columnName))
requiredColumns.add( columnName );
}
return new TreeSet(requiredColumns);
}
public void filtredColumns(Collection fields) {
this.filtredFields = fields;
}
public boolean loadSource() {
return this.loadSource;
}
public void postProcess(MapperService mapperService) {
if (mapperService.getIndexSettings().isSingleType()) {
final Collection types = mapperService.types();
assert types.size() <= 1 : types;
if (types.isEmpty() == false) {
type = types.iterator().next();
}
}
for (Map.Entry> entry : fields().entrySet()) {
MappedFieldType fieldType = mapperService.fullName(entry.getKey());
if (fieldType == null) {
throw new IllegalStateException("Field [" + entry.getKey()
+ "] exists in the index but not in mappings");
}
List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy