Class Manifest
java.lang.Object
org.elasticsearch.cluster.metadata.Manifest
- All Implemented Interfaces:
ToXContent
,ToXContentFragment
public class Manifest extends java.lang.Object implements ToXContentFragment
This class represents the manifest file, which is the entry point for reading meta data from disk.
Metadata consists of global metadata and index metadata.
When new version of metadata is written it's assigned some generation long value.
Global metadata generation could be obtained by calling
getGlobalGeneration()
.
Index metadata generation could be obtained by calling getIndexGenerations()
.-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Field Summary
Fields Modifier and Type Field Description static MetaDataStateFormat<Manifest>
FORMAT
-
Constructor Summary
-
Method Summary
Modifier and Type Method Description static Manifest
empty()
boolean
equals(java.lang.Object o)
static Manifest
fromXContent(XContentParser parser)
long
getClusterStateVersion()
long
getCurrentTerm()
long
getGlobalGeneration()
Returns global metadata generation.java.util.Map<Index,java.lang.Long>
getIndexGenerations()
Returns map fromIndex
to index metadata generation.int
hashCode()
boolean
isEmpty()
boolean
isGlobalGenerationMissing()
java.lang.String
toString()
XContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
static Manifest
unknownCurrentTermAndVersion(long globalGeneration, java.util.Map<Index,java.lang.Long> indexGenerations)
-
Field Details
-
Constructor Details
-
Method Details
-
unknownCurrentTermAndVersion
-
getGlobalGeneration
public long getGlobalGeneration()Returns global metadata generation. -
getIndexGenerations
Returns map fromIndex
to index metadata generation. -
getCurrentTerm
public long getCurrentTerm() -
getClusterStateVersion
public long getClusterStateVersion() -
equals
public boolean equals(java.lang.Object o)- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException- Specified by:
toXContent
in interfaceToXContent
- Throws:
java.io.IOException
-
fromXContent
- Throws:
java.io.IOException
-
isEmpty
public boolean isEmpty() -
empty
-
isGlobalGenerationMissing
public boolean isGlobalGenerationMissing()
-