java.lang.Object
org.elasticsearch.transport.RemoteClusterAware
- Direct Known Subclasses:
RemoteClusterService
Base class for all services and components that need up-to-date information about the registered remote clusters
-
Field Summary
Fields -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
RemoteClusterAware
(Settings settings) Creates a newRemoteClusterAware
instance -
Method Summary
Modifier and TypeMethodDescriptionstatic String
buildRemoteIndexName
(String clusterAlias, String indexName) getEnabledRemoteClusters
(Settings settings) Returns remote clusters that are enabled in these settingsgroupClusterIndices
(Set<String> remoteClusterNames, String[] requestIndices) Groups indices per cluster by splitting remote cluster-alias, index-name pairs onREMOTE_CLUSTER_INDEX_SEPARATOR
.void
listenForUpdates
(ClusterSettings clusterSettings) Registers this instance to listen to updates on the cluster settings.protected abstract void
updateRemoteCluster
(String clusterAlias, Settings settings) Subclasses must implement this to receive information about updated cluster aliases.
-
Field Details
-
REMOTE_CLUSTER_INDEX_SEPARATOR
public static final char REMOTE_CLUSTER_INDEX_SEPARATOR- See Also:
-
LOCAL_CLUSTER_GROUP_KEY
- See Also:
-
settings
-
-
Constructor Details
-
RemoteClusterAware
Creates a newRemoteClusterAware
instance- Parameters:
settings
- the nodes level settings
-
-
Method Details
-
getEnabledRemoteClusters
Returns remote clusters that are enabled in these settings -
groupClusterIndices
protected Map<String,List<String>> groupClusterIndices(Set<String> remoteClusterNames, String[] requestIndices) Groups indices per cluster by splitting remote cluster-alias, index-name pairs onREMOTE_CLUSTER_INDEX_SEPARATOR
. All indices per cluster are collected as a list in the returned map keyed by the cluster alias. Local indices are grouped underLOCAL_CLUSTER_GROUP_KEY
. The returned map is mutable.- Parameters:
remoteClusterNames
- the remote cluster namesrequestIndices
- the indices in the search request to filter- Returns:
- a map of grouped remote and local indices
-
updateRemoteCluster
Subclasses must implement this to receive information about updated cluster aliases. -
listenForUpdates
Registers this instance to listen to updates on the cluster settings. -
buildRemoteIndexName
-