Package org.elasticsearch.index.codec
Class CodecService
- java.lang.Object
-
- org.elasticsearch.index.codec.CodecService
-
public class CodecService extends Object
Since Lucene 4.0 low level index segments are read and written through a codec layer that allows to use use-case specific file formats & data-structures per field. Elasticsearch exposes the fullCodeccapabilities through thisCodecService.
-
-
Field Summary
Fields Modifier and Type Field Description static StringBEST_COMPRESSION_CODECstatic StringDEFAULT_CODECstatic StringLUCENE_DEFAULT_CODECthe raw unfiltered lucene default.
-
Constructor Summary
Constructors Constructor Description CodecService(MapperService mapperService, org.apache.logging.log4j.Logger logger)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]availableCodecs()Returns all registered available codec namesCodeccodec(String name)
-
-
-
Field Detail
-
DEFAULT_CODEC
public static final String DEFAULT_CODEC
- See Also:
- Constant Field Values
-
BEST_COMPRESSION_CODEC
public static final String BEST_COMPRESSION_CODEC
- See Also:
- Constant Field Values
-
LUCENE_DEFAULT_CODEC
public static final String LUCENE_DEFAULT_CODEC
the raw unfiltered lucene default. useful for testing- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CodecService
public CodecService(@Nullable MapperService mapperService, org.apache.logging.log4j.Logger logger)
-
-