Add BWC layer to seq no infra and enable BWC tests (#22185)
Sequence BWC logic consists of two elements: 1) Wire level BWC using stream versions. 2) A changed to the global checkpoint maintenance semantics. For the sequence number infra to work with a mixed version clusters, we have to consider situation where the primary is on an old node and replicas are on new ones (i.e., the replicas will receive operations without seq#) and also the reverse (i.e., the primary sends operations to a replica but the replica can't process the seq# and respond with local checkpoint). An new primary with an old replica is a rare because we do not allow a replica to recover from a new primary. However, it can occur if the old primary failed and a new replica was promoted or during primary relocation where the source primary is treated as a replica until the master starts the target. 1) Old Primary & New Replica - this case is easy as is taken care of by the wire level BWC. All incoming requests will have their seq# set to `UNASSIGNED_SEQ_NO`, which doesn't confuse the local checkpoint logic (keeping it at `NO_OPS_PERFORMED`) 2) New Primary & Old replica - this one is trickier as the global checkpoint service currently takes all in sync replicas into consideration for the global checkpoint calculation. In order to deal with old replicas, we change the semantics to say all *new node* in sync replicas. That means the replicas on old nodes don't count for the global checkpointing. In this state the seq# infra is not fully operational (you can't search on it, because copies may miss it) but it is maintained on shards that can support it. The old replicas will have to go through a file based recovery at some point and will get the seq# information at that point. There is still an edge case where a new primary fails and an old replica takes over. I'lll discuss this one with @ywelsch as I prefer to avoid it completely. This PR also re-enables the BWC tests which were disabled. As such it had to fix any BWC issue that had crept in. Most notably an issue with the removal of the `timestamp` field in #21670. The commit also includes a fix for the default value of the seq number field in replicated write requests (it was 0 but should be -2), that surface some other minor bugs which are fixed as well. Last - I added some debugging tools like more sane node names and forcing replication request to implement a `toString`
This commit is contained in:
parent
b58bbb9e48
commit
b857b316b6
|
@ -38,11 +38,14 @@ dependency-reduced-pom.xml
|
||||||
# osx stuff
|
# osx stuff
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
|
# default folders in which the create_bwc_index.py expects to find old es versions in
|
||||||
|
/backwards
|
||||||
|
/dev-tools/backwards
|
||||||
|
|
||||||
# needed in case docs build is run...maybe we can configure doc build to generate files under build?
|
# needed in case docs build is run...maybe we can configure doc build to generate files under build?
|
||||||
html_docs
|
html_docs
|
||||||
|
|
||||||
# random old stuff that we should look at the necessity of...
|
# random old stuff that we should look at the necessity of...
|
||||||
/tmp/
|
/tmp/
|
||||||
backwards/
|
|
||||||
eclipse-build
|
eclipse-build
|
||||||
|
|
||||||
|
|
|
@ -268,6 +268,7 @@ class ClusterFormationTasks {
|
||||||
static Task configureWriteConfigTask(String name, Project project, Task setup, NodeInfo node, NodeInfo seedNode) {
|
static Task configureWriteConfigTask(String name, Project project, Task setup, NodeInfo node, NodeInfo seedNode) {
|
||||||
Map esConfig = [
|
Map esConfig = [
|
||||||
'cluster.name' : node.clusterName,
|
'cluster.name' : node.clusterName,
|
||||||
|
'node.name' : "node-" + node.nodeNum,
|
||||||
'pidfile' : node.pidFile,
|
'pidfile' : node.pidFile,
|
||||||
'path.repo' : "${node.sharedDir}/repo",
|
'path.repo' : "${node.sharedDir}/repo",
|
||||||
'path.shared_data' : "${node.sharedDir}/",
|
'path.shared_data' : "${node.sharedDir}/",
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
*/
|
*/
|
||||||
package org.elasticsearch.action;
|
package org.elasticsearch.action;
|
||||||
|
|
||||||
|
import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.action.support.WriteRequest;
|
import org.elasticsearch.action.support.WriteRequest;
|
||||||
import org.elasticsearch.action.support.WriteRequest.RefreshPolicy;
|
import org.elasticsearch.action.support.WriteRequest.RefreshPolicy;
|
||||||
import org.elasticsearch.action.support.WriteResponse;
|
import org.elasticsearch.action.support.WriteResponse;
|
||||||
|
@ -214,7 +215,11 @@ public abstract class DocWriteResponse extends ReplicationResponse implements Wr
|
||||||
type = in.readString();
|
type = in.readString();
|
||||||
id = in.readString();
|
id = in.readString();
|
||||||
version = in.readZLong();
|
version = in.readZLong();
|
||||||
seqNo = in.readZLong();
|
if (in.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
seqNo = in.readZLong();
|
||||||
|
} else {
|
||||||
|
seqNo = SequenceNumbersService.UNASSIGNED_SEQ_NO;
|
||||||
|
}
|
||||||
forcedRefresh = in.readBoolean();
|
forcedRefresh = in.readBoolean();
|
||||||
result = Result.readFrom(in);
|
result = Result.readFrom(in);
|
||||||
}
|
}
|
||||||
|
@ -226,7 +231,9 @@ public abstract class DocWriteResponse extends ReplicationResponse implements Wr
|
||||||
out.writeString(type);
|
out.writeString(type);
|
||||||
out.writeString(id);
|
out.writeString(id);
|
||||||
out.writeZLong(version);
|
out.writeZLong(version);
|
||||||
out.writeZLong(seqNo);
|
if (out.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
out.writeZLong(seqNo);
|
||||||
|
}
|
||||||
out.writeBoolean(forcedRefresh);
|
out.writeBoolean(forcedRefresh);
|
||||||
result.writeTo(out);
|
result.writeTo(out);
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,6 +58,6 @@ public class ShardFlushRequest extends ReplicationRequest<ShardFlushRequest> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "flush {" + super.toString() + "}";
|
return "flush {" + shardId + "}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
package org.elasticsearch.action.admin.indices.stats;
|
package org.elasticsearch.action.admin.indices.stats;
|
||||||
|
|
||||||
|
import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.cluster.routing.ShardRouting;
|
import org.elasticsearch.cluster.routing.ShardRouting;
|
||||||
import org.elasticsearch.common.Nullable;
|
import org.elasticsearch.common.Nullable;
|
||||||
import org.elasticsearch.common.io.stream.StreamInput;
|
import org.elasticsearch.common.io.stream.StreamInput;
|
||||||
|
@ -103,7 +104,9 @@ public class ShardStats implements Streamable, Writeable, ToXContent {
|
||||||
statePath = in.readString();
|
statePath = in.readString();
|
||||||
dataPath = in.readString();
|
dataPath = in.readString();
|
||||||
isCustomDataPath = in.readBoolean();
|
isCustomDataPath = in.readBoolean();
|
||||||
seqNoStats = in.readOptionalWriteable(SeqNoStats::new);
|
if (in.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
seqNoStats = in.readOptionalWriteable(SeqNoStats::new);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -114,7 +117,9 @@ public class ShardStats implements Streamable, Writeable, ToXContent {
|
||||||
out.writeString(statePath);
|
out.writeString(statePath);
|
||||||
out.writeString(dataPath);
|
out.writeString(dataPath);
|
||||||
out.writeBoolean(isCustomDataPath);
|
out.writeBoolean(isCustomDataPath);
|
||||||
out.writeOptionalWriteable(seqNoStats);
|
if (out.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
out.writeOptionalWriteable(seqNoStats);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -50,7 +50,6 @@ import org.elasticsearch.index.engine.Engine;
|
||||||
import org.elasticsearch.index.engine.EngineClosedException;
|
import org.elasticsearch.index.engine.EngineClosedException;
|
||||||
import org.elasticsearch.index.engine.VersionConflictEngineException;
|
import org.elasticsearch.index.engine.VersionConflictEngineException;
|
||||||
import org.elasticsearch.index.mapper.MapperParsingException;
|
import org.elasticsearch.index.mapper.MapperParsingException;
|
||||||
import org.elasticsearch.index.seqno.GlobalCheckpointSyncAction;
|
|
||||||
import org.elasticsearch.index.seqno.SequenceNumbersService;
|
import org.elasticsearch.index.seqno.SequenceNumbersService;
|
||||||
import org.elasticsearch.index.shard.IndexShard;
|
import org.elasticsearch.index.shard.IndexShard;
|
||||||
import org.elasticsearch.index.shard.IndexShardClosedException;
|
import org.elasticsearch.index.shard.IndexShardClosedException;
|
||||||
|
@ -151,7 +150,7 @@ public class TransportShardBulkAction extends TransportWriteAction<BulkShardRequ
|
||||||
final long version = indexResult.getVersion();
|
final long version = indexResult.getVersion();
|
||||||
indexRequest.version(version);
|
indexRequest.version(version);
|
||||||
indexRequest.versionType(indexRequest.versionType().versionTypeForReplicationAndRecovery());
|
indexRequest.versionType(indexRequest.versionType().versionTypeForReplicationAndRecovery());
|
||||||
indexRequest.seqNo(indexResult.getSeqNo());
|
indexRequest.setSeqNo(indexResult.getSeqNo());
|
||||||
assert indexRequest.versionType().validateVersionForWrites(indexRequest.version());
|
assert indexRequest.versionType().validateVersionForWrites(indexRequest.version());
|
||||||
response = new IndexResponse(primary.shardId(), indexRequest.type(), indexRequest.id(), indexResult.getSeqNo(),
|
response = new IndexResponse(primary.shardId(), indexRequest.type(), indexRequest.id(), indexResult.getSeqNo(),
|
||||||
indexResult.getVersion(), indexResult.isCreated());
|
indexResult.getVersion(), indexResult.isCreated());
|
||||||
|
@ -175,7 +174,7 @@ public class TransportShardBulkAction extends TransportWriteAction<BulkShardRequ
|
||||||
// update the request with the version so it will go to the replicas
|
// update the request with the version so it will go to the replicas
|
||||||
deleteRequest.versionType(deleteRequest.versionType().versionTypeForReplicationAndRecovery());
|
deleteRequest.versionType(deleteRequest.versionType().versionTypeForReplicationAndRecovery());
|
||||||
deleteRequest.version(deleteResult.getVersion());
|
deleteRequest.version(deleteResult.getVersion());
|
||||||
deleteRequest.seqNo(deleteResult.getSeqNo());
|
deleteRequest.setSeqNo(deleteResult.getSeqNo());
|
||||||
assert deleteRequest.versionType().validateVersionForWrites(deleteRequest.version());
|
assert deleteRequest.versionType().validateVersionForWrites(deleteRequest.version());
|
||||||
response = new DeleteResponse(request.shardId(), deleteRequest.type(), deleteRequest.id(), deleteResult.getSeqNo(),
|
response = new DeleteResponse(request.shardId(), deleteRequest.type(), deleteRequest.id(), deleteResult.getSeqNo(),
|
||||||
deleteResult.getVersion(), deleteResult.isFound());
|
deleteResult.getVersion(), deleteResult.isFound());
|
||||||
|
@ -286,7 +285,7 @@ public class TransportShardBulkAction extends TransportWriteAction<BulkShardRequ
|
||||||
final long version = updateOperationResult.getVersion();
|
final long version = updateOperationResult.getVersion();
|
||||||
indexRequest.version(version);
|
indexRequest.version(version);
|
||||||
indexRequest.versionType(indexRequest.versionType().versionTypeForReplicationAndRecovery());
|
indexRequest.versionType(indexRequest.versionType().versionTypeForReplicationAndRecovery());
|
||||||
indexRequest.seqNo(updateOperationResult.getSeqNo());
|
indexRequest.setSeqNo(updateOperationResult.getSeqNo());
|
||||||
assert indexRequest.versionType().validateVersionForWrites(indexRequest.version());
|
assert indexRequest.versionType().validateVersionForWrites(indexRequest.version());
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -297,7 +296,7 @@ public class TransportShardBulkAction extends TransportWriteAction<BulkShardRequ
|
||||||
// update the request with the version so it will go to the replicas
|
// update the request with the version so it will go to the replicas
|
||||||
deleteRequest.versionType(deleteRequest.versionType().versionTypeForReplicationAndRecovery());
|
deleteRequest.versionType(deleteRequest.versionType().versionTypeForReplicationAndRecovery());
|
||||||
deleteRequest.version(updateOperationResult.getVersion());
|
deleteRequest.version(updateOperationResult.getVersion());
|
||||||
deleteRequest.seqNo(updateOperationResult.getSeqNo());
|
deleteRequest.setSeqNo(updateOperationResult.getSeqNo());
|
||||||
assert deleteRequest.versionType().validateVersionForWrites(deleteRequest.version());
|
assert deleteRequest.versionType().validateVersionForWrites(deleteRequest.version());
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -349,9 +348,9 @@ public class TransportShardBulkAction extends TransportWriteAction<BulkShardRequ
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
assert (replicaRequest.request() instanceof IndexRequest
|
assert (replicaRequest.request() instanceof IndexRequest
|
||||||
&& ((IndexRequest) replicaRequest.request()).seqNo() != SequenceNumbersService.UNASSIGNED_SEQ_NO) ||
|
&& ((IndexRequest) replicaRequest.request()).getSeqNo() != SequenceNumbersService.UNASSIGNED_SEQ_NO) ||
|
||||||
(replicaRequest.request() instanceof DeleteRequest
|
(replicaRequest.request() instanceof DeleteRequest
|
||||||
&& ((DeleteRequest) replicaRequest.request()).seqNo() != SequenceNumbersService.UNASSIGNED_SEQ_NO);
|
&& ((DeleteRequest) replicaRequest.request()).getSeqNo() != SequenceNumbersService.UNASSIGNED_SEQ_NO);
|
||||||
// successful operation
|
// successful operation
|
||||||
break; // out of retry loop
|
break; // out of retry loop
|
||||||
} else if (updateOperationResult.getFailure() instanceof VersionConflictEngineException == false) {
|
} else if (updateOperationResult.getFailure() instanceof VersionConflictEngineException == false) {
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
package org.elasticsearch.action.delete;
|
package org.elasticsearch.action.delete;
|
||||||
|
|
||||||
import org.elasticsearch.ExceptionsHelper;
|
import org.elasticsearch.ExceptionsHelper;
|
||||||
|
import org.elasticsearch.ResourceAlreadyExistsException;
|
||||||
import org.elasticsearch.action.ActionListener;
|
import org.elasticsearch.action.ActionListener;
|
||||||
import org.elasticsearch.action.RoutingMissingException;
|
import org.elasticsearch.action.RoutingMissingException;
|
||||||
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
|
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
|
||||||
|
@ -39,7 +40,6 @@ import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.index.engine.Engine;
|
import org.elasticsearch.index.engine.Engine;
|
||||||
import org.elasticsearch.index.shard.IndexShard;
|
import org.elasticsearch.index.shard.IndexShard;
|
||||||
import org.elasticsearch.index.shard.ShardId;
|
import org.elasticsearch.index.shard.ShardId;
|
||||||
import org.elasticsearch.ResourceAlreadyExistsException;
|
|
||||||
import org.elasticsearch.indices.IndicesService;
|
import org.elasticsearch.indices.IndicesService;
|
||||||
import org.elasticsearch.tasks.Task;
|
import org.elasticsearch.tasks.Task;
|
||||||
import org.elasticsearch.threadpool.ThreadPool;
|
import org.elasticsearch.threadpool.ThreadPool;
|
||||||
|
@ -125,12 +125,14 @@ public class TransportDeleteAction extends TransportWriteAction<DeleteRequest, D
|
||||||
protected WritePrimaryResult shardOperationOnPrimary(DeleteRequest request, IndexShard primary) throws Exception {
|
protected WritePrimaryResult shardOperationOnPrimary(DeleteRequest request, IndexShard primary) throws Exception {
|
||||||
final Engine.DeleteResult result = executeDeleteRequestOnPrimary(request, primary);
|
final Engine.DeleteResult result = executeDeleteRequestOnPrimary(request, primary);
|
||||||
final DeleteResponse response;
|
final DeleteResponse response;
|
||||||
|
final DeleteRequest replicaRequest;
|
||||||
if (result.hasFailure() == false) {
|
if (result.hasFailure() == false) {
|
||||||
// update the request with the version so it will go to the replicas
|
// update the request with the version so it will go to the replicas
|
||||||
request.versionType(request.versionType().versionTypeForReplicationAndRecovery());
|
request.versionType(request.versionType().versionTypeForReplicationAndRecovery());
|
||||||
request.version(result.getVersion());
|
request.version(result.getVersion());
|
||||||
request.seqNo(result.getSeqNo());
|
request.setSeqNo(result.getSeqNo());
|
||||||
assert request.versionType().validateVersionForWrites(request.version());
|
assert request.versionType().validateVersionForWrites(request.version());
|
||||||
|
replicaRequest = request;
|
||||||
response = new DeleteResponse(
|
response = new DeleteResponse(
|
||||||
primary.shardId(),
|
primary.shardId(),
|
||||||
request.type(),
|
request.type(),
|
||||||
|
@ -140,8 +142,9 @@ public class TransportDeleteAction extends TransportWriteAction<DeleteRequest, D
|
||||||
result.isFound());
|
result.isFound());
|
||||||
} else {
|
} else {
|
||||||
response = null;
|
response = null;
|
||||||
|
replicaRequest = null;
|
||||||
}
|
}
|
||||||
return new WritePrimaryResult(request, response, result.getTranslogLocation(), result.getFailure(), primary);
|
return new WritePrimaryResult(replicaRequest, response, result.getTranslogLocation(), result.getFailure(), primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -158,7 +161,7 @@ public class TransportDeleteAction extends TransportWriteAction<DeleteRequest, D
|
||||||
|
|
||||||
public static Engine.DeleteResult executeDeleteRequestOnReplica(DeleteRequest request, IndexShard replica) {
|
public static Engine.DeleteResult executeDeleteRequestOnReplica(DeleteRequest request, IndexShard replica) {
|
||||||
final Engine.Delete delete = replica.prepareDeleteOnReplica(request.type(), request.id(),
|
final Engine.Delete delete = replica.prepareDeleteOnReplica(request.type(), request.id(),
|
||||||
request.seqNo(), request.primaryTerm(), request.version(), request.versionType());
|
request.getSeqNo(), request.primaryTerm(), request.version(), request.versionType());
|
||||||
return replica.delete(delete);
|
return replica.delete(delete);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -524,7 +524,10 @@ public class IndexRequest extends ReplicatedWriteRequest<IndexRequest> implement
|
||||||
out.writeOptionalString(routing);
|
out.writeOptionalString(routing);
|
||||||
out.writeOptionalString(parent);
|
out.writeOptionalString(parent);
|
||||||
if (out.getVersion().before(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
if (out.getVersion().before(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
out.writeOptionalString(null);
|
// Serialize a fake timestamp. 5.x expect this value to be set by the #process method so we can't use null.
|
||||||
|
// On the other hand, indices created on 5.x do not index the timestamp field. Therefore passing a 0 (or any value) for
|
||||||
|
// the transport layer OK as it will be ignored.
|
||||||
|
out.writeOptionalString("0");
|
||||||
out.writeOptionalWriteable(null);
|
out.writeOptionalWriteable(null);
|
||||||
}
|
}
|
||||||
out.writeBytesReference(source);
|
out.writeBytesReference(source);
|
||||||
|
|
|
@ -165,19 +165,22 @@ public class TransportIndexAction extends TransportWriteAction<IndexRequest, Ind
|
||||||
protected WritePrimaryResult shardOperationOnPrimary(IndexRequest request, IndexShard primary) throws Exception {
|
protected WritePrimaryResult shardOperationOnPrimary(IndexRequest request, IndexShard primary) throws Exception {
|
||||||
final Engine.IndexResult indexResult = executeIndexRequestOnPrimary(request, primary, mappingUpdatedAction);
|
final Engine.IndexResult indexResult = executeIndexRequestOnPrimary(request, primary, mappingUpdatedAction);
|
||||||
final IndexResponse response;
|
final IndexResponse response;
|
||||||
|
final IndexRequest replicaRequest;
|
||||||
if (indexResult.hasFailure() == false) {
|
if (indexResult.hasFailure() == false) {
|
||||||
// update the version on request so it will happen on the replicas
|
// update the version on request so it will happen on the replicas
|
||||||
final long version = indexResult.getVersion();
|
final long version = indexResult.getVersion();
|
||||||
request.version(version);
|
request.version(version);
|
||||||
request.versionType(request.versionType().versionTypeForReplicationAndRecovery());
|
request.versionType(request.versionType().versionTypeForReplicationAndRecovery());
|
||||||
request.seqNo(indexResult.getSeqNo());
|
request.setSeqNo(indexResult.getSeqNo());
|
||||||
assert request.versionType().validateVersionForWrites(request.version());
|
assert request.versionType().validateVersionForWrites(request.version());
|
||||||
|
replicaRequest = request;
|
||||||
response = new IndexResponse(primary.shardId(), request.type(), request.id(), indexResult.getSeqNo(),
|
response = new IndexResponse(primary.shardId(), request.type(), request.id(), indexResult.getSeqNo(),
|
||||||
indexResult.getVersion(), indexResult.isCreated());
|
indexResult.getVersion(), indexResult.isCreated());
|
||||||
} else {
|
} else {
|
||||||
response = null;
|
response = null;
|
||||||
|
replicaRequest = null;
|
||||||
}
|
}
|
||||||
return new WritePrimaryResult(request, response, indexResult.getTranslogLocation(), indexResult.getFailure(), primary);
|
return new WritePrimaryResult(replicaRequest, response, indexResult.getTranslogLocation(), indexResult.getFailure(), primary);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -197,9 +200,9 @@ public class TransportIndexAction extends TransportWriteAction<IndexRequest, Ind
|
||||||
|
|
||||||
final Engine.Index operation;
|
final Engine.Index operation;
|
||||||
try {
|
try {
|
||||||
operation = replica.prepareIndexOnReplica(sourceToParse, request.seqNo(), request.version(), request.versionType(), request.getAutoGeneratedTimestamp(), request.isRetry());
|
operation = replica.prepareIndexOnReplica(sourceToParse, request.getSeqNo(), request.version(), request.versionType(), request.getAutoGeneratedTimestamp(), request.isRetry());
|
||||||
} catch (MapperParsingException e) {
|
} catch (MapperParsingException e) {
|
||||||
return new Engine.IndexResult(e, request.version(), request.seqNo());
|
return new Engine.IndexResult(e, request.version(), request.getSeqNo());
|
||||||
}
|
}
|
||||||
Mapping update = operation.parsedDoc().dynamicMappingsUpdate();
|
Mapping update = operation.parsedDoc().dynamicMappingsUpdate();
|
||||||
if (update != null) {
|
if (update != null) {
|
||||||
|
@ -221,7 +224,7 @@ public class TransportIndexAction extends TransportWriteAction<IndexRequest, Ind
|
||||||
try {
|
try {
|
||||||
operation = prepareIndexOperationOnPrimary(request, primary);
|
operation = prepareIndexOperationOnPrimary(request, primary);
|
||||||
} catch (MapperParsingException | IllegalArgumentException e) {
|
} catch (MapperParsingException | IllegalArgumentException e) {
|
||||||
return new Engine.IndexResult(e, request.version(), request.seqNo());
|
return new Engine.IndexResult(e, request.version(), request.getSeqNo());
|
||||||
}
|
}
|
||||||
Mapping update = operation.parsedDoc().dynamicMappingsUpdate();
|
Mapping update = operation.parsedDoc().dynamicMappingsUpdate();
|
||||||
final ShardId shardId = primary.shardId();
|
final ShardId shardId = primary.shardId();
|
||||||
|
@ -232,12 +235,12 @@ public class TransportIndexAction extends TransportWriteAction<IndexRequest, Ind
|
||||||
mappingUpdatedAction.updateMappingOnMaster(shardId.getIndex(), request.type(), update);
|
mappingUpdatedAction.updateMappingOnMaster(shardId.getIndex(), request.type(), update);
|
||||||
} catch (IllegalArgumentException e) {
|
} catch (IllegalArgumentException e) {
|
||||||
// throws IAE on conflicts merging dynamic mappings
|
// throws IAE on conflicts merging dynamic mappings
|
||||||
return new Engine.IndexResult(e, request.version(), request.seqNo());
|
return new Engine.IndexResult(e, request.version(), request.getSeqNo());
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
operation = prepareIndexOperationOnPrimary(request, primary);
|
operation = prepareIndexOperationOnPrimary(request, primary);
|
||||||
} catch (MapperParsingException | IllegalArgumentException e) {
|
} catch (MapperParsingException | IllegalArgumentException e) {
|
||||||
return new Engine.IndexResult(e, request.version(), request.seqNo());
|
return new Engine.IndexResult(e, request.version(), request.getSeqNo());
|
||||||
}
|
}
|
||||||
update = operation.parsedDoc().dynamicMappingsUpdate();
|
update = operation.parsedDoc().dynamicMappingsUpdate();
|
||||||
if (update != null) {
|
if (update != null) {
|
||||||
|
|
|
@ -37,4 +37,9 @@ public class BasicReplicationRequest extends ReplicationRequest<BasicReplication
|
||||||
public BasicReplicationRequest(ShardId shardId) {
|
public BasicReplicationRequest(ShardId shardId) {
|
||||||
super(shardId);
|
super(shardId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "BasicReplicationRequest{" + shardId + "}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,12 +19,14 @@
|
||||||
|
|
||||||
package org.elasticsearch.action.support.replication;
|
package org.elasticsearch.action.support.replication;
|
||||||
|
|
||||||
|
import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.action.bulk.BulkShardRequest;
|
import org.elasticsearch.action.bulk.BulkShardRequest;
|
||||||
import org.elasticsearch.action.delete.DeleteRequest;
|
import org.elasticsearch.action.delete.DeleteRequest;
|
||||||
import org.elasticsearch.action.index.IndexRequest;
|
import org.elasticsearch.action.index.IndexRequest;
|
||||||
import org.elasticsearch.action.support.WriteRequest;
|
import org.elasticsearch.action.support.WriteRequest;
|
||||||
import org.elasticsearch.common.io.stream.StreamInput;
|
import org.elasticsearch.common.io.stream.StreamInput;
|
||||||
import org.elasticsearch.common.io.stream.StreamOutput;
|
import org.elasticsearch.common.io.stream.StreamOutput;
|
||||||
|
import org.elasticsearch.index.seqno.SequenceNumbersService;
|
||||||
import org.elasticsearch.index.shard.ShardId;
|
import org.elasticsearch.index.shard.ShardId;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -36,6 +38,8 @@ import java.io.IOException;
|
||||||
public abstract class ReplicatedWriteRequest<R extends ReplicatedWriteRequest<R>> extends ReplicationRequest<R> implements WriteRequest<R> {
|
public abstract class ReplicatedWriteRequest<R extends ReplicatedWriteRequest<R>> extends ReplicationRequest<R> implements WriteRequest<R> {
|
||||||
private RefreshPolicy refreshPolicy = RefreshPolicy.NONE;
|
private RefreshPolicy refreshPolicy = RefreshPolicy.NONE;
|
||||||
|
|
||||||
|
private long seqNo = SequenceNumbersService.UNASSIGNED_SEQ_NO;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructor for deserialization.
|
* Constructor for deserialization.
|
||||||
*/
|
*/
|
||||||
|
@ -62,11 +66,32 @@ public abstract class ReplicatedWriteRequest<R extends ReplicatedWriteRequest<R>
|
||||||
public void readFrom(StreamInput in) throws IOException {
|
public void readFrom(StreamInput in) throws IOException {
|
||||||
super.readFrom(in);
|
super.readFrom(in);
|
||||||
refreshPolicy = RefreshPolicy.readFrom(in);
|
refreshPolicy = RefreshPolicy.readFrom(in);
|
||||||
|
if (in.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
seqNo = in.readZLong();
|
||||||
|
} else {
|
||||||
|
seqNo = SequenceNumbersService.UNASSIGNED_SEQ_NO;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void writeTo(StreamOutput out) throws IOException {
|
public void writeTo(StreamOutput out) throws IOException {
|
||||||
super.writeTo(out);
|
super.writeTo(out);
|
||||||
refreshPolicy.writeTo(out);
|
refreshPolicy.writeTo(out);
|
||||||
|
if (out.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
out.writeZLong(seqNo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the sequence number for this operation. The sequence number is assigned while the operation
|
||||||
|
* is performed on the primary shard.
|
||||||
|
*/
|
||||||
|
public long getSeqNo() {
|
||||||
|
return seqNo;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** sets the sequence number for this operation. should only be called on the primary shard */
|
||||||
|
public void setSeqNo(long seqNo) {
|
||||||
|
this.seqNo = seqNo;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -283,7 +283,7 @@ public class ReplicationOperation<
|
||||||
}
|
}
|
||||||
|
|
||||||
private void decPendingAndFinishIfNeeded() {
|
private void decPendingAndFinishIfNeeded() {
|
||||||
assert pendingActions.get() > 0;
|
assert pendingActions.get() > 0 : "pending action count goes below 0 for request [" + request + "]";
|
||||||
if (pendingActions.decrementAndGet() == 0) {
|
if (pendingActions.decrementAndGet() == 0) {
|
||||||
finish();
|
finish();
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,6 @@ public abstract class ReplicationRequest<Request extends ReplicationRequest<Requ
|
||||||
*/
|
*/
|
||||||
protected ShardId shardId;
|
protected ShardId shardId;
|
||||||
|
|
||||||
long seqNo;
|
|
||||||
long primaryTerm;
|
long primaryTerm;
|
||||||
|
|
||||||
protected TimeValue timeout = DEFAULT_TIMEOUT;
|
protected TimeValue timeout = DEFAULT_TIMEOUT;
|
||||||
|
@ -171,19 +170,6 @@ public abstract class ReplicationRequest<Request extends ReplicationRequest<Requ
|
||||||
return routedBasedOnClusterVersion;
|
return routedBasedOnClusterVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the sequence number for this operation. The sequence number is assigned while the operation
|
|
||||||
* is performed on the primary shard.
|
|
||||||
*/
|
|
||||||
public long seqNo() {
|
|
||||||
return seqNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** sets the sequence number for this operation. should only be called on the primary shard */
|
|
||||||
public void seqNo(long seqNo) {
|
|
||||||
this.seqNo = seqNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** returns the primary term active at the time the operation was performed on the primary shard */
|
/** returns the primary term active at the time the operation was performed on the primary shard */
|
||||||
public long primaryTerm() {
|
public long primaryTerm() {
|
||||||
return primaryTerm;
|
return primaryTerm;
|
||||||
|
@ -215,7 +201,6 @@ public abstract class ReplicationRequest<Request extends ReplicationRequest<Requ
|
||||||
timeout = new TimeValue(in);
|
timeout = new TimeValue(in);
|
||||||
index = in.readString();
|
index = in.readString();
|
||||||
routedBasedOnClusterVersion = in.readVLong();
|
routedBasedOnClusterVersion = in.readVLong();
|
||||||
seqNo = in.readVLong();
|
|
||||||
primaryTerm = in.readVLong();
|
primaryTerm = in.readVLong();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -232,7 +217,6 @@ public abstract class ReplicationRequest<Request extends ReplicationRequest<Requ
|
||||||
timeout.writeTo(out);
|
timeout.writeTo(out);
|
||||||
out.writeString(index);
|
out.writeString(index);
|
||||||
out.writeVLong(routedBasedOnClusterVersion);
|
out.writeVLong(routedBasedOnClusterVersion);
|
||||||
out.writeVLong(seqNo);
|
|
||||||
out.writeVLong(primaryTerm);
|
out.writeVLong(primaryTerm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -252,13 +236,7 @@ public abstract class ReplicationRequest<Request extends ReplicationRequest<Requ
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public abstract String toString(); // force a proper to string to ease debugging
|
||||||
if (shardId != null) {
|
|
||||||
return shardId.toString();
|
|
||||||
} else {
|
|
||||||
return index;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getDescription() {
|
public String getDescription() {
|
||||||
|
|
|
@ -21,6 +21,7 @@ package org.elasticsearch.action.support.replication;
|
||||||
|
|
||||||
import org.apache.logging.log4j.message.ParameterizedMessage;
|
import org.apache.logging.log4j.message.ParameterizedMessage;
|
||||||
import org.elasticsearch.ElasticsearchException;
|
import org.elasticsearch.ElasticsearchException;
|
||||||
|
import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.action.ActionListener;
|
import org.elasticsearch.action.ActionListener;
|
||||||
import org.elasticsearch.action.ActionListenerResponseHandler;
|
import org.elasticsearch.action.ActionListenerResponseHandler;
|
||||||
import org.elasticsearch.action.ActionResponse;
|
import org.elasticsearch.action.ActionResponse;
|
||||||
|
@ -664,7 +665,7 @@ public abstract class TransportReplicationAction<
|
||||||
private void performLocalAction(ClusterState state, ShardRouting primary, DiscoveryNode node) {
|
private void performLocalAction(ClusterState state, ShardRouting primary, DiscoveryNode node) {
|
||||||
setPhase(task, "waiting_on_primary");
|
setPhase(task, "waiting_on_primary");
|
||||||
if (logger.isTraceEnabled()) {
|
if (logger.isTraceEnabled()) {
|
||||||
logger.trace("send action [{}] on primary [{}] for request [{}] with cluster state version [{}] to [{}] ",
|
logger.trace("send action [{}] to local primary [{}] for request [{}] with cluster state version [{}] to [{}] ",
|
||||||
transportPrimaryAction, request.shardId(), request, state.version(), primary.currentNodeId());
|
transportPrimaryAction, request.shardId(), request, state.version(), primary.currentNodeId());
|
||||||
}
|
}
|
||||||
performAction(node, transportPrimaryAction, true, new ConcreteShardRequest<>(request, primary.allocationId().getId()));
|
performAction(node, transportPrimaryAction, true, new ConcreteShardRequest<>(request, primary.allocationId().getId()));
|
||||||
|
@ -950,6 +951,8 @@ public abstract class TransportReplicationAction<
|
||||||
public PrimaryResult perform(Request request) throws Exception {
|
public PrimaryResult perform(Request request) throws Exception {
|
||||||
PrimaryResult result = shardOperationOnPrimary(request, indexShard);
|
PrimaryResult result = shardOperationOnPrimary(request, indexShard);
|
||||||
if (result.replicaRequest() != null) {
|
if (result.replicaRequest() != null) {
|
||||||
|
assert result.finalFailure == null : "a replica request [" + result.replicaRequest()
|
||||||
|
+ "] with a primary failure [" + result.finalFailure + "]";
|
||||||
result.replicaRequest().primaryTerm(indexShard.getPrimaryTerm());
|
result.replicaRequest().primaryTerm(indexShard.getPrimaryTerm());
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
|
@ -983,16 +986,25 @@ public abstract class TransportReplicationAction<
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void readFrom(StreamInput in) throws IOException {
|
public void readFrom(StreamInput in) throws IOException {
|
||||||
super.readFrom(in);
|
if (in.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
localCheckpoint = in.readZLong();
|
super.readFrom(in);
|
||||||
allocationId = in.readString();
|
localCheckpoint = in.readZLong();
|
||||||
|
allocationId = in.readString();
|
||||||
|
} else {
|
||||||
|
// 5.x used to read empty responses, which don't really read anything off the stream, so just do nothing.
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void writeTo(StreamOutput out) throws IOException {
|
public void writeTo(StreamOutput out) throws IOException {
|
||||||
super.writeTo(out);
|
if (out.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
out.writeZLong(localCheckpoint);
|
super.writeTo(out);
|
||||||
out.writeString(allocationId);
|
out.writeZLong(localCheckpoint);
|
||||||
|
out.writeString(allocationId);
|
||||||
|
} else {
|
||||||
|
// we use to write empty responses
|
||||||
|
Empty.INSTANCE.writeTo(out);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1016,10 +1028,9 @@ public abstract class TransportReplicationAction<
|
||||||
listener.onFailure(new NoNodeAvailableException("unknown node [" + nodeId + "]"));
|
listener.onFailure(new NoNodeAvailableException("unknown node [" + nodeId + "]"));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
transportService.sendRequest(node, transportReplicaAction,
|
final ConcreteShardRequest<ReplicaRequest> concreteShardRequest =
|
||||||
new ConcreteShardRequest<>(request, replica.allocationId().getId()), transportOptions,
|
new ConcreteShardRequest<>(request, replica.allocationId().getId());
|
||||||
// Eclipse can't handle when this is <> so we specify the type here.
|
sendReplicaRequest(concreteShardRequest, node, listener);
|
||||||
new ActionListenerResponseHandler<ReplicaResponse>(listener, ReplicaResponse::new));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -1060,6 +1071,14 @@ public abstract class TransportReplicationAction<
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** sends the given replica request to the supplied nodes */
|
||||||
|
protected void sendReplicaRequest(ConcreteShardRequest<ReplicaRequest> concreteShardRequest, DiscoveryNode node,
|
||||||
|
ActionListener<ReplicationOperation.ReplicaResponse> listener) {
|
||||||
|
transportService.sendRequest(node, transportReplicaAction, concreteShardRequest, transportOptions,
|
||||||
|
// Eclipse can't handle when this is <> so we specify the type here.
|
||||||
|
new ActionListenerResponseHandler<ReplicaResponse>(listener, ReplicaResponse::new));
|
||||||
|
}
|
||||||
|
|
||||||
/** a wrapper class to encapsulate a request when being sent to a specific allocation id **/
|
/** a wrapper class to encapsulate a request when being sent to a specific allocation id **/
|
||||||
public static final class ConcreteShardRequest<R extends TransportRequest> extends TransportRequest {
|
public static final class ConcreteShardRequest<R extends TransportRequest> extends TransportRequest {
|
||||||
|
|
||||||
|
|
|
@ -204,7 +204,7 @@ public class MappingMetaData extends AbstractDiffable<MappingMetaData> {
|
||||||
// timestamp
|
// timestamp
|
||||||
out.writeBoolean(false); // enabled
|
out.writeBoolean(false); // enabled
|
||||||
out.writeString(DateFieldMapper.DEFAULT_DATE_TIME_FORMATTER.format());
|
out.writeString(DateFieldMapper.DEFAULT_DATE_TIME_FORMATTER.format());
|
||||||
out.writeOptionalString(null);
|
out.writeOptionalString("now"); // 5.x default
|
||||||
out.writeOptionalBoolean(null);
|
out.writeOptionalBoolean(null);
|
||||||
}
|
}
|
||||||
out.writeBoolean(hasParentField());
|
out.writeBoolean(hasParentField());
|
||||||
|
|
|
@ -20,20 +20,21 @@ package org.elasticsearch.index.seqno;
|
||||||
|
|
||||||
import org.apache.logging.log4j.message.ParameterizedMessage;
|
import org.apache.logging.log4j.message.ParameterizedMessage;
|
||||||
import org.apache.logging.log4j.util.Supplier;
|
import org.apache.logging.log4j.util.Supplier;
|
||||||
|
import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.action.ActionListener;
|
import org.elasticsearch.action.ActionListener;
|
||||||
import org.elasticsearch.action.support.ActionFilters;
|
import org.elasticsearch.action.support.ActionFilters;
|
||||||
|
import org.elasticsearch.action.support.replication.ReplicationOperation;
|
||||||
import org.elasticsearch.action.support.replication.ReplicationRequest;
|
import org.elasticsearch.action.support.replication.ReplicationRequest;
|
||||||
import org.elasticsearch.action.support.replication.ReplicationResponse;
|
import org.elasticsearch.action.support.replication.ReplicationResponse;
|
||||||
import org.elasticsearch.action.support.replication.TransportReplicationAction;
|
import org.elasticsearch.action.support.replication.TransportReplicationAction;
|
||||||
import org.elasticsearch.cluster.action.shard.ShardStateAction;
|
import org.elasticsearch.cluster.action.shard.ShardStateAction;
|
||||||
import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver;
|
import org.elasticsearch.cluster.metadata.IndexNameExpressionResolver;
|
||||||
|
import org.elasticsearch.cluster.node.DiscoveryNode;
|
||||||
import org.elasticsearch.cluster.service.ClusterService;
|
import org.elasticsearch.cluster.service.ClusterService;
|
||||||
import org.elasticsearch.common.collect.Tuple;
|
|
||||||
import org.elasticsearch.common.inject.Inject;
|
import org.elasticsearch.common.inject.Inject;
|
||||||
import org.elasticsearch.common.io.stream.StreamInput;
|
import org.elasticsearch.common.io.stream.StreamInput;
|
||||||
import org.elasticsearch.common.io.stream.StreamOutput;
|
import org.elasticsearch.common.io.stream.StreamOutput;
|
||||||
import org.elasticsearch.common.settings.Settings;
|
import org.elasticsearch.common.settings.Settings;
|
||||||
import org.elasticsearch.index.IndexService;
|
|
||||||
import org.elasticsearch.index.shard.IndexShard;
|
import org.elasticsearch.index.shard.IndexShard;
|
||||||
import org.elasticsearch.index.shard.ShardId;
|
import org.elasticsearch.index.shard.ShardId;
|
||||||
import org.elasticsearch.indices.IndicesService;
|
import org.elasticsearch.indices.IndicesService;
|
||||||
|
@ -41,8 +42,6 @@ import org.elasticsearch.threadpool.ThreadPool;
|
||||||
import org.elasticsearch.transport.TransportService;
|
import org.elasticsearch.transport.TransportService;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.UncheckedIOException;
|
|
||||||
import java.io.UnsupportedEncodingException;
|
|
||||||
|
|
||||||
public class GlobalCheckpointSyncAction extends TransportReplicationAction<GlobalCheckpointSyncAction.PrimaryRequest,
|
public class GlobalCheckpointSyncAction extends TransportReplicationAction<GlobalCheckpointSyncAction.PrimaryRequest,
|
||||||
GlobalCheckpointSyncAction.ReplicaRequest, ReplicationResponse> {
|
GlobalCheckpointSyncAction.ReplicaRequest, ReplicationResponse> {
|
||||||
|
@ -65,6 +64,17 @@ public class GlobalCheckpointSyncAction extends TransportReplicationAction<Globa
|
||||||
return new ReplicationResponse();
|
return new ReplicationResponse();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void sendReplicaRequest(ConcreteShardRequest<ReplicaRequest> concreteShardRequest, DiscoveryNode node,
|
||||||
|
ActionListener<ReplicationOperation.ReplicaResponse> listener) {
|
||||||
|
if (node.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
super.sendReplicaRequest(concreteShardRequest, node, listener);
|
||||||
|
} else {
|
||||||
|
listener.onResponse(
|
||||||
|
new ReplicaResponse(concreteShardRequest.getTargetAllocationID(), SequenceNumbersService.UNASSIGNED_SEQ_NO));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected PrimaryResult shardOperationOnPrimary(PrimaryRequest request, IndexShard indexShard) throws Exception {
|
protected PrimaryResult shardOperationOnPrimary(PrimaryRequest request, IndexShard indexShard) throws Exception {
|
||||||
long checkpoint = indexShard.getGlobalCheckpoint();
|
long checkpoint = indexShard.getGlobalCheckpoint();
|
||||||
|
@ -105,6 +115,11 @@ public class GlobalCheckpointSyncAction extends TransportReplicationAction<Globa
|
||||||
public PrimaryRequest(ShardId shardId) {
|
public PrimaryRequest(ShardId shardId) {
|
||||||
super(shardId);
|
super(shardId);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "GlobalCkpSyncPrimary{" + shardId + "}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static final class ReplicaRequest extends ReplicationRequest<GlobalCheckpointSyncAction.ReplicaRequest> {
|
public static final class ReplicaRequest extends ReplicationRequest<GlobalCheckpointSyncAction.ReplicaRequest> {
|
||||||
|
@ -134,6 +149,14 @@ public class GlobalCheckpointSyncAction extends TransportReplicationAction<Globa
|
||||||
public long getCheckpoint() {
|
public long getCheckpoint() {
|
||||||
return checkpoint;
|
return checkpoint;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "GlobalCkpSyncReplica{" +
|
||||||
|
"checkpoint=" + checkpoint +
|
||||||
|
", shardId=" + shardId +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,6 +24,7 @@ import org.apache.logging.log4j.message.ParameterizedMessage;
|
||||||
import org.apache.logging.log4j.util.Supplier;
|
import org.apache.logging.log4j.util.Supplier;
|
||||||
import org.apache.lucene.store.LockObtainFailedException;
|
import org.apache.lucene.store.LockObtainFailedException;
|
||||||
import org.elasticsearch.ResourceAlreadyExistsException;
|
import org.elasticsearch.ResourceAlreadyExistsException;
|
||||||
|
import org.elasticsearch.Version;
|
||||||
import org.elasticsearch.cluster.ClusterChangedEvent;
|
import org.elasticsearch.cluster.ClusterChangedEvent;
|
||||||
import org.elasticsearch.cluster.ClusterState;
|
import org.elasticsearch.cluster.ClusterState;
|
||||||
import org.elasticsearch.cluster.ClusterStateApplier;
|
import org.elasticsearch.cluster.ClusterStateApplier;
|
||||||
|
@ -561,9 +562,15 @@ public class IndicesClusterStateService extends AbstractLifecycleComponent imple
|
||||||
shard.updateRoutingEntry(shardRouting);
|
shard.updateRoutingEntry(shardRouting);
|
||||||
if (shardRouting.primary()) {
|
if (shardRouting.primary()) {
|
||||||
IndexShardRoutingTable indexShardRoutingTable = routingTable.shardRoutingTable(shardRouting.shardId());
|
IndexShardRoutingTable indexShardRoutingTable = routingTable.shardRoutingTable(shardRouting.shardId());
|
||||||
Set<String> activeIds = indexShardRoutingTable.activeShards().stream().map(r -> r.allocationId().getId())
|
Set<String> activeIds = indexShardRoutingTable.activeShards().stream()
|
||||||
|
// filter to shards that track seq# and should be taken into consideration for checkpoint tracking
|
||||||
|
// shards on old nodes will go through a file based recovery which will also transfer seq# information.
|
||||||
|
.filter(sr -> nodes.get(sr.currentNodeId()).getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED))
|
||||||
|
.map(r -> r.allocationId().getId())
|
||||||
.collect(Collectors.toSet());
|
.collect(Collectors.toSet());
|
||||||
Set<String> initializingIds = indexShardRoutingTable.getAllInitializingShards().stream().map(r -> r.allocationId().getId())
|
Set<String> initializingIds = indexShardRoutingTable.getAllInitializingShards().stream()
|
||||||
|
.filter(sr -> nodes.get(sr.currentNodeId()).getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED))
|
||||||
|
.map(r -> r.allocationId().getId())
|
||||||
.collect(Collectors.toSet());
|
.collect(Collectors.toSet());
|
||||||
shard.updateAllocationIdsFromMaster(activeIds, initializingIds);
|
shard.updateAllocationIdsFromMaster(activeIds, initializingIds);
|
||||||
}
|
}
|
||||||
|
|
|
@ -33,8 +33,6 @@ import org.elasticsearch.cluster.node.DiscoveryNodes;
|
||||||
import org.elasticsearch.cluster.routing.IndexShardRoutingTable;
|
import org.elasticsearch.cluster.routing.IndexShardRoutingTable;
|
||||||
import org.elasticsearch.cluster.routing.ShardRouting;
|
import org.elasticsearch.cluster.routing.ShardRouting;
|
||||||
import org.elasticsearch.cluster.routing.ShardRoutingState;
|
import org.elasticsearch.cluster.routing.ShardRoutingState;
|
||||||
import org.elasticsearch.common.io.stream.StreamInput;
|
|
||||||
import org.elasticsearch.common.io.stream.StreamOutput;
|
|
||||||
import org.elasticsearch.common.util.concurrent.ConcurrentCollections;
|
import org.elasticsearch.common.util.concurrent.ConcurrentCollections;
|
||||||
import org.elasticsearch.common.util.set.Sets;
|
import org.elasticsearch.common.util.set.Sets;
|
||||||
import org.elasticsearch.index.shard.IndexShardNotStartedException;
|
import org.elasticsearch.index.shard.IndexShardNotStartedException;
|
||||||
|
@ -42,7 +40,6 @@ import org.elasticsearch.index.shard.IndexShardState;
|
||||||
import org.elasticsearch.index.shard.ShardId;
|
import org.elasticsearch.index.shard.ShardId;
|
||||||
import org.elasticsearch.test.ESTestCase;
|
import org.elasticsearch.test.ESTestCase;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -366,13 +363,8 @@ public class ReplicationOperationTests extends ESTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void writeTo(StreamOutput out) throws IOException {
|
public String toString() {
|
||||||
super.writeTo(out);
|
return "Request{}";
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void readFrom(StreamInput in) throws IOException {
|
|
||||||
super.readFrom(in);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -984,6 +984,11 @@ public class TransportReplicationActionTests extends ESTestCase {
|
||||||
super.onRetry();
|
super.onRetry();
|
||||||
isRetrySet.set(true);
|
isRetrySet.set(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Request{}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static class Response extends ReplicationResponse {
|
static class Response extends ReplicationResponse {
|
||||||
|
|
|
@ -202,6 +202,11 @@ public class TransportWriteActionTests extends ESTestCase {
|
||||||
public TestRequest() {
|
public TestRequest() {
|
||||||
setShardId(new ShardId("test", "test", 1));
|
setShardId(new ShardId("test", "test", 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "TestRequest{}";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static class TestResponse extends ReplicationResponse implements WriteResponse {
|
private static class TestResponse extends ReplicationResponse implements WriteResponse {
|
||||||
|
|
|
@ -433,7 +433,7 @@ public abstract class ESIndexLevelReplicationTestCase extends IndexShardTestCase
|
||||||
final long version = indexResult.getVersion();
|
final long version = indexResult.getVersion();
|
||||||
request.version(version);
|
request.version(version);
|
||||||
request.versionType(request.versionType().versionTypeForReplicationAndRecovery());
|
request.versionType(request.versionType().versionTypeForReplicationAndRecovery());
|
||||||
request.seqNo(indexResult.getSeqNo());
|
request.setSeqNo(indexResult.getSeqNo());
|
||||||
assert request.versionType().validateVersionForWrites(request.version());
|
assert request.versionType().validateVersionForWrites(request.version());
|
||||||
}
|
}
|
||||||
request.primaryTerm(primary.getPrimaryTerm());
|
request.primaryTerm(primary.getPrimaryTerm());
|
||||||
|
|
|
@ -16,9 +16,9 @@ apply plugin: 'elasticsearch.rest-test'
|
||||||
integTest {
|
integTest {
|
||||||
includePackaged = true
|
includePackaged = true
|
||||||
cluster {
|
cluster {
|
||||||
numNodes = 2
|
numNodes = 4
|
||||||
numBwcNodes = 1
|
numBwcNodes = 2
|
||||||
bwcVersion = "6.0.0-alpha1-SNAPSHOT"
|
bwcVersion = "5.2.0-SNAPSHOT"
|
||||||
setting 'logger.org.elasticsearch', 'DEBUG'
|
setting 'logger.org.elasticsearch', 'DEBUG'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,332 @@
|
||||||
|
/*
|
||||||
|
* 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.backwards;
|
||||||
|
|
||||||
|
import org.apache.http.HttpHost;
|
||||||
|
import org.apache.http.entity.StringEntity;
|
||||||
|
import org.apache.http.util.EntityUtils;
|
||||||
|
import org.elasticsearch.Version;
|
||||||
|
import org.elasticsearch.client.Response;
|
||||||
|
import org.elasticsearch.client.RestClient;
|
||||||
|
import org.elasticsearch.cluster.metadata.IndexMetaData;
|
||||||
|
import org.elasticsearch.common.Strings;
|
||||||
|
import org.elasticsearch.common.settings.Settings;
|
||||||
|
import org.elasticsearch.common.xcontent.XContentType;
|
||||||
|
import org.elasticsearch.index.IndexSettings;
|
||||||
|
import org.elasticsearch.index.seqno.SeqNoStats;
|
||||||
|
import org.elasticsearch.index.seqno.SequenceNumbersService;
|
||||||
|
import org.elasticsearch.test.rest.ESRestTestCase;
|
||||||
|
import org.elasticsearch.test.rest.yaml.ObjectPath;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.charset.StandardCharsets;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import static java.util.Collections.emptyMap;
|
||||||
|
import static java.util.Collections.singletonMap;
|
||||||
|
import static org.hamcrest.Matchers.anyOf;
|
||||||
|
import static org.hamcrest.Matchers.equalTo;
|
||||||
|
|
||||||
|
public class IndexingIT extends ESRestTestCase {
|
||||||
|
|
||||||
|
private ObjectPath objectPath(Response response) throws IOException {
|
||||||
|
String body = EntityUtils.toString(response.getEntity(), StandardCharsets.UTF_8);
|
||||||
|
String contentType = response.getHeader("Content-Type");
|
||||||
|
XContentType xContentType = XContentType.fromMediaTypeOrFormat(contentType);
|
||||||
|
return ObjectPath.createFromXContent(xContentType.xContent(), body);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertOK(Response response) {
|
||||||
|
assertThat(response.getStatusLine().getStatusCode(), anyOf(equalTo(200), equalTo(201)));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void ensureGreen() throws IOException {
|
||||||
|
Map<String, String> params = new HashMap<>();
|
||||||
|
params.put("wait_for_status", "green");
|
||||||
|
params.put("wait_for_no_relocating_shards", "true");
|
||||||
|
assertOK(client().performRequest("GET", "_cluster/health", params));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void createIndex(String name, Settings settings) throws IOException {
|
||||||
|
assertOK(client().performRequest("PUT", name, Collections.emptyMap(),
|
||||||
|
new StringEntity("{ \"settings\": " + Strings.toString(settings, true) + " }")));
|
||||||
|
}
|
||||||
|
|
||||||
|
private void updateIndexSetting(String name, Settings.Builder settings) throws IOException {
|
||||||
|
updateIndexSetting(name, settings.build());
|
||||||
|
}
|
||||||
|
private void updateIndexSetting(String name, Settings settings) throws IOException {
|
||||||
|
assertOK(client().performRequest("PUT", name + "/_settings", Collections.emptyMap(),
|
||||||
|
new StringEntity(Strings.toString(settings, true))));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected int indexDocs(String index, final int idStart, final int numDocs) throws IOException {
|
||||||
|
for (int i = 0; i < numDocs; i++) {
|
||||||
|
final int id = idStart + i;
|
||||||
|
assertOK(client().performRequest("PUT", index + "/test/" + id, emptyMap(),
|
||||||
|
new StringEntity("{\"test\": \"test_" + id + "\"}")));
|
||||||
|
}
|
||||||
|
return numDocs;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void testSeqNoCheckpoints() throws Exception {
|
||||||
|
Nodes nodes = buildNodeAndVersions();
|
||||||
|
logger.info("cluster discovered: {}", nodes.toString());
|
||||||
|
final String bwcNames = nodes.getBWCNodes().stream().map(Node::getNodeName).collect(Collectors.joining(","));
|
||||||
|
Settings.Builder settings = Settings.builder()
|
||||||
|
.put(IndexMetaData.INDEX_NUMBER_OF_SHARDS_SETTING.getKey(), 1)
|
||||||
|
.put(IndexMetaData.INDEX_NUMBER_OF_REPLICAS_SETTING.getKey(), 2)
|
||||||
|
.put("index.routing.allocation.include._name", bwcNames);
|
||||||
|
|
||||||
|
final boolean checkGlobalCheckpoints = nodes.getMaster().getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED);
|
||||||
|
logger.info("master version is [{}], global checkpoints will be [{}]", nodes.getMaster().getVersion(),
|
||||||
|
checkGlobalCheckpoints ? "checked" : "not be checked");
|
||||||
|
if (checkGlobalCheckpoints) {
|
||||||
|
settings.put(IndexSettings.INDEX_SEQ_NO_CHECKPOINT_SYNC_INTERVAL.getKey(), "100ms");
|
||||||
|
}
|
||||||
|
final String index = "test";
|
||||||
|
createIndex(index, settings.build());
|
||||||
|
try (RestClient newNodeClient = buildClient(restClientSettings(),
|
||||||
|
nodes.getNewNodes().stream().map(Node::getPublishAddress).toArray(HttpHost[]::new))) {
|
||||||
|
int numDocs = indexDocs(index, 0, randomInt(5));
|
||||||
|
assertSeqNoOnShards(nodes, checkGlobalCheckpoints, 0, newNodeClient);
|
||||||
|
|
||||||
|
logger.info("allowing shards on all nodes");
|
||||||
|
updateIndexSetting(index, Settings.builder().putNull("index.routing.allocation.include._name"));
|
||||||
|
ensureGreen();
|
||||||
|
logger.info("indexing some more docs");
|
||||||
|
numDocs += indexDocs(index, numDocs, randomInt(5));
|
||||||
|
assertSeqNoOnShards(nodes, checkGlobalCheckpoints, 0, newNodeClient);
|
||||||
|
logger.info("moving primary to new node");
|
||||||
|
Shard primary = buildShards(nodes, newNodeClient).stream().filter(Shard::isPrimary).findFirst().get();
|
||||||
|
updateIndexSetting(index, Settings.builder().put("index.routing.allocation.exclude._name", primary.getNode().getNodeName()));
|
||||||
|
ensureGreen();
|
||||||
|
logger.info("indexing some more docs");
|
||||||
|
int numDocsOnNewPrimary = indexDocs(index, numDocs, randomInt(5));
|
||||||
|
numDocs += numDocsOnNewPrimary;
|
||||||
|
assertSeqNoOnShards(nodes, checkGlobalCheckpoints, numDocsOnNewPrimary, newNodeClient);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertSeqNoOnShards(Nodes nodes, boolean checkGlobalCheckpoints, int numDocs, RestClient client) throws Exception {
|
||||||
|
assertBusy(() -> {
|
||||||
|
try {
|
||||||
|
List<Shard> shards = buildShards(nodes, client);
|
||||||
|
Shard primaryShard = shards.stream().filter(Shard::isPrimary).findFirst().get();
|
||||||
|
assertNotNull("failed to find primary shard", primaryShard);
|
||||||
|
final long expectedGlobalCkp;
|
||||||
|
final long expectMaxSeqNo;
|
||||||
|
logger.info("primary resolved to node {}", primaryShard.getNode());
|
||||||
|
if (primaryShard.getNode().getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
expectMaxSeqNo = numDocs - 1;
|
||||||
|
expectedGlobalCkp = numDocs - 1;
|
||||||
|
} else {
|
||||||
|
expectedGlobalCkp = SequenceNumbersService.UNASSIGNED_SEQ_NO;
|
||||||
|
expectMaxSeqNo = SequenceNumbersService.NO_OPS_PERFORMED;
|
||||||
|
}
|
||||||
|
for (Shard shard : shards) {
|
||||||
|
if (shard.getNode().getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
final SeqNoStats seqNoStats = shard.getSeqNoStats();
|
||||||
|
logger.info("stats for {}, primary [{}]: [{}]", shard.getNode(), shard.isPrimary(), seqNoStats);
|
||||||
|
assertThat("max_seq no on " + shard.getNode() + " is wrong", seqNoStats.getMaxSeqNo(), equalTo(expectMaxSeqNo));
|
||||||
|
assertThat("localCheckpoint no on " + shard.getNode() + " is wrong",
|
||||||
|
seqNoStats.getLocalCheckpoint(), equalTo(expectMaxSeqNo));
|
||||||
|
if (checkGlobalCheckpoints) {
|
||||||
|
assertThat("globalCheckpoint no on " + shard.getNode() + " is wrong",
|
||||||
|
seqNoStats.getGlobalCheckpoint(), equalTo(expectedGlobalCkp));
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
logger.info("skipping seq no test on {}", shard.getNode());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new AssertionError("unexpected io exception", e);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<Shard> buildShards(Nodes nodes, RestClient client) throws IOException {
|
||||||
|
Response response = client.performRequest("GET", "test/_stats", singletonMap("level", "shards"));
|
||||||
|
List<Object> shardStats = objectPath(response).evaluate("indices.test.shards.0");
|
||||||
|
ArrayList<Shard> shards = new ArrayList<>();
|
||||||
|
for (Object shard : shardStats) {
|
||||||
|
final String nodeId = ObjectPath.evaluate(shard, "routing.node");
|
||||||
|
final Boolean primary = ObjectPath.evaluate(shard, "routing.primary");
|
||||||
|
final Node node = nodes.getSafe(nodeId);
|
||||||
|
final SeqNoStats seqNoStats;
|
||||||
|
if (node.getVersion().onOrAfter(Version.V_6_0_0_alpha1_UNRELEASED)) {
|
||||||
|
Integer maxSeqNo = ObjectPath.evaluate(shard, "seq_no.max");
|
||||||
|
Integer localCheckpoint = ObjectPath.evaluate(shard, "seq_no.local_checkpoint");
|
||||||
|
Integer globalCheckpoint = ObjectPath.evaluate(shard, "seq_no.global_checkpoint");
|
||||||
|
seqNoStats = new SeqNoStats(maxSeqNo, localCheckpoint, globalCheckpoint);
|
||||||
|
} else {
|
||||||
|
seqNoStats = null;
|
||||||
|
}
|
||||||
|
shards.add(new Shard(node, primary, seqNoStats));
|
||||||
|
}
|
||||||
|
return shards;
|
||||||
|
}
|
||||||
|
|
||||||
|
private Nodes buildNodeAndVersions() throws IOException {
|
||||||
|
Response response = client().performRequest("GET", "_nodes");
|
||||||
|
ObjectPath objectPath = objectPath(response);
|
||||||
|
Map<String, Object> nodesAsMap = objectPath.evaluate("nodes");
|
||||||
|
Nodes nodes = new Nodes();
|
||||||
|
for (String id : nodesAsMap.keySet()) {
|
||||||
|
nodes.add(new Node(
|
||||||
|
id,
|
||||||
|
objectPath.evaluate("nodes." + id + ".name"),
|
||||||
|
Version.fromString(objectPath.evaluate("nodes." + id + ".version")),
|
||||||
|
HttpHost.create(objectPath.evaluate("nodes." + id + ".http.publish_address"))));
|
||||||
|
}
|
||||||
|
response = client().performRequest("GET", "_cluster/state");
|
||||||
|
nodes.setMasterNodeId(objectPath(response).evaluate("master_node"));
|
||||||
|
return nodes;
|
||||||
|
}
|
||||||
|
|
||||||
|
final class Nodes extends HashMap<String, Node> {
|
||||||
|
|
||||||
|
private String masterNodeId = null;
|
||||||
|
|
||||||
|
public Node getMaster() {
|
||||||
|
return get(masterNodeId);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMasterNodeId(String id) {
|
||||||
|
if (get(id) == null) {
|
||||||
|
throw new IllegalArgumentException("node with id [" + id + "] not found. got:" + toString());
|
||||||
|
}
|
||||||
|
masterNodeId = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void add(Node node) {
|
||||||
|
put(node.getId(), node);
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Node> getNewNodes() {
|
||||||
|
Version bwcVersion = getBWCVersion();
|
||||||
|
return values().stream().filter(n -> n.getVersion().after(bwcVersion)).collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Node> getBWCNodes() {
|
||||||
|
Version bwcVersion = getBWCVersion();
|
||||||
|
return values().stream().filter(n -> n.getVersion().equals(bwcVersion)).collect(Collectors.toList());
|
||||||
|
}
|
||||||
|
|
||||||
|
public Version getBWCVersion() {
|
||||||
|
if (isEmpty()) {
|
||||||
|
throw new IllegalStateException("no nodes available");
|
||||||
|
}
|
||||||
|
return Version.fromId(values().stream().map(node -> node.getVersion().id).min(Integer::compareTo).get());
|
||||||
|
}
|
||||||
|
|
||||||
|
public Node getSafe(String id) {
|
||||||
|
Node node = get(id);
|
||||||
|
if (node == null) {
|
||||||
|
throw new IllegalArgumentException("node with id [" + id + "] not found");
|
||||||
|
}
|
||||||
|
return node;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Nodes{" +
|
||||||
|
"masterNodeId='" + masterNodeId + "'\n" +
|
||||||
|
values().stream().map(Node::toString).collect(Collectors.joining("\n")) +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final class Node {
|
||||||
|
private final String id;
|
||||||
|
private final String nodeName;
|
||||||
|
private final Version version;
|
||||||
|
private final HttpHost publishAddress;
|
||||||
|
|
||||||
|
Node(String id, String nodeName, Version version, HttpHost publishAddress) {
|
||||||
|
this.id = id;
|
||||||
|
this.nodeName = nodeName;
|
||||||
|
this.version = version;
|
||||||
|
this.publishAddress = publishAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getNodeName() {
|
||||||
|
return nodeName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public HttpHost getPublishAddress() {
|
||||||
|
return publishAddress;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Version getVersion() {
|
||||||
|
return version;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Node{" +
|
||||||
|
"id='" + id + '\'' +
|
||||||
|
", nodeName='" + nodeName + '\'' +
|
||||||
|
", version=" + version +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final class Shard {
|
||||||
|
private final Node node;
|
||||||
|
private final boolean Primary;
|
||||||
|
private final SeqNoStats seqNoStats;
|
||||||
|
|
||||||
|
Shard(Node node, boolean primary, SeqNoStats seqNoStats) {
|
||||||
|
this.node = node;
|
||||||
|
Primary = primary;
|
||||||
|
this.seqNoStats = seqNoStats;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Node getNode() {
|
||||||
|
return node;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isPrimary() {
|
||||||
|
return Primary;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SeqNoStats getSeqNoStats() {
|
||||||
|
return seqNoStats;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return "Shard{" +
|
||||||
|
"node=" + node +
|
||||||
|
", Primary=" + Primary +
|
||||||
|
", seqNoStats=" + seqNoStats +
|
||||||
|
'}';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -25,7 +25,7 @@ task oldClusterTest(type: RestIntegTestTask) {
|
||||||
mustRunAfter(precommit)
|
mustRunAfter(precommit)
|
||||||
cluster {
|
cluster {
|
||||||
distribution = 'zip'
|
distribution = 'zip'
|
||||||
bwcVersion = '6.0.0-alpha1-SNAPSHOT' // TODO: either randomize, or make this settable with sysprop
|
bwcVersion = '5.2.0-SNAPSHOT' // TODO: either randomize, or make this settable with sysprop
|
||||||
numBwcNodes = 2
|
numBwcNodes = 2
|
||||||
numNodes = 2
|
numNodes = 2
|
||||||
clusterName = 'rolling-upgrade'
|
clusterName = 'rolling-upgrade'
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
---
|
---
|
||||||
"Help":
|
"Help":
|
||||||
|
- skip:
|
||||||
|
version: " - 5.99.99"
|
||||||
|
reason: seq no stats were added in 6.0.0
|
||||||
|
|
||||||
- do:
|
- do:
|
||||||
cat.shards:
|
cat.shards:
|
||||||
help: true
|
help: true
|
||||||
|
|
|
@ -111,8 +111,8 @@ public abstract class ESRestTestCase extends ESTestCase {
|
||||||
}
|
}
|
||||||
clusterHosts = unmodifiableList(hosts);
|
clusterHosts = unmodifiableList(hosts);
|
||||||
logger.info("initializing REST clients against {}", clusterHosts);
|
logger.info("initializing REST clients against {}", clusterHosts);
|
||||||
client = buildClient(restClientSettings());
|
client = buildClient(restClientSettings(), clusterHosts.toArray(new HttpHost[clusterHosts.size()]));
|
||||||
adminClient = buildClient(restAdminSettings());
|
adminClient = buildClient(restAdminSettings(), clusterHosts.toArray(new HttpHost[clusterHosts.size()]));
|
||||||
}
|
}
|
||||||
assert client != null;
|
assert client != null;
|
||||||
assert adminClient != null;
|
assert adminClient != null;
|
||||||
|
@ -272,8 +272,8 @@ public abstract class ESRestTestCase extends ESTestCase {
|
||||||
return "http";
|
return "http";
|
||||||
}
|
}
|
||||||
|
|
||||||
private RestClient buildClient(Settings settings) throws IOException {
|
protected RestClient buildClient(Settings settings, HttpHost[] hosts) throws IOException {
|
||||||
RestClientBuilder builder = RestClient.builder(clusterHosts.toArray(new HttpHost[clusterHosts.size()]));
|
RestClientBuilder builder = RestClient.builder(hosts);
|
||||||
String keystorePath = settings.get(TRUSTSTORE_PATH);
|
String keystorePath = settings.get(TRUSTSTORE_PATH);
|
||||||
if (keystorePath != null) {
|
if (keystorePath != null) {
|
||||||
final String keystorePass = settings.get(TRUSTSTORE_PASSWORD);
|
final String keystorePass = settings.get(TRUSTSTORE_PASSWORD);
|
||||||
|
|
|
@ -46,17 +46,28 @@ public class ObjectPath {
|
||||||
this.object = object;
|
this.object = object;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A utility method that creates an {@link ObjectPath} via {@link #ObjectPath(Object)} returns
|
||||||
|
* the result of calling {@link #evaluate(String)} on it.
|
||||||
|
*/
|
||||||
|
public static <T> T evaluate(Object object, String path) throws IOException {
|
||||||
|
return new ObjectPath(object).evaluate(path, Stash.EMPTY);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the object corresponding to the provided path if present, null otherwise
|
* Returns the object corresponding to the provided path if present, null otherwise
|
||||||
*/
|
*/
|
||||||
public Object evaluate(String path) throws IOException {
|
public <T> T evaluate(String path) throws IOException {
|
||||||
return evaluate(path, Stash.EMPTY);
|
return evaluate(path, Stash.EMPTY);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the object corresponding to the provided path if present, null otherwise
|
* Returns the object corresponding to the provided path if present, null otherwise
|
||||||
*/
|
*/
|
||||||
public Object evaluate(String path, Stash stash) throws IOException {
|
@SuppressWarnings("unchecked")
|
||||||
|
public <T> T evaluate(String path, Stash stash) throws IOException {
|
||||||
String[] parts = parsePath(path);
|
String[] parts = parsePath(path);
|
||||||
Object object = this.object;
|
Object object = this.object;
|
||||||
for (String part : parts) {
|
for (String part : parts) {
|
||||||
|
@ -65,7 +76,7 @@ public class ObjectPath {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return object;
|
return (T)object;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
|
|
Loading…
Reference in New Issue