/* * SPDX-License-Identifier: Apache-2.0 * * The OpenSearch Contributors require contributions made to * this file be licensed under the Apache-2.0 license or a * compatible open source license. */ /* * Licensed to Elasticsearch under one or more contributor * license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright * ownership. Elasticsearch licenses this file to you under * the Apache License, Version 2.0 (the "License"); you may * not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ /* * Modifications Copyright OpenSearch Contributors. See * GitHub history for details. */ package org.opensearch.index.seqno; import org.opensearch.core.ParseField; import org.opensearch.core.common.io.stream.StreamInput; import org.opensearch.core.common.io.stream.StreamOutput; import org.opensearch.core.common.io.stream.Writeable; import org.opensearch.core.xcontent.ConstructingObjectParser; import org.opensearch.core.xcontent.ToXContentObject; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.core.xcontent.XContentParser; import org.opensearch.core.xcontent.XContent; import java.io.IOException; import java.util.Objects; /** * 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"). * * @opensearch.internal */ public final class RetentionLease implements ToXContentObject, Writeable { private final String id; /** * The identifier for this retention lease. This identifier should be unique per lease and is set during construction by the caller. * * @return the identifier */ public String id() { return id; } private final 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. * * @return the retaining sequence number */ public long retainingSequenceNumber() { return retainingSequenceNumber; } private final long timestamp; /** * The timestamp of when this retention lease was created or renewed. * * @return the timestamp used as a basis for determining lease expiration */ public long timestamp() { return timestamp; } private final String source; /** * The source of this retention lease. The source is set during construction by the caller. * * @return the source */ public String source() { return source; } /** * Constructs a new retention lease. * * @param id the identifier of the retention lease * @param retainingSequenceNumber the retaining sequence number * @param timestamp the timestamp of when the retention lease was created or renewed * @param source the source of the retention lease */ public RetentionLease(final String id, final long retainingSequenceNumber, final long timestamp, final String source) { Objects.requireNonNull(id); if (id.isEmpty()) { throw new IllegalArgumentException("retention lease ID can not be empty"); } if (retainingSequenceNumber < 0) { throw new IllegalArgumentException("retention lease retaining sequence number [" + retainingSequenceNumber + "] out of range"); } if (timestamp < 0) { throw new IllegalArgumentException("retention lease timestamp [" + timestamp + "] out of range"); } Objects.requireNonNull(source); if (source.isEmpty()) { throw new IllegalArgumentException("retention lease source can not be empty"); } this.id = id; this.retainingSequenceNumber = retainingSequenceNumber; this.timestamp = timestamp; this.source = source; } /** * Constructs a new retention lease from a stream. The retention lease should have been written via {@link #writeTo(StreamOutput)}. * * @param in the stream to construct the retention lease from * @throws IOException if an I/O exception occurs reading from the stream */ public RetentionLease(final StreamInput in) throws IOException { id = in.readString(); retainingSequenceNumber = in.readZLong(); timestamp = in.readVLong(); source = in.readString(); } /** * Writes a retention lease to a stream in a manner suitable for later reconstruction via {@link #RetentionLease(StreamInput)}. * * @param out the stream to write the retention lease to * @throws IOException if an I/O exception occurs writing to the stream */ @Override public void writeTo(final StreamOutput out) throws IOException { out.writeString(id); out.writeZLong(retainingSequenceNumber); out.writeVLong(timestamp); out.writeString(source); } private static final ParseField ID_FIELD = new ParseField("id"); private static final ParseField RETAINING_SEQUENCE_NUMBER_FIELD = new ParseField("retaining_sequence_number"); private static final ParseField TIMESTAMP_FIELD = new ParseField("timestamp"); private static final ParseField SOURCE_FIELD = new ParseField("source"); private static final ConstructingObjectParser<RetentionLease, Void> PARSER = new ConstructingObjectParser<>( "retention_leases", (a) -> new RetentionLease((String) a[0], (Long) a[1], (Long) a[2], (String) a[3]) ); static { PARSER.declareString(ConstructingObjectParser.constructorArg(), ID_FIELD); PARSER.declareLong(ConstructingObjectParser.constructorArg(), RETAINING_SEQUENCE_NUMBER_FIELD); PARSER.declareLong(ConstructingObjectParser.constructorArg(), TIMESTAMP_FIELD); PARSER.declareString(ConstructingObjectParser.constructorArg(), SOURCE_FIELD); } @Override public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException { builder.startObject(); { builder.field(ID_FIELD.getPreferredName(), id); builder.field(RETAINING_SEQUENCE_NUMBER_FIELD.getPreferredName(), retainingSequenceNumber); builder.field(TIMESTAMP_FIELD.getPreferredName(), timestamp); builder.field(SOURCE_FIELD.getPreferredName(), source); } builder.endObject(); return builder; } @Override public boolean isFragment() { return false; } /** * Parses a retention lease from {@link XContent}. This method assumes that the retention lease was * converted to {@link XContent} via {@link #toXContent(XContentBuilder, Params)}. * * @param parser the parser * @return a retention lease */ public static RetentionLease fromXContent(final XContentParser parser) { return PARSER.apply(parser, null); } @Override public boolean equals(final Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; final RetentionLease that = (RetentionLease) o; return Objects.equals(id, that.id) && retainingSequenceNumber == that.retainingSequenceNumber && timestamp == that.timestamp && Objects.equals(source, that.source); } @Override public int hashCode() { return Objects.hash(id, retainingSequenceNumber, timestamp, source); } @Override public String toString() { return "RetentionLease{" + "id='" + id + '\'' + ", retainingSequenceNumber=" + retainingSequenceNumber + ", timestamp=" + timestamp + ", source='" + source + '\'' + '}'; } }