Class Lucene42DocValuesFormat
Lucene 4.2 DocValues format.
Encodes the four per-document value types (Numeric,Binary,Sorted,SortedSet) with seven basic strategies.
- Delta-compressed Numerics: per-document integers written in blocks of 4096. For each block the minimum value is encoded, and each entry is a delta from that minimum value.
- Table-compressed Numerics: when the number of unique values is very small, a lookup table is written instead. Each per-document entry is instead the ordinal to this table.
- Uncompressed Numerics: when all values would fit into a single byte, and the
acceptableOverheadRatio
would pack values into 8 bits per value anyway, they are written as absolute values (with no indirection or packing) for performance. - GCD-compressed Numerics: when all numbers share a common divisor, such as dates, the greatest common denominator (GCD) is computed, and quotients are stored using Delta-compressed Numerics.
- Fixed-width Binary: one large concatenated byte[] is written, along with the fixed length.
Each document's value can be addressed by
maxDoc*length
. - Variable-width Binary: one large concatenated byte[] is written, along with end addresses for each document. The addresses are written in blocks of 4096, with the current absolute start for the block, and the average (expected) delta per entry. For each document the deviation from the delta (actual - expected) is written.
- Sorted: an FST mapping deduplicated terms to ordinals is written, along with the per-document ordinals written using one of the numeric strategies above.
- SortedSet: an FST mapping deduplicated terms to ordinals is written, along with the per-document ordinal list written using one of the binary strategies above.
Files:
.dvd
: DocValues data.dvm
: DocValues metadata
-
The DocValues metadata or .dvm file.
For DocValues field, this stores metadata, such as the offset into the DocValues data (.dvd)
DocValues metadata (.dvm) --> Header,<FieldNumber,EntryType,Entry>NumFields,Footer
- Entry --> NumericEntry | BinaryEntry | SortedEntry
- NumericEntry --> DataOffset,CompressionType,PackedVersion
- BinaryEntry --> DataOffset,DataLength,MinLength,MaxLength,PackedVersion?,BlockSize?
- SortedEntry --> DataOffset,ValueCount
- FieldNumber,PackedVersion,MinLength,MaxLength,BlockSize,ValueCount --> VInt (WriteVInt32(Int32))
- DataOffset,DataLength --> Int64 (WriteInt64(Int64))
- EntryType,CompressionType --> Byte (WriteByte(Byte))
- Header --> CodecHeader (WriteHeader(DataOutput, String, Int32))
- Footer --> CodecFooter (WriteFooter(IndexOutput))
Sorted fields have two entries: a SortedEntry with the FST metadata, and an ordinary NumericEntry for the document-to-ord metadata.
SortedSet fields have two entries: a SortedEntry with the FST metadata, and an ordinary BinaryEntry for the document-to-ord-list metadata.
FieldNumber of -1 indicates the end of metadata.
EntryType is a 0 (NumericEntry), 1 (BinaryEntry, or 2 (SortedEntry)
DataOffset is the pointer to the start of the data in the DocValues data (.dvd)
CompressionType indicates how Numeric values will be compressed:
- 0 --> delta-compressed. For each block of 4096 integers, every integer is delta-encoded from the minimum value within the block.
- 1 --> table-compressed. When the number of unique numeric values is small and it would save space, a lookup table of unique values is written, followed by the ordinal for each document.
- 2 --> uncompressed. When the
acceptableOverheadRatio
parameter would upgrade the number of bits required to 8, and all values fit in a byte, these are written as absolute binary values for performance. - 3 --> gcd-compressed. When all integers share a common divisor, only quotients are stored using blocks of delta-encoded ints.
MinLength and MaxLength represent the min and max byte[] value lengths for Binary values. If they are equal, then all values are of a fixed size, and can be addressed as
DataOffset + (docID * length)
. Otherwise, the binary values are of variable size, and packed integer metadata (PackedVersion,BlockSize) is written for the addresses. -
The DocValues data or .dvd file.
For DocValues field, this stores the actual per-document data (the heavy-lifting)
DocValues data (.dvd) --> Header,<NumericData | BinaryData | SortedData>NumFields,Footer
- NumericData --> DeltaCompressedNumerics | TableCompressedNumerics | UncompressedNumerics | GCDCompressedNumerics
- BinaryData --> Byte (WriteByte(Byte)) DataLength,Addresses
- SortedData --> FST<Int64> (FST<T>)
- DeltaCompressedNumerics --> BlockPackedInts(blockSize=4096) (BlockPackedWriter)
- TableCompressedNumerics --> TableSize, Int64 (WriteInt64(Int64)) TableSize, PackedInts (PackedInt32s)
- UncompressedNumerics --> Byte (WriteByte(Byte)) maxdoc
- Addresses --> MonotonicBlockPackedInts(blockSize=4096) (MonotonicBlockPackedWriter)
- Footer --> CodecFooter (WriteFooter(IndexOutput)
SortedSet entries store the list of ordinals in their BinaryData as a sequences of increasing vLongs (WriteVInt64(Int64)), delta-encoded.
Limitations:
- Binary doc values can be at most MAX_BINARY_FIELD_LENGTH in length.
Inherited Members
Namespace: Lucene.Net.Codecs.Lucene42
Assembly: Lucene.Net.dll
Syntax
[Obsolete("Only for reading old 4.2 segments")]
[DocValuesFormatName("Lucene42")]
public class Lucene42DocValuesFormat : DocValuesFormat
Constructors
| Improve this Doc View SourceLucene42DocValuesFormat()
Calls Lucene42DocValuesFormat(PackedInts.DEFAULT)
(Lucene42DocValuesFormat(Single).
Declaration
public Lucene42DocValuesFormat()
Lucene42DocValuesFormat(Single)
Creates a new Lucene42DocValuesFormat with the specified
acceptableOverheadRatio
for NumericDocValues.
Note
This API is experimental and might change in incompatible ways in the next release.
Declaration
public Lucene42DocValuesFormat(float acceptableOverheadRatio)
Parameters
Type | Name | Description |
---|---|---|
System.Single | acceptableOverheadRatio | Compression parameter for numerics. Currently this is only used when the number of unique values is small. |
Fields
| Improve this Doc View Sourcem_acceptableOverheadRatio
Declaration
protected readonly float m_acceptableOverheadRatio
Field Value
Type | Description |
---|---|
System.Single |
MAX_BINARY_FIELD_LENGTH
Maximum length for each binary doc values field.
Declaration
public static readonly int MAX_BINARY_FIELD_LENGTH
Field Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceFieldsConsumer(SegmentWriteState)
Declaration
public override DocValuesConsumer FieldsConsumer(SegmentWriteState state)
Parameters
Type | Name | Description |
---|---|---|
SegmentWriteState | state |
Returns
Type | Description |
---|---|
DocValuesConsumer |
Overrides
| Improve this Doc View SourceFieldsProducer(SegmentReadState)
Declaration
public override DocValuesProducer FieldsProducer(SegmentReadState state)
Parameters
Type | Name | Description |
---|---|---|
SegmentReadState | state |
Returns
Type | Description |
---|---|
DocValuesProducer |