public class DocTermOrds extends Object implements Accountable
getOrdTermsEnum(org.apache.lucene.index.LeafReader)
method, and then seek-by-ord to get the term's bytes.
While normally term ords are type long, in this API they are
int as the internal representation here cannot address
more than MAX_INT unique terms. Also, typically this
class is used on fields with relatively few unique terms
vs the number of documents. A previous internal limit (16 MB)
on how many bytes each chunk of documents may consume has been
increased to 2 GB.
Deleted documents are skipped during uninversion, and if
you look them up you'll get 0 ords.
The returned per-document ords do not retain their
original order in the document. Instead they are returned
in sorted (by ord, ie term's BytesRef comparator) order. They
are also de-dup'd (ie if doc has same term more than once
in this field, you'll only get that ord back once).
This class will create its own term index internally, allowing to
create a wrapped TermsEnum that can handle ord.
The getOrdTermsEnum(org.apache.lucene.index.LeafReader)
method then provides this wrapped
enum.
The RAM consumption of this class can be high!Modifier and Type | Field and Description |
---|---|
protected boolean |
checkForDocValues
If true, check and throw an exception if the field has docValues enabled.
|
static int |
DEFAULT_INDEX_INTERVAL_BITS
Every 128th term is indexed, by default.
|
protected String |
field
Field we are uninverting.
|
protected int[] |
index
Holds the per-document ords or a pointer to the ords.
|
protected BytesRef[] |
indexedTermsArray
Holds the indexed (by default every 128th) terms.
|
protected int |
maxTermDocFreq
Don't uninvert terms that exceed this count.
|
protected int |
numTermsInField
Number of terms in the field.
|
protected int |
ordBase
Ordinal of the first term in the field, or 0 if the
PostingsFormat does not implement TermsEnum.ord() . |
protected int |
phase1_time
Time for phase1 of the uninvert process.
|
protected PostingsEnum |
postingsEnum
Used while uninverting.
|
protected BytesRef |
prefix
If non-null, only terms matching this prefix were
indexed.
|
protected long |
sizeOfIndexedStrings
Total bytes (sum of term lengths) for all indexed terms.
|
protected long |
termInstances
Total number of references to term numbers.
|
protected byte[][] |
tnums
Holds term ords for documents.
|
protected int |
total_time
Total time to uninvert the field.
|
Modifier | Constructor and Description |
---|---|
|
DocTermOrds(LeafReader reader,
Bits liveDocs,
String field)
Inverts all terms.
|
|
DocTermOrds(LeafReader reader,
Bits liveDocs,
String field,
BytesRef termPrefix)
Inverts only terms starting w/ prefix
|
|
DocTermOrds(LeafReader reader,
Bits liveDocs,
String field,
BytesRef termPrefix,
int maxTermDocFreq)
Inverts only terms starting w/ prefix, and only terms
whose docFreq (not taking deletions into account) is
<= maxTermDocFreq
|
|
DocTermOrds(LeafReader reader,
Bits liveDocs,
String field,
BytesRef termPrefix,
int maxTermDocFreq,
int indexIntervalBits)
Inverts only terms starting w/ prefix, and only terms
whose docFreq (not taking deletions into account) is
<= maxTermDocFreq, with a custom indexing interval
(default is every 128nd term).
|
protected |
DocTermOrds(String field,
int maxTermDocFreq,
int indexIntervalBits)
Subclass inits w/ this, but be sure you then call
uninvert, only once
|
Modifier and Type | Method and Description |
---|---|
TermsEnum |
getOrdTermsEnum(LeafReader reader)
Returns a TermsEnum that implements ord, or null if no terms in field.
|
boolean |
isEmpty()
Returns
true if no terms were indexed. |
SortedSetDocValues |
iterator(LeafReader reader)
Returns a SortedSetDocValues view of this instance
|
BytesRef |
lookupTerm(TermsEnum termsEnum,
int ord)
Returns the term (
BytesRef ) corresponding to
the provided ordinal. |
int |
numTerms()
Returns the number of terms in this field
|
long |
ramBytesUsed()
Returns total bytes used.
|
protected void |
setActualDocFreq(int termNum,
int df)
Invoked during
uninvert(org.apache.lucene.index.LeafReader,Bits,BytesRef)
to record the document frequency for each uninverted
term. |
protected void |
uninvert(LeafReader reader,
Bits liveDocs,
BytesRef termPrefix)
Call this only once (if you subclass!)
|
protected void |
visitTerm(TermsEnum te,
int termNum)
Subclass can override this
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getChildResources
public static final int DEFAULT_INDEX_INTERVAL_BITS
protected final int maxTermDocFreq
protected final String field
protected int numTermsInField
protected long termInstances
protected int total_time
protected int phase1_time
protected int[] index
protected byte[][] tnums
protected long sizeOfIndexedStrings
protected BytesRef[] indexedTermsArray
protected BytesRef prefix
protected int ordBase
PostingsFormat
does not implement TermsEnum.ord()
.protected PostingsEnum postingsEnum
protected boolean checkForDocValues
public DocTermOrds(LeafReader reader, Bits liveDocs, String field) throws IOException
IOException
public DocTermOrds(LeafReader reader, Bits liveDocs, String field, BytesRef termPrefix) throws IOException
IOException
public DocTermOrds(LeafReader reader, Bits liveDocs, String field, BytesRef termPrefix, int maxTermDocFreq) throws IOException
IOException
public DocTermOrds(LeafReader reader, Bits liveDocs, String field, BytesRef termPrefix, int maxTermDocFreq, int indexIntervalBits) throws IOException
IOException
protected DocTermOrds(String field, int maxTermDocFreq, int indexIntervalBits)
public long ramBytesUsed()
ramBytesUsed
in interface Accountable
public TermsEnum getOrdTermsEnum(LeafReader reader) throws IOException
we build a "private" terms index internally (WARNING: consumes RAM) and use that index to implement ord. This also enables ord on top of a composite reader. The returned TermsEnum is unpositioned. This returns null if there are no terms.
NOTE: you must pass the same reader that was used when creating this class
IOException
public int numTerms()
public boolean isEmpty()
true
if no terms were indexed.protected void visitTerm(TermsEnum te, int termNum) throws IOException
IOException
protected void setActualDocFreq(int termNum, int df) throws IOException
uninvert(org.apache.lucene.index.LeafReader,Bits,BytesRef)
to record the document frequency for each uninverted
term.IOException
protected void uninvert(LeafReader reader, Bits liveDocs, BytesRef termPrefix) throws IOException
IOException
public BytesRef lookupTerm(TermsEnum termsEnum, int ord) throws IOException
BytesRef
) corresponding to
the provided ordinal.IOException
public SortedSetDocValues iterator(LeafReader reader) throws IOException
IOException
Copyright © 2000-2019 Apache Software Foundation. All Rights Reserved.