All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.elasticsearch.cluster.ClusterState Maven / Gradle / Ivy

There is a newer version: 8.13.4
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0 and the Server Side Public License, v 1; you may not use this file except
 * in compliance with, at your election, the Elastic License 2.0 or the Server
 * Side Public License, v 1.
 */

package org.elasticsearch.cluster;

import com.carrotsearch.hppc.cursors.ObjectObjectCursor;

import org.elasticsearch.Version;
import org.elasticsearch.client.transport.TransportClient;
import org.elasticsearch.cluster.block.ClusterBlock;
import org.elasticsearch.cluster.block.ClusterBlocks;
import org.elasticsearch.cluster.coordination.CoordinationMetadata;
import org.elasticsearch.cluster.coordination.CoordinationMetadata.VotingConfigExclusion;
import org.elasticsearch.cluster.coordination.CoordinationMetadata.VotingConfiguration;
import org.elasticsearch.cluster.metadata.IndexMetadata;
import org.elasticsearch.cluster.metadata.Metadata;
import org.elasticsearch.cluster.node.DiscoveryNode;
import org.elasticsearch.cluster.node.DiscoveryNodes;
import org.elasticsearch.cluster.routing.IndexRoutingTable;
import org.elasticsearch.cluster.routing.IndexShardRoutingTable;
import org.elasticsearch.cluster.routing.RoutingNode;
import org.elasticsearch.cluster.routing.RoutingNodes;
import org.elasticsearch.cluster.routing.RoutingTable;
import org.elasticsearch.cluster.routing.ShardRouting;
import org.elasticsearch.cluster.service.ClusterService;
import org.elasticsearch.common.Strings;
import org.elasticsearch.common.UUIDs;
import org.elasticsearch.common.bytes.BytesReference;
import org.elasticsearch.common.collect.ImmutableOpenMap;
import org.elasticsearch.common.io.stream.BytesStreamOutput;
import org.elasticsearch.common.io.stream.NamedWriteableAwareStreamInput;
import org.elasticsearch.common.io.stream.NamedWriteableRegistry;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
import org.elasticsearch.common.io.stream.VersionedNamedWriteable;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.core.Nullable;
import org.elasticsearch.discovery.Discovery;
import org.elasticsearch.xcontent.ToXContentFragment;
import org.elasticsearch.xcontent.XContentBuilder;

import java.io.IOException;
import java.util.EnumSet;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.Set;

import static org.elasticsearch.cluster.coordination.Coordinator.ZEN1_BWC_TERM;

/**
 * Represents the current state of the cluster.
 * 

* The cluster state object is immutable with the exception of the {@link RoutingNodes} structure, which is built on demand from the {@link * RoutingTable}. The cluster state can be updated only on the master node. All updates are performed by on a single thread and controlled * by the {@link ClusterService}. After every update the {@link Discovery#publish} method publishes a new version of the cluster state to * all other nodes in the cluster. *

* Implements the {@link Diffable} interface in order to support publishing of cluster state differences instead of the entire state on each * change. The publishing mechanism only sends differences to a node if this node was present in the previous version of the cluster state. * If a node was not present in the previous version of the cluster state, this node is unlikely to have the previous cluster state version * and should be sent a complete version. In order to make sure that the differences are applied to the correct version of the cluster * state, each cluster state version update generates {@link #stateUUID} that uniquely identifies this version of the state. This uuid is * verified by the {@link ClusterStateDiff#apply} method to make sure that the correct diffs are applied. If uuids don’t match, the {@link * ClusterStateDiff#apply} method throws the {@link IncompatibleClusterStateVersionException}, which causes the publishing mechanism to send * a full version of the cluster state to the node on which this exception was thrown. *

* Implements {@link ToXContentFragment} to be exposed in REST APIs (e.g. {@code GET _cluster/state} and {@code POST _cluster/reroute}) and * to be indexed by monitoring, mostly just for diagnostics purposes. The XContent representation does not need to be 100% faithful since we * never reconstruct a cluster state from its XContent representation, but the more faithful it is the more useful it is for diagnostics. */ public class ClusterState implements ToXContentFragment, Diffable { public static final ClusterState EMPTY_STATE = builder(ClusterName.CLUSTER_NAME_SETTING.getDefault(Settings.EMPTY)).build(); /** * An interface that implementors use when a class requires a client to maybe have a feature. */ public interface FeatureAware { /** * An optional feature that is required for the client to have. * * @return an empty optional if no feature is required otherwise a string representing the required feature */ default Optional getRequiredFeature() { return Optional.empty(); } /** * Tests whether or not the custom should be serialized. The criteria are: *

    *
  • the output stream must be at least the minimum supported version of the custom
  • *
  • the output stream must have the feature required by the custom (if any) or not be a transport client
  • *
*

* That is, we only serialize customs to clients than can understand the custom based on the version of the client and the features * that the client has. For transport clients we can be lenient in requiring a feature in which case we do not send the custom but * for connected nodes we always require that the node has the required feature. * * @param out the output stream * @param custom the custom to serialize * @param the type of the custom * @return true if the custom should be serialized and false otherwise */ static boolean shouldSerialize(final StreamOutput out, final T custom) { if (out.getVersion().before(custom.getMinimalSupportedVersion())) { return false; } if (custom.getRequiredFeature().isPresent()) { final String requiredFeature = custom.getRequiredFeature().get(); // if it is a transport client we are lenient yet for a connected node it must have the required feature return out.hasFeature(requiredFeature) || out.hasFeature(TransportClient.TRANSPORT_CLIENT_FEATURE) == false; } return true; } } public interface Custom extends NamedDiffable, ToXContentFragment, FeatureAware { /** * Returns true iff this {@link Custom} is private to the cluster and should never be send to a client. * The default is false; */ default boolean isPrivate() { return false; } /** * Serialize this {@link Custom} for diagnostic purposes, exposed by the

GET _cluster/state
API etc. The XContent * representation does not need to be 100% faithful since we never reconstruct a cluster state from its XContent representation, but * the more faithful it is the more useful it is for diagnostics. */ @Override XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException; } private static final NamedDiffableValueSerializer CUSTOM_VALUE_SERIALIZER = new NamedDiffableValueSerializer<>(Custom.class); public static final String UNKNOWN_UUID = "_na_"; public static final long UNKNOWN_VERSION = -1; private final long version; private final String stateUUID; private final RoutingTable routingTable; private final DiscoveryNodes nodes; private final Metadata metadata; private final ClusterBlocks blocks; private final ImmutableOpenMap customs; private final ClusterName clusterName; private final boolean wasReadFromDiff; private final int minimumMasterNodesOnPublishingMaster; // built on demand private volatile RoutingNodes routingNodes; public ClusterState(long version, String stateUUID, ClusterState state) { this( state.clusterName, version, stateUUID, state.metadata(), state.routingTable(), state.nodes(), state.blocks(), state.customs(), -1, false, state.routingNodes ); } public ClusterState( ClusterName clusterName, long version, String stateUUID, Metadata metadata, RoutingTable routingTable, DiscoveryNodes nodes, ClusterBlocks blocks, ImmutableOpenMap customs, int minimumMasterNodesOnPublishingMaster, boolean wasReadFromDiff, @Nullable RoutingNodes routingNodes ) { this.version = version; this.stateUUID = stateUUID; this.clusterName = clusterName; this.metadata = metadata; this.routingTable = routingTable; this.nodes = nodes; this.blocks = blocks; this.customs = customs; this.minimumMasterNodesOnPublishingMaster = minimumMasterNodesOnPublishingMaster; this.wasReadFromDiff = wasReadFromDiff; this.routingNodes = routingNodes; assert routingNodes == null || routingNodes.equals(new RoutingNodes(this)) : "RoutingNodes [" + routingNodes + "] are not consistent with this cluster state [" + new RoutingNodes(this) + "]"; } public long term() { return coordinationMetadata().term(); } public long version() { return this.version; } public long getVersion() { return version(); } public long getVersionOrMetadataVersion() { // When following a Zen1 master, the cluster state version is not guaranteed to increase, so instead it is preferable to use the // metadata version to determine the freshest node. However when following a Zen2 master the cluster state version should be used. return term() == ZEN1_BWC_TERM ? metadata().version() : version(); } /** * This stateUUID is automatically generated for for each version of cluster state. It is used to make sure that * we are applying diffs to the right previous state. */ public String stateUUID() { return this.stateUUID; } public DiscoveryNodes nodes() { return this.nodes; } public DiscoveryNodes getNodes() { return nodes(); } public Metadata metadata() { return this.metadata; } public Metadata getMetadata() { return metadata(); } public CoordinationMetadata coordinationMetadata() { return metadata.coordinationMetadata(); } public RoutingTable routingTable() { return routingTable; } public RoutingTable getRoutingTable() { return routingTable(); } public ClusterBlocks blocks() { return this.blocks; } public ClusterBlocks getBlocks() { return blocks; } public ImmutableOpenMap customs() { return this.customs; } public ImmutableOpenMap getCustoms() { return this.customs; } @SuppressWarnings("unchecked") public T custom(String type) { return (T) customs.get(type); } @SuppressWarnings("unchecked") public T custom(String type, T defaultValue) { return (T) customs.getOrDefault(type, defaultValue); } public ClusterName getClusterName() { return this.clusterName; } public VotingConfiguration getLastAcceptedConfiguration() { return coordinationMetadata().getLastAcceptedConfiguration(); } public VotingConfiguration getLastCommittedConfiguration() { return coordinationMetadata().getLastCommittedConfiguration(); } public Set getVotingConfigExclusions() { return coordinationMetadata().getVotingConfigExclusions(); } /** * The node-level `discovery.zen.minimum_master_nodes` setting on the master node that published this cluster state, for use in rolling * upgrades from 6.x to 7.x. Once all the 6.x master-eligible nodes have left the cluster, the 7.x nodes use this value to determine how * many master-eligible nodes must be discovered before the cluster can be bootstrapped. Note that this method returns the node-level * value of this setting, and ignores any cluster-level override that was set via the API. Callers are expected to combine this value * with any value set in the cluster-level settings. This should be removed once we no longer need support for {@link Version#V_6_7_0}. */ public int getMinimumMasterNodesOnPublishingMaster() { return minimumMasterNodesOnPublishingMaster; } // Used for testing and logging to determine how this cluster state was send over the wire public boolean wasReadFromDiff() { return wasReadFromDiff; } /** * Returns a built (on demand) routing nodes view of the routing table. */ public RoutingNodes getRoutingNodes() { if (routingNodes != null) { return routingNodes; } routingNodes = new RoutingNodes(this); return routingNodes; } @Override public String toString() { StringBuilder sb = new StringBuilder(); final String TAB = " "; sb.append("cluster uuid: ") .append(metadata.clusterUUID()) .append(" [committed: ") .append(metadata.clusterUUIDCommitted()) .append("]") .append("\n"); sb.append("version: ").append(version).append("\n"); sb.append("state uuid: ").append(stateUUID).append("\n"); sb.append("from_diff: ").append(wasReadFromDiff).append("\n"); sb.append("meta data version: ").append(metadata.version()).append("\n"); sb.append(TAB).append("coordination_metadata:\n"); sb.append(TAB).append(TAB).append("term: ").append(coordinationMetadata().term()).append("\n"); sb.append(TAB) .append(TAB) .append("last_committed_config: ") .append(coordinationMetadata().getLastCommittedConfiguration()) .append("\n"); sb.append(TAB) .append(TAB) .append("last_accepted_config: ") .append(coordinationMetadata().getLastAcceptedConfiguration()) .append("\n"); sb.append(TAB).append(TAB).append("voting tombstones: ").append(coordinationMetadata().getVotingConfigExclusions()).append("\n"); for (IndexMetadata indexMetadata : metadata) { sb.append(TAB).append(indexMetadata.getIndex()); sb.append(": v[") .append(indexMetadata.getVersion()) .append("], mv[") .append(indexMetadata.getMappingVersion()) .append("], sv[") .append(indexMetadata.getSettingsVersion()) .append("], av[") .append(indexMetadata.getAliasesVersion()) .append("]\n"); for (int shard = 0; shard < indexMetadata.getNumberOfShards(); shard++) { sb.append(TAB).append(TAB).append(shard).append(": "); sb.append("p_term [").append(indexMetadata.primaryTerm(shard)).append("], "); sb.append("isa_ids ").append(indexMetadata.inSyncAllocationIds(shard)).append("\n"); } } if (metadata.customs().isEmpty() == false) { sb.append("metadata customs:\n"); for (final ObjectObjectCursor cursor : metadata.customs()) { final String type = cursor.key; final Metadata.Custom custom = cursor.value; sb.append(TAB).append(type).append(": ").append(custom); } sb.append("\n"); } sb.append(blocks()); sb.append(nodes()); sb.append(routingTable()); sb.append(getRoutingNodes()); if (customs.isEmpty() == false) { sb.append("customs:\n"); for (ObjectObjectCursor cursor : customs) { final String type = cursor.key; final Custom custom = cursor.value; sb.append(TAB).append(type).append(": ").append(custom); } } return sb.toString(); } /** * a cluster state supersedes another state if they are from the same master and the version of this state is higher than that of the * other state. *

* In essence that means that all the changes from the other cluster state are also reflected by the current one */ public boolean supersedes(ClusterState other) { return this.nodes().getMasterNodeId() != null && this.nodes().getMasterNodeId().equals(other.nodes().getMasterNodeId()) && this.version() > other.version(); } public enum Metric { VERSION("version"), MASTER_NODE("master_node"), BLOCKS("blocks"), NODES("nodes"), METADATA("metadata"), ROUTING_TABLE("routing_table"), ROUTING_NODES("routing_nodes"), CUSTOMS("customs"); private static Map valueToEnum; static { valueToEnum = new HashMap<>(); for (Metric metric : Metric.values()) { valueToEnum.put(metric.value, metric); } } private final String value; Metric(String value) { this.value = value; } public static EnumSet parseString(String param, boolean ignoreUnknown) { String[] metrics = Strings.splitStringByCommaToArray(param); EnumSet result = EnumSet.noneOf(Metric.class); for (String metric : metrics) { if ("_all".equals(metric)) { result = EnumSet.allOf(Metric.class); break; } Metric m = valueToEnum.get(metric); if (m == null) { if (ignoreUnknown == false) { throw new IllegalArgumentException("Unknown metric [" + metric + "]"); } } else { result.add(m); } } return result; } @Override public String toString() { return value; } } @Override public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException { EnumSet metrics = Metric.parseString(params.param("metric", "_all"), true); // always provide the cluster_uuid as part of the top-level response (also part of the metadata response) builder.field("cluster_uuid", metadata().clusterUUID()); if (metrics.contains(Metric.VERSION)) { builder.field("version", version); builder.field("state_uuid", stateUUID); } if (metrics.contains(Metric.MASTER_NODE)) { builder.field("master_node", nodes().getMasterNodeId()); } if (metrics.contains(Metric.BLOCKS)) { builder.startObject("blocks"); if (blocks().global().isEmpty() == false) { builder.startObject("global"); for (ClusterBlock block : blocks().global()) { block.toXContent(builder, params); } builder.endObject(); } if (blocks().indices().isEmpty() == false) { builder.startObject("indices"); for (ObjectObjectCursor> entry : blocks().indices()) { builder.startObject(entry.key); for (ClusterBlock block : entry.value) { block.toXContent(builder, params); } builder.endObject(); } builder.endObject(); } builder.endObject(); } // nodes if (metrics.contains(Metric.NODES)) { builder.startObject("nodes"); for (DiscoveryNode node : nodes) { node.toXContent(builder, params); } builder.endObject(); } // meta data if (metrics.contains(Metric.METADATA)) { metadata.toXContent(builder, params); } // routing table if (metrics.contains(Metric.ROUTING_TABLE)) { builder.startObject("routing_table"); builder.startObject("indices"); for (IndexRoutingTable indexRoutingTable : routingTable()) { builder.startObject(indexRoutingTable.getIndex().getName()); builder.startObject("shards"); for (IndexShardRoutingTable indexShardRoutingTable : indexRoutingTable) { builder.startArray(Integer.toString(indexShardRoutingTable.shardId().id())); for (ShardRouting shardRouting : indexShardRoutingTable) { shardRouting.toXContent(builder, params); } builder.endArray(); } builder.endObject(); builder.endObject(); } builder.endObject(); builder.endObject(); } // routing nodes if (metrics.contains(Metric.ROUTING_NODES)) { builder.startObject("routing_nodes"); builder.startArray("unassigned"); for (ShardRouting shardRouting : getRoutingNodes().unassigned()) { shardRouting.toXContent(builder, params); } builder.endArray(); builder.startObject("nodes"); for (RoutingNode routingNode : getRoutingNodes()) { builder.startArray(routingNode.nodeId() == null ? "null" : routingNode.nodeId()); for (ShardRouting shardRouting : routingNode) { shardRouting.toXContent(builder, params); } builder.endArray(); } builder.endObject(); builder.endObject(); } if (metrics.contains(Metric.CUSTOMS)) { for (ObjectObjectCursor cursor : customs) { builder.startObject(cursor.key); cursor.value.toXContent(builder, params); builder.endObject(); } } return builder; } public static Builder builder(ClusterName clusterName) { return new Builder(clusterName); } public static Builder builder(ClusterState state) { return new Builder(state); } public static class Builder { private ClusterState previous; private final ClusterName clusterName; private long version = 0; private String uuid = UNKNOWN_UUID; private Metadata metadata = Metadata.EMPTY_METADATA; private RoutingTable routingTable = RoutingTable.EMPTY_ROUTING_TABLE; private DiscoveryNodes nodes = DiscoveryNodes.EMPTY_NODES; private ClusterBlocks blocks = ClusterBlocks.EMPTY_CLUSTER_BLOCK; private final ImmutableOpenMap.Builder customs; private boolean fromDiff; private int minimumMasterNodesOnPublishingMaster = -1; public Builder(ClusterState state) { this.previous = state; this.clusterName = state.clusterName; this.version = state.version(); this.uuid = state.stateUUID(); this.nodes = state.nodes(); this.routingTable = state.routingTable(); this.metadata = state.metadata(); this.blocks = state.blocks(); this.customs = ImmutableOpenMap.builder(state.customs()); this.minimumMasterNodesOnPublishingMaster = state.minimumMasterNodesOnPublishingMaster; this.fromDiff = false; } public Builder(ClusterName clusterName) { customs = ImmutableOpenMap.builder(); this.clusterName = clusterName; } public Builder nodes(DiscoveryNodes.Builder nodesBuilder) { return nodes(nodesBuilder.build()); } public Builder nodes(DiscoveryNodes nodes) { this.nodes = nodes; return this; } public DiscoveryNodes nodes() { return nodes; } public Builder routingTable(RoutingTable routingTable) { this.routingTable = routingTable; return this; } public Builder metadata(Metadata.Builder metadataBuilder) { return metadata(metadataBuilder.build()); } public Builder metadata(Metadata metadata) { this.metadata = metadata; return this; } public Builder blocks(ClusterBlocks.Builder blocksBuilder) { return blocks(blocksBuilder.build()); } public Builder blocks(ClusterBlocks blocks) { this.blocks = blocks; return this; } public Builder version(long version) { this.version = version; return this; } public Builder incrementVersion() { this.version = version + 1; this.uuid = UNKNOWN_UUID; return this; } public Builder stateUUID(String uuid) { this.uuid = uuid; return this; } public Builder minimumMasterNodesOnPublishingMaster(int minimumMasterNodesOnPublishingMaster) { this.minimumMasterNodesOnPublishingMaster = minimumMasterNodesOnPublishingMaster; return this; } public Builder putCustom(String type, Custom custom) { customs.put(type, Objects.requireNonNull(custom, type)); return this; } public Builder removeCustom(String type) { customs.remove(type); return this; } public Builder customs(ImmutableOpenMap customs) { customs.stream().forEach(entry -> Objects.requireNonNull(entry.getValue(), entry.getKey())); this.customs.putAll(customs); return this; } public Builder fromDiff(boolean fromDiff) { this.fromDiff = fromDiff; return this; } public ClusterState build() { if (UNKNOWN_UUID.equals(uuid)) { uuid = UUIDs.randomBase64UUID(); } final RoutingNodes routingNodes; if (previous != null && routingTable.indicesRouting() == previous.routingTable.indicesRouting() && nodes == previous.nodes) { // routing table contents and nodes haven't changed so we can try to reuse the previous state's routing nodes which are // expensive to compute routingNodes = previous.routingNodes; } else { routingNodes = null; } return new ClusterState( clusterName, version, uuid, metadata, routingTable, nodes, blocks, customs.build(), minimumMasterNodesOnPublishingMaster, fromDiff, routingNodes ); } public static byte[] toBytes(ClusterState state) throws IOException { BytesStreamOutput os = new BytesStreamOutput(); state.writeTo(os); return BytesReference.toBytes(os.bytes()); } /** * @param data input bytes * @param localNode used to set the local node in the cluster state. */ public static ClusterState fromBytes(byte[] data, DiscoveryNode localNode, NamedWriteableRegistry registry) throws IOException { StreamInput in = new NamedWriteableAwareStreamInput(StreamInput.wrap(data), registry); return readFrom(in, localNode); } } @Override public Diff diff(ClusterState previousState) { return new ClusterStateDiff(previousState, this); } public static Diff readDiffFrom(StreamInput in, DiscoveryNode localNode) throws IOException { return new ClusterStateDiff(in, localNode); } public static ClusterState readFrom(StreamInput in, DiscoveryNode localNode) throws IOException { ClusterName clusterName = new ClusterName(in); Builder builder = new Builder(clusterName); builder.version = in.readLong(); builder.uuid = in.readString(); builder.metadata = Metadata.readFrom(in); builder.routingTable = RoutingTable.readFrom(in); builder.nodes = DiscoveryNodes.readFrom(in, localNode); builder.blocks = ClusterBlocks.readFrom(in); int customSize = in.readVInt(); for (int i = 0; i < customSize; i++) { Custom customIndexMetadata = in.readNamedWriteable(Custom.class); builder.putCustom(customIndexMetadata.getWriteableName(), customIndexMetadata); } builder.minimumMasterNodesOnPublishingMaster = in.getVersion().onOrAfter(Version.V_6_7_0) ? in.readVInt() : -1; return builder.build(); } @Override public void writeTo(StreamOutput out) throws IOException { clusterName.writeTo(out); out.writeLong(version); out.writeString(stateUUID); metadata.writeTo(out); routingTable.writeTo(out); nodes.writeTo(out); blocks.writeTo(out); // filter out custom states not supported by the other node int numberOfCustoms = 0; for (final Custom custom : customs.values()) { if (FeatureAware.shouldSerialize(out, custom)) { numberOfCustoms++; } } out.writeVInt(numberOfCustoms); for (final Custom custom : customs.values()) { if (FeatureAware.shouldSerialize(out, custom)) { out.writeNamedWriteable(custom); } } if (out.getVersion().onOrAfter(Version.V_6_7_0)) { out.writeVInt(minimumMasterNodesOnPublishingMaster); } } private static class ClusterStateDiff implements Diff { private final long toVersion; private final String fromUuid; private final String toUuid; private final ClusterName clusterName; private final Diff routingTable; private final Diff nodes; private final Diff metadata; private final Diff blocks; private final Diff> customs; private final int minimumMasterNodesOnPublishingMaster; ClusterStateDiff(ClusterState before, ClusterState after) { fromUuid = before.stateUUID; toUuid = after.stateUUID; toVersion = after.version; clusterName = after.clusterName; routingTable = after.routingTable.diff(before.routingTable); nodes = after.nodes.diff(before.nodes); metadata = after.metadata.diff(before.metadata); blocks = after.blocks.diff(before.blocks); customs = DiffableUtils.diff(before.customs, after.customs, DiffableUtils.getStringKeySerializer(), CUSTOM_VALUE_SERIALIZER); minimumMasterNodesOnPublishingMaster = after.minimumMasterNodesOnPublishingMaster; } ClusterStateDiff(StreamInput in, DiscoveryNode localNode) throws IOException { clusterName = new ClusterName(in); fromUuid = in.readString(); toUuid = in.readString(); toVersion = in.readLong(); routingTable = RoutingTable.readDiffFrom(in); nodes = DiscoveryNodes.readDiffFrom(in, localNode); metadata = Metadata.readDiffFrom(in); blocks = ClusterBlocks.readDiffFrom(in); customs = DiffableUtils.readImmutableOpenMapDiff(in, DiffableUtils.getStringKeySerializer(), CUSTOM_VALUE_SERIALIZER); minimumMasterNodesOnPublishingMaster = in.getVersion().onOrAfter(Version.V_6_7_0) ? in.readVInt() : -1; } @Override public void writeTo(StreamOutput out) throws IOException { clusterName.writeTo(out); out.writeString(fromUuid); out.writeString(toUuid); out.writeLong(toVersion); routingTable.writeTo(out); nodes.writeTo(out); metadata.writeTo(out); blocks.writeTo(out); customs.writeTo(out); if (out.getVersion().onOrAfter(Version.V_6_7_0)) { out.writeVInt(minimumMasterNodesOnPublishingMaster); } } @Override public ClusterState apply(ClusterState state) { Builder builder = new Builder(clusterName); if (toUuid.equals(state.stateUUID)) { // no need to read the rest - cluster state didn't change return state; } if (fromUuid.equals(state.stateUUID) == false) { throw new IncompatibleClusterStateVersionException(state.version, state.stateUUID, toVersion, fromUuid); } builder.stateUUID(toUuid); builder.version(toVersion); builder.routingTable(routingTable.apply(state.routingTable)); builder.nodes(nodes.apply(state.nodes)); builder.metadata(metadata.apply(state.metadata)); builder.blocks(blocks.apply(state.blocks)); builder.customs(customs.apply(state.customs)); builder.minimumMasterNodesOnPublishingMaster(minimumMasterNodesOnPublishingMaster); builder.fromDiff(true); return builder.build(); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy