/* * 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. */ package org.elasticsearch.action.support.replication; import org.elasticsearch.action.ActionRequest; import org.elasticsearch.action.ActionRequestValidationException; import org.elasticsearch.action.IndicesRequest; import org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction; import org.elasticsearch.action.index.IndexRequest; import org.elasticsearch.action.support.ActiveShardCount; import org.elasticsearch.action.support.IndicesOptions; import org.elasticsearch.common.Nullable; import org.elasticsearch.common.io.stream.StreamInput; import org.elasticsearch.common.io.stream.StreamOutput; import org.elasticsearch.common.unit.TimeValue; import org.elasticsearch.index.shard.ShardId; import org.elasticsearch.tasks.Task; import org.elasticsearch.tasks.TaskId; import java.io.IOException; import java.util.concurrent.TimeUnit; import static org.elasticsearch.action.ValidateActions.addValidationError; /** * Requests that are run on a particular replica, first on the primary and then on the replicas like {@link IndexRequest} or * {@link TransportShardRefreshAction}. */ public abstract class ReplicationRequest<Request extends ReplicationRequest<Request>> extends ActionRequest implements IndicesRequest { public static final TimeValue DEFAULT_TIMEOUT = new TimeValue(1, TimeUnit.MINUTES); /** * Target shard the request should execute on. In case of index and delete requests, * shard id gets resolved by the transport action before performing request operation * and at request creation time for shard-level bulk, refresh and flush requests. */ protected ShardId shardId; long primaryTerm; protected TimeValue timeout = DEFAULT_TIMEOUT; protected String index; /** * The number of shard copies that must be active before proceeding with the replication action. */ protected ActiveShardCount waitForActiveShards = ActiveShardCount.DEFAULT; private long routedBasedOnClusterVersion = 0; public ReplicationRequest() { } /** * Creates a new request with resolved shard id */ public ReplicationRequest(ShardId shardId) { this.index = shardId.getIndexName(); this.shardId = shardId; } /** * A timeout to wait if the index operation can't be performed immediately. Defaults to <tt>1m</tt>. */ @SuppressWarnings("unchecked") public final Request timeout(TimeValue timeout) { this.timeout = timeout; return (Request) this; } /** * A timeout to wait if the index operation can't be performed immediately. Defaults to <tt>1m</tt>. */ public final Request timeout(String timeout) { return timeout(TimeValue.parseTimeValue(timeout, null, getClass().getSimpleName() + ".timeout")); } public TimeValue timeout() { return timeout; } public String index() { return this.index; } @SuppressWarnings("unchecked") public final Request index(String index) { this.index = index; return (Request) this; } @Override public String[] indices() { return new String[]{index}; } @Override public IndicesOptions indicesOptions() { return IndicesOptions.strictSingleIndexNoExpandForbidClosed(); } public ActiveShardCount waitForActiveShards() { return this.waitForActiveShards; } /** * @return the shardId of the shard where this operation should be executed on. * can be null if the shardID has not yet been resolved */ @Nullable public ShardId shardId() { return shardId; } /** * Sets the number of shard copies that must be active before proceeding with the replication * operation. Defaults to {@link ActiveShardCount#DEFAULT}, which requires one shard copy * (the primary) to be active. Set this value to {@link ActiveShardCount#ALL} to * wait for all shards (primary and all replicas) to be active. Otherwise, use * {@link ActiveShardCount#from(int)} to set this value to any non-negative integer, up to the * total number of shard copies (number of replicas + 1). */ @SuppressWarnings("unchecked") public final Request waitForActiveShards(ActiveShardCount waitForActiveShards) { this.waitForActiveShards = waitForActiveShards; return (Request) this; } /** * A shortcut for {@link #waitForActiveShards(ActiveShardCount)} where the numerical * shard count is passed in, instead of having to first call {@link ActiveShardCount#from(int)} * to get the ActiveShardCount. */ @SuppressWarnings("unchecked") public final Request waitForActiveShards(final int waitForActiveShards) { return waitForActiveShards(ActiveShardCount.from(waitForActiveShards)); } /** * Sets the minimum version of the cluster state that is required on the next node before we redirect to another primary. * Used to prevent redirect loops, see also {@link TransportReplicationAction.ReroutePhase#doRun()} */ @SuppressWarnings("unchecked") Request routedBasedOnClusterVersion(long routedBasedOnClusterVersion) { this.routedBasedOnClusterVersion = routedBasedOnClusterVersion; return (Request) this; } long routedBasedOnClusterVersion() { return routedBasedOnClusterVersion; } /** returns the primary term active at the time the operation was performed on the primary shard */ public long primaryTerm() { return primaryTerm; } /** marks the primary term in which the operation was performed */ public void primaryTerm(long term) { primaryTerm = term; } @Override public ActionRequestValidationException validate() { ActionRequestValidationException validationException = null; if (index == null) { validationException = addValidationError("index is missing", validationException); } return validationException; } @Override public void readFrom(StreamInput in) throws IOException { super.readFrom(in); if (in.readBoolean()) { shardId = ShardId.readShardId(in); } else { shardId = null; } waitForActiveShards = ActiveShardCount.readFrom(in); timeout = new TimeValue(in); index = in.readString(); routedBasedOnClusterVersion = in.readVLong(); primaryTerm = in.readVLong(); } @Override public void writeTo(StreamOutput out) throws IOException { super.writeTo(out); if (shardId != null) { out.writeBoolean(true); shardId.writeTo(out); } else { out.writeBoolean(false); } waitForActiveShards.writeTo(out); timeout.writeTo(out); out.writeString(index); out.writeVLong(routedBasedOnClusterVersion); out.writeVLong(primaryTerm); } @Override public Task createTask(long id, String type, String action, TaskId parentTaskId) { return new ReplicationTask(id, type, action, getDescription(), parentTaskId); } /** * Sets the target shard id for the request. The shard id is set when a * index/delete request is resolved by the transport action */ @SuppressWarnings("unchecked") public Request setShardId(ShardId shardId) { this.shardId = shardId; return (Request) this; } @Override public abstract String toString(); // force a proper to string to ease debugging @Override public String getDescription() { return toString(); } /** * This method is called before this replication request is retried * the first time. */ public void onRetry() { // nothing by default } }