Package org.elasticsearch.index.seqno
Class RetentionLease
java.lang.Object
org.elasticsearch.index.seqno.RetentionLease
- All Implemented Interfaces:
Writeable
,ToXContent
,ToXContentObject
A "shard history retention lease" (or "retention lease" for short) is conceptually a marker containing a retaining sequence number such
that all operations with sequence number at least that retaining sequence number will be retained during merge operations (which could
otherwise merge away operations that have been soft deleted). Each retention lease contains a unique identifier, the retaining sequence
number, the timestamp of when the lease was created or renewed, and the source of the retention lease (e.g., "ccr").
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
Field Summary
Fields inherited from interface org.elasticsearch.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorDescriptionRetentionLease
(String id, long retainingSequenceNumber, long timestamp, String source) Constructs a new retention lease.Constructs a new retention lease from a stream. -
Method Summary
Modifier and TypeMethodDescriptionboolean
static RetentionLease
fromXContent
(XContentParser parser) Parses a retention lease fromXContent
.int
hashCode()
id()
The identifier for this retention lease.boolean
long
The retaining sequence number of this retention lease.source()
The source of this retention lease.long
The timestamp of when this retention lease was created or renewed.toString()
toXContent
(XContentBuilder builder, ToXContent.Params params) void
writeTo
(StreamOutput out) Writes a retention lease to a stream in a manner suitable for later reconstruction viaRetentionLease(StreamInput)
.
-
Constructor Details
-
RetentionLease
Constructs a new retention lease.- Parameters:
id
- the identifier of the retention leaseretainingSequenceNumber
- the retaining sequence numbertimestamp
- the timestamp of when the retention lease was created or renewedsource
- the source of the retention lease
-
RetentionLease
Constructs a new retention lease from a stream. The retention lease should have been written viawriteTo(StreamOutput)
.- Parameters:
in
- the stream to construct the retention lease from- Throws:
IOException
- if an I/O exception occurs reading from the stream
-
-
Method Details
-
id
The identifier for this retention lease. This identifier should be unique per lease and is set during construction by the caller.- Returns:
- the identifier
-
retainingSequenceNumber
public long retainingSequenceNumber()The retaining sequence number of this retention lease. The retaining sequence number is the minimum sequence number that this retention lease wants to retain during merge operations. The retaining sequence number is set during construction by the caller.- Returns:
- the retaining sequence number
-
timestamp
public long timestamp()The timestamp of when this retention lease was created or renewed.- Returns:
- the timestamp used as a basis for determining lease expiration
-
source
The source of this retention lease. The source is set during construction by the caller.- Returns:
- the source
-
writeTo
Writes a retention lease to a stream in a manner suitable for later reconstruction viaRetentionLease(StreamInput)
.- Specified by:
writeTo
in interfaceWriteable
- Parameters:
out
- the stream to write the retention lease to- Throws:
IOException
- if an I/O exception occurs writing to the stream
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException - Specified by:
toXContent
in interfaceToXContent
- Throws:
IOException
-
isFragment
public boolean isFragment()- Specified by:
isFragment
in interfaceToXContent
- Specified by:
isFragment
in interfaceToXContentObject
-
fromXContent
Parses a retention lease fromXContent
. This method assumes that the retention lease was converted toXContent
viatoXContent(XContentBuilder, Params)
.- Parameters:
parser
- the parser- Returns:
- a retention lease
-
equals
-
hashCode
public int hashCode() -
toString
-