Package org.elasticsearch.transport
Class RemoteClusterService
java.lang.Object
org.elasticsearch.transport.RemoteClusterAware
org.elasticsearch.transport.RemoteClusterService
- All Implemented Interfaces:
Closeable,AutoCloseable
Basic service for accessing remote clusters via gateway nodes
-
Field Summary
FieldsModifier and TypeFieldDescriptionIftrueconnecting to remote clusters is supported on this node.static Setting.AffixSetting<org.elasticsearch.core.TimeValue>static Setting.AffixSetting<Boolean>static Setting<org.elasticsearch.core.TimeValue>The initial connect timeout for remote cluster connectionsThe name of a node attribute to select nodes that should be connected to in the remote cluster.static Setting.AffixSetting<Boolean>static SettingUpgrader<Boolean>static Setting<org.elasticsearch.core.TimeValue>Fields inherited from class org.elasticsearch.transport.RemoteClusterAware
LOCAL_CLUSTER_GROUP_KEY, REMOTE_CLUSTER_INDEX_SEPARATOR, settings -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()voidcollectNodes(Set<String> clusters, ActionListener<BiFunction<String,String,DiscoveryNode>> listener)Collects all nodes of the given clusters and returns / passes a (clusterAlias, nodeId) toDiscoveryNodefunction on success.getConnection(String cluster)getConnection(DiscoveryNode node, String cluster)Returns a connection to the given node on the given remote clusterReturns the registered remote cluster names.getRemoteClusterClient(ThreadPool threadPool, String clusterAlias)Returns a client to the remote cluster if the given cluster alias exists.groupIndices(IndicesOptions indicesOptions, String[] indices, Predicate<String> indexExists)booleanReturnstrueif at least one remote cluster is configuredbooleanbooleanisSkipUnavailable(String clusterAlias)Returns whether the cluster identified by the provided alias is configured to be skipped when unavailablevoidlistenForUpdates(ClusterSettings clusterSettings)Registers this instance to listen to updates on the cluster settings.protected voidupdateRemoteCluster(String clusterAlias, Settings settings)Subclasses must implement this to receive information about updated cluster aliases.Methods inherited from class org.elasticsearch.transport.RemoteClusterAware
buildRemoteIndexName, getEnabledRemoteClusters, groupClusterIndices
-
Field Details
-
SEARCH_REMOTE_INITIAL_CONNECTION_TIMEOUT_SETTING
public static final Setting<org.elasticsearch.core.TimeValue> SEARCH_REMOTE_INITIAL_CONNECTION_TIMEOUT_SETTING -
REMOTE_INITIAL_CONNECTION_TIMEOUT_SETTING
public static final Setting<org.elasticsearch.core.TimeValue> REMOTE_INITIAL_CONNECTION_TIMEOUT_SETTINGThe initial connect timeout for remote cluster connections -
SEARCH_REMOTE_NODE_ATTRIBUTE
-
REMOTE_NODE_ATTRIBUTE
The name of a node attribute to select nodes that should be connected to in the remote cluster. For instance a node can be configured withnode.attr.gateway: truein order to be eligible as a gateway node between clusters. In that casesearch.remote.node.attr: gatewaycan be used to filter out other nodes in the remote cluster. The value of the setting is expected to be a boolean,truefor nodes that can become gateways,falseotherwise. -
SEARCH_ENABLE_REMOTE_CLUSTERS
-
ENABLE_REMOTE_CLUSTERS
Iftrueconnecting to remote clusters is supported on this node. Iffalsethis node will not establish connections to any remote clusters configured. Search requests executed against this node (where this node is the coordinating node) will fail if remote cluster syntax is used as an index pattern. The default istrue -
SEARCH_REMOTE_CLUSTER_SKIP_UNAVAILABLE
-
SEARCH_REMOTE_CLUSTER_SKIP_UNAVAILABLE_UPGRADER
-
REMOTE_CLUSTER_SKIP_UNAVAILABLE
-
REMOTE_CLUSTER_PING_SCHEDULE
public static final Setting.AffixSetting<org.elasticsearch.core.TimeValue> REMOTE_CLUSTER_PING_SCHEDULE -
REMOTE_CLUSTER_COMPRESS
-
-
Method Details
-
isEnabled
public boolean isEnabled() -
getLocalNode
-
isCrossClusterSearchEnabled
public boolean isCrossClusterSearchEnabled()Returnstrueif at least one remote cluster is configured -
groupIndices
public Map<String,OriginalIndices> groupIndices(IndicesOptions indicesOptions, String[] indices, Predicate<String> indexExists) -
getRegisteredRemoteClusterNames
Returns the registered remote cluster names. -
getConnection
Returns a connection to the given node on the given remote cluster- Throws:
IllegalArgumentException- if the remote cluster is unknown
-
getConnection
-
listenForUpdates
Description copied from class:RemoteClusterAwareRegisters this instance to listen to updates on the cluster settings.- Overrides:
listenForUpdatesin classRemoteClusterAware
-
updateRemoteCluster
Description copied from class:RemoteClusterAwareSubclasses must implement this to receive information about updated cluster aliases.- Specified by:
updateRemoteClusterin classRemoteClusterAware
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Throws:
IOException
-
getRemoteConnectionInfos
-
collectNodes
public void collectNodes(Set<String> clusters, ActionListener<BiFunction<String,String,DiscoveryNode>> listener)Collects all nodes of the given clusters and returns / passes a (clusterAlias, nodeId) toDiscoveryNodefunction on success. -
getRemoteClusterClient
Returns a client to the remote cluster if the given cluster alias exists.- Parameters:
threadPool- theThreadPoolfor the clientclusterAlias- the cluster alias the remote cluster is registered under- Throws:
IllegalArgumentException- if the given clusterAlias doesn't exist
-