Package org.apache.lucene.index
Class CheckIndex.Status.SegmentInfoStatus
- java.lang.Object
-
- org.apache.lucene.index.CheckIndex.Status.SegmentInfoStatus
-
- Enclosing class:
- CheckIndex.Status
public static class CheckIndex.Status.SegmentInfoStatus extends java.lang.ObjectHolds the status of each segment in the index. SeeCheckIndex.Status.segmentInfos.
-
-
Field Summary
Fields Modifier and Type Field Description CodeccodecCodec used to read this segment.booleancompoundTrue if segment is compound file format.longdeletionsGenCurrent deletions generation.java.util.Map<java.lang.String,java.lang.String>diagnosticsMap that includes certain debugging details that IndexWriter records into each segment it createsintdocCountDocument count (does not take deletions into account).booleandocStoreCompoundFileTrue if the shared doc store files are compound file format.intdocStoreOffsetDoc store offset, if this segment shares the doc store files (stored fields and term vectors) with other segments.java.lang.StringdocStoreSegmentString of the shared doc store segment, or null if this segment does not share the doc store files.CheckIndex.Status.DocValuesStatusdocValuesStatusStatus for testing of DocValues (null if DocValues could not be tested).CheckIndex.Status.FieldNormStatusfieldNormStatusStatus for testing of field norms (null if field norms could not be tested).booleanhasDeletionsTrue if this segment has pending deletions.java.lang.StringnameName of the segment.intnumDeletedNumber of deleted documents.intnumFilesNumber of files referenced by this segment.booleanopenReaderPassedTrue if we were able to open an AtomicReader on this segment.doublesizeMBNet size (MB) of the files referenced by this segment.CheckIndex.Status.StoredFieldStatusstoredFieldStatusStatus for testing of stored fields (null if stored fields could not be tested).CheckIndex.Status.TermIndexStatustermIndexStatusStatus for testing of indexed terms (null if indexed terms could not be tested).CheckIndex.Status.TermVectorStatustermVectorStatusStatus for testing of term vectors (null if term vectors could not be tested).
-
-
-
Field Detail
-
name
public java.lang.String name
Name of the segment.
-
codec
public Codec codec
Codec used to read this segment.
-
docCount
public int docCount
Document count (does not take deletions into account).
-
compound
public boolean compound
True if segment is compound file format.
-
numFiles
public int numFiles
Number of files referenced by this segment.
-
sizeMB
public double sizeMB
Net size (MB) of the files referenced by this segment.
-
docStoreOffset
public int docStoreOffset
Doc store offset, if this segment shares the doc store files (stored fields and term vectors) with other segments. This is -1 if it does not share.
-
docStoreSegment
public java.lang.String docStoreSegment
String of the shared doc store segment, or null if this segment does not share the doc store files.
-
docStoreCompoundFile
public boolean docStoreCompoundFile
True if the shared doc store files are compound file format.
-
hasDeletions
public boolean hasDeletions
True if this segment has pending deletions.
-
deletionsGen
public long deletionsGen
Current deletions generation.
-
numDeleted
public int numDeleted
Number of deleted documents.
-
openReaderPassed
public boolean openReaderPassed
True if we were able to open an AtomicReader on this segment.
-
diagnostics
public java.util.Map<java.lang.String,java.lang.String> diagnostics
Map that includes certain debugging details that IndexWriter records into each segment it creates
-
fieldNormStatus
public CheckIndex.Status.FieldNormStatus fieldNormStatus
Status for testing of field norms (null if field norms could not be tested).
-
termIndexStatus
public CheckIndex.Status.TermIndexStatus termIndexStatus
Status for testing of indexed terms (null if indexed terms could not be tested).
-
storedFieldStatus
public CheckIndex.Status.StoredFieldStatus storedFieldStatus
Status for testing of stored fields (null if stored fields could not be tested).
-
termVectorStatus
public CheckIndex.Status.TermVectorStatus termVectorStatus
Status for testing of term vectors (null if term vectors could not be tested).
-
docValuesStatus
public CheckIndex.Status.DocValuesStatus docValuesStatus
Status for testing of DocValues (null if DocValues could not be tested).
-
-