Package org.elasticsearch.index.mapper.FieldMapper

Examples of org.elasticsearch.index.mapper.FieldMapper.Names


                throw new FacetPhaseExecutionException(fieldName, "no mapping found for " + fieldName);
            }

            final Index index = context.mapperService().index();
            final Settings indexSettings = context.indexShard().indexSettings();
            final Names fieldNames = mapper.names();
            //            final Resident ifdc = new IndexFieldDataCache.Resident(
            //                    _indicesService.indexServiceSafe(index.getName()), fieldNames, fieldDataType);

            final IndexFieldDataCache ifdc =
                    _cache.buildIndexFieldDataCache(_indicesService.indexServiceSafe(index.getName()),
View Full Code Here


        @Override
        public IndexFieldData<?> build(Index index, Settings indexSettings, FieldMapper<?> mapper, IndexFieldDataCache cache,
                                       CircuitBreakerService breakerService, MapperService mapperService) {
            // Ignore breaker
            final Names fieldNames = mapper.names();
            return new BytesBinaryDVIndexFieldData(index, fieldNames, mapper.fieldDataType());
        }
View Full Code Here

TOP

Related Classes of org.elasticsearch.index.mapper.FieldMapper.Names

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.