Package org.elasticsearch.index.codec.docvaluesformat

Examples of org.elasticsearch.index.codec.docvaluesformat.DocValuesFormatProvider


        final FieldMappers indexName = mapperService.indexName(field);
        if (indexName == null) {
            logger.warn("no index mapper found for field: [{}] returning default doc values format", field);
            return defaultDocValuesFormat;
        }
        DocValuesFormatProvider docValuesFormat = indexName.mapper().docValuesFormatProvider();
        return docValuesFormat != null ? docValuesFormat.get() : defaultDocValuesFormat;
    }
View Full Code Here

TOP

Related Classes of org.elasticsearch.index.codec.docvaluesformat.DocValuesFormatProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.