Class SegmentInfos
- All Implemented Interfaces:
Cloneable
,Iterable<SegmentCommitInfo>
The active segments in the index are stored in the segment info file,
segments_N. There may be one or more segments_N files in the
index; however, the one with the largest generation is the active one (when
older segments_N files are present it's because they temporarily cannot be
deleted, or, a writer is in the process of committing, or a custom
IndexDeletionPolicy
is in use). This file lists each segment by name and has details about the
codec and generation of deletes.
There is also a file segments.gen. This file contains
the current generation (the _N in segments_N) of the index.
This is used only as a fallback in case the current generation cannot be
accurately determined by directory listing alone (as is the case for some NFS
clients with time-based directory cache expiration). This file simply contains
an Int32
version header
(FORMAT_SEGMENTS_GEN_CURRENT
), followed by the
generation recorded as Int64
, written twice.
Files:
- segments.gen: GenHeader, Generation, Generation
- segments_N: Header, Version, NameCounter, SegCount, <SegName, SegCodec, DelGen, DeletionCount, FieldInfosGen, UpdatesFiles>SegCount, CommitUserData, Checksum
- Header -->
CodecHeader
- GenHeader, NameCounter, SegCount, DeletionCount -->
Int32
- Generation, Version, DelGen, Checksum, FieldInfosGen -->
Int64
- SegName, SegCodec -->
String
- CommitUserData -->
Map<String,String>
- UpdatesFiles -->
Set<String>
- Version counts how often the index has been changed by adding or deleting documents.
- NameCounter is used to generate names for new segment files.
- SegName is the name of the segment, and is used as the file name prefix for all of the files that compose the segment's index.
- DelGen is the generation count of the deletes file. If this is -1,
there are no deletes. Anything above zero means there are deletes
stored by
LiveDocsFormat
. - DeletionCount records the number of deleted documents in this segment.
- Checksum contains the CRC32 checksum of all bytes in the segments_N file up until the checksum. This is used to verify integrity of the file on opening the index.
- SegCodec is the
name
of the Codec that encoded this segment. - CommitUserData stores an optional user-supplied opaque
Map<String,String> that was passed to
IndexWriter.setCommitData(java.util.Map)
. - FieldInfosGen is the generation count of the fieldInfos file. If this is -1,
there are no updates to the fieldInfos in that segment. Anything above zero
means there are updates to fieldInfos stored by
FieldInfosFormat
. - UpdatesFiles stores the list of files that were updated in that segment.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Utility class for executing code that needs to do something with the current segments file. -
Field Summary
FieldsModifier and TypeFieldDescriptionint
Used to name new segments.static final int
Used for the segments.gen file only! Whenever you add a new format, make it 1 smaller (negative version logic)!Opaque Map<String, String> that user can specify during IndexWriter.commitlong
Counts how often the index has been changed.static final int
The file format version for the segments_N codec header, up to 4.5.static final int
The file format version for the segments_N codec header, since 4.6+. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(SegmentCommitInfo si) Appends the providedSegmentCommitInfo
.void
addAll
(Iterable<SegmentCommitInfo> sis) Appends the providedSegmentCommitInfo
s.asList()
Returns all contained segments as an unmodifiableList
view.void
changed()
Call this before committing if changes have been made to the segments.void
clear()
Clear allSegmentCommitInfo
s.clone()
Returns a copy of this instance, also copying each SegmentInfo.Returns all file names referenced by SegmentInfo instances matching the provided Directory (ie files associated with any "external" segments are skipped).static long
generationFromSegmentsFileName
(String fileName) Parse the generation off the segments file name and return it.static int
Returns thedefaultGenLookaheadCount
.long
Returns current generation.static PrintStream
ReturnsinfoStream
.static long
getLastCommitGeneration
(String[] files) Get the generation of the most recent commit to the list of index files (N in the segments_N file).static long
getLastCommitGeneration
(Directory directory) Get the generation of the most recent commit to the index in this directory (N in the segments_N file).static String
getLastCommitSegmentsFileName
(String[] files) Get the filename of the segments_N file for the most recent commit in the list of index files.static String
getLastCommitSegmentsFileName
(Directory directory) Get the filename of the segments_N file for the most recent commit to the index in this Directory.long
Returns last succesfully read or written generation.Get the next segments_N filename that will be written.Get the segments_N filename in use by this segment infos.ReturnuserData
saved with this commit.long
version number when this SegmentInfos was generated.info
(int i) ReturnsSegmentCommitInfo
at the provided index.iterator()
Returns an unmodifiableIterator
of contained segments in order.final void
Find the latest commit (segments_N file
) and load allSegmentCommitInfo
s.final void
Read a particular segmentFileName.void
Remove the providedSegmentCommitInfo
.static void
setDefaultGenLookaheadCount
(int count) Advanced: set how many times to try incrementing the gen when loading the segments file.static void
setInfoStream
(PrintStream infoStream) If non-null, information about retries when loading the segments file will be printed to this.int
size()
Returns number ofSegmentCommitInfo
s.Returns readable description of this segment.int
Returns sum of all segment's docCounts.static String
write3xInfo
(Directory dir, SegmentInfo si, IOContext context) Deprecated.static void
writeSegmentsGen
(Directory dir, long generation) A utility for writing theIndexFileNames.SEGMENTS_GEN
file to aDirectory
.Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Field Details
-
VERSION_40
public static final int VERSION_40The file format version for the segments_N codec header, up to 4.5.- See Also:
-
VERSION_46
public static final int VERSION_46The file format version for the segments_N codec header, since 4.6+.- See Also:
-
FORMAT_SEGMENTS_GEN_CURRENT
public static final int FORMAT_SEGMENTS_GEN_CURRENTUsed for the segments.gen file only! Whenever you add a new format, make it 1 smaller (negative version logic)!- See Also:
-
counter
public int counterUsed to name new segments. -
version
public long versionCounts how often the index has been changed. -
userData
Opaque Map<String, String> that user can specify during IndexWriter.commit
-
-
Constructor Details
-
SegmentInfos
public SegmentInfos()Sole constructor. Typically you call this and then useor #read(Directory,String)
to populate eachSegmentCommitInfo
. Alternatively, you can add/remove your ownSegmentCommitInfo
s.
-
-
Method Details
-
info
ReturnsSegmentCommitInfo
at the provided index. -
getLastCommitGeneration
Get the generation of the most recent commit to the list of index files (N in the segments_N file).- Parameters:
files
- -- array of file names to check
-
getLastCommitGeneration
Get the generation of the most recent commit to the index in this directory (N in the segments_N file).- Parameters:
directory
- -- directory to search for the latest segments_N file- Throws:
IOException
-
getLastCommitSegmentsFileName
Get the filename of the segments_N file for the most recent commit in the list of index files.- Parameters:
files
- -- array of file names to check
-
getLastCommitSegmentsFileName
Get the filename of the segments_N file for the most recent commit to the index in this Directory.- Parameters:
directory
- -- directory to search for the latest segments_N file- Throws:
IOException
-
getSegmentsFileName
Get the segments_N filename in use by this segment infos. -
generationFromSegmentsFileName
Parse the generation off the segments file name and return it. -
writeSegmentsGen
A utility for writing theIndexFileNames.SEGMENTS_GEN
file to aDirectory
.NOTE: this is an internal utility which is kept public so that it's accessible by code from other packages. You should avoid calling this method unless you're absolutely sure what you're doing!
-
getNextSegmentFileName
Get the next segments_N filename that will be written. -
read
Read a particular segmentFileName. Note that this may throw an IOException if a commit is in process.- Parameters:
directory
- -- directory containing the segments filesegmentFileName
- -- segment file to load- Throws:
CorruptIndexException
- if the index is corruptIOException
- if there is a low-level IO error
-
read
Find the latest commit (segments_N file
) and load allSegmentCommitInfo
s.- Throws:
IOException
-
write3xInfo
@Deprecated public static String write3xInfo(Directory dir, SegmentInfo si, IOContext context) throws IOException Deprecated.- Throws:
IOException
-
clone
Returns a copy of this instance, also copying each SegmentInfo. -
getVersion
public long getVersion()version number when this SegmentInfos was generated. -
getGeneration
public long getGeneration()Returns current generation. -
getLastGeneration
public long getLastGeneration()Returns last succesfully read or written generation. -
setInfoStream
If non-null, information about retries when loading the segments file will be printed to this. -
setDefaultGenLookaheadCount
public static void setDefaultGenLookaheadCount(int count) Advanced: set how many times to try incrementing the gen when loading the segments file. This only runs if the primary (listing directory) and secondary (opening segments.gen file) methods fail to find the segments file. -
getDefaultGenLookahedCount
public static int getDefaultGenLookahedCount()Returns thedefaultGenLookaheadCount
.- See Also:
-
getInfoStream
ReturnsinfoStream
.- See Also:
-
files
Returns all file names referenced by SegmentInfo instances matching the provided Directory (ie files associated with any "external" segments are skipped). The returned collection is recomputed on each invocation.- Throws:
IOException
-
toString
Returns readable description of this segment. -
getUserData
ReturnuserData
saved with this commit.- See Also:
-
totalDocCount
public int totalDocCount()Returns sum of all segment's docCounts. Note that this does not include deletions -
changed
public void changed()Call this before committing if changes have been made to the segments. -
iterator
Returns an unmodifiableIterator
of contained segments in order.- Specified by:
iterator
in interfaceIterable<SegmentCommitInfo>
-
asList
Returns all contained segments as an unmodifiableList
view. -
size
public int size()Returns number ofSegmentCommitInfo
s. -
add
Appends the providedSegmentCommitInfo
. -
addAll
Appends the providedSegmentCommitInfo
s. -
clear
public void clear()Clear allSegmentCommitInfo
s. -
remove
Remove the providedSegmentCommitInfo
.WARNING: O(N) cost
-