You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy-manage/deploy/elastic-cloud/serverless.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,6 +65,8 @@ To learn more about serverless status, see [Service status](../../cloud-organiza
65
65
66
66
The following FAQ addresses common questions about using {{serverless-full}} projects.
67
67
68
+
For information about upcoming features, refer to our [roadmap](https://www.elastic.co/cloud/serverless/roadmap).
69
+
68
70
### Pricing and availability
69
71
**Q: Where can I learn about pricing for {{serverless-short}}?**
70
72
A: See pricing information for [{{es-serverless}}](https://www.elastic.co/pricing/serverless-search), [{{observability}}](https://www.elastic.co/pricing/serverless-observability), and [{{sec-serverless}}](https://www.elastic.co/pricing/serverless-security).
@@ -73,6 +75,7 @@ A: See pricing information for [{{es-serverless}}](https://www.elastic.co/pricin
73
75
A: {{serverless-full}} is available in select AWS, GCP, and Azure regions, with plans to expand to more regions. For more information, refer to [](/deploy-manage/deploy/elastic-cloud/regions.md).
74
76
75
77
### Data management
78
+
76
79
**Q: How can I move data to or from {{serverless-short}} projects?**
77
80
A: We are working on data migration tools. In the interim, [use Logstash](logstash://reference/index.md) with {{es}} input and output plugins to move data to and from {{serverless-short}} projects.
78
81
@@ -83,6 +86,9 @@ A: Request for project backups or restores is currently unsupported, and we are
83
86
**Q: How can I create {{serverless-full}} service accounts?**
84
87
A: Create API keys for service accounts in your {{serverless-short}} projects. Options to automate the creation of API keys with tools such as Terraform will be available in the future.
85
88
89
+
**Q: What compliance and privacy standards does {{serverless-full}} adhere to?**
90
+
A: Alongside the entire Elastic platform, {{serverless-full}} is independently audited and certified to meet industry-leading compliance and privacy standards. Refer to the [Elastic Trust Center](https://www.elastic.co/trust) for more information. Further details about specific standards are available on our [roadmap](https://www.elastic.co/cloud/serverless/roadmap).
91
+
86
92
### Project lifecycle and support
87
93
**Q: How does {{serverless-full}} ensure compatibility between software versions?**
88
94
A: Connections and configurations are unaffected by upgrades. To ensure compatibility between software versions, quality testing and API versioning are used.
Copy file name to clipboardExpand all lines: deploy-manage/remote-clusters/_snippets/rcs-elasticsearch-api-snippet-self.md
+5-8Lines changed: 5 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@ This snippet is in use in the following locations:
5
5
-->
6
6
To configure a self-managed cluster as a remote cluster, use the [cluster update settings API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cluster-put-settings). Configure the following fields:
7
7
8
+
*`Remote cluster alias`: When using API key authentication, the cluster alias must match the one you configured when adding the API key in the Cloud UI as **Remote cluster name**.
8
9
*`mode`: `proxy`
9
10
*`proxy_address`: Enter the endpoint of the remote self-managed cluster, including the hostname, FQDN, or IP address, and the port. Both IPv4 and IPv6 addresses are supported.
10
11
@@ -16,17 +17,17 @@ To configure a self-managed cluster as a remote cluster, use the [cluster update
16
17
17
18
*`server_name`: Specify a value if the certificate presented by the remote cluster is signed for a different name than the proxy_address.
18
19
19
-
This is an example of the API call to `_cluster/settings`:
20
+
This is an example of the API call to add or update a remote cluster:
20
21
21
22
```json
22
23
PUT /_cluster/settings
23
24
{
24
25
"persistent": {
25
26
"cluster": {
26
27
"remote": {
27
-
"alias-for-my-remote-cluster": {
28
+
"alias-for-my-remote-cluster": {// Align the alias with the remote cluster name used when adding the API key.
When using API key authentication, the cluster alias must match the one you configured when adding the API key in the Cloud UI.
40
-
::::
41
-
42
-
For a full list of available client connection settings in proxy mode, refer to [remote cluster settings reference](elasticsearch://reference/elasticsearch/configuration-reference/remote-clusters.md#remote-cluster-proxy-settings).
39
+
For a full list of available client connection settings in proxy mode, refer to the [remote cluster settings reference](elasticsearch://reference/elasticsearch/configuration-reference/remote-clusters.md#remote-cluster-proxy-settings).
This snippet is in use in the following locations:
3
+
- ec-remote-cluster-same-ess.md
4
+
- ec-remote-cluster-other-ess.md
5
+
- ec-remote-cluster-ece.md
6
+
- ece-remote-cluster-same-ece.md
7
+
- ece-remote-cluster-other-ece.md
8
+
- ece-remote-cluster-ess.md
9
+
10
+
It requires remote_type substitution to be defined
11
+
-->
12
+
To configure a deployment as a remote cluster, use the [cluster update settings API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cluster-put-settings). Configure the following fields:
13
+
14
+
*`Remote cluster alias`: When using API key authentication, the cluster alias must match the one you configured when adding the API key in the Cloud UI as **Remote cluster name**.
15
+
*`mode`: `proxy`
16
+
*`proxy_address`: This value can be found on the **Security** page of the {{remote_type}} you want to use as a remote. Copy the **Proxy address** from the **Remote cluster parameters** section.
17
+
18
+
Using the API, this value can be obtained from the {{es}} resource info, concatenating the field `metadata.endpoint` and port `9400` using a semicolon.
19
+
20
+
::::{note}
21
+
If you’re using API keys as security model, change the port to `9443`.
22
+
::::
23
+
24
+
*`server_name`: This value can be found on the **Security** page of the {{remote_type}} you want to use as a remote. Copy the **Server name** from the **Remote cluster parameters** section.
25
+
26
+
Using the API, this can be obtained from the {{es}} resource info field `metadata.endpoint`.
27
+
28
+
This example shows the API call to add or update a remote cluster. The alias `alias-for-my-remote-cluster` must match the remote cluster name used when adding the API key to the deployment:
29
+
30
+
```json
31
+
PUT /_cluster/settings
32
+
{
33
+
"persistent": {
34
+
"cluster": {
35
+
"remote": {
36
+
"alias-for-my-remote-cluster": { // Remote cluster alias
For a full list of available client connection settings in proxy mode, refer to the [remote cluster settings reference](elasticsearch://reference/elasticsearch/configuration-reference/remote-clusters.md#remote-cluster-proxy-settings).
This snippet is in use in the following locations:
3
+
- ec-remote-cluster-same-ess.md
4
+
- ec-remote-cluster-other-ess.md
5
+
- ec-remote-cluster-ece.md
6
+
- ece-remote-cluster-same-ece.md
7
+
- ece-remote-cluster-other-ece.md
8
+
- ece-remote-cluster-ess.md
9
+
10
+
It requires remote_type substitution to be defined
11
+
-->
12
+
1. Go to the **Remote Clusters** management page in the navigation menu or use the [global search field](/explore-analyze/find-and-organize/find-apps-and-objects.md).
13
+
2. Select **Add a remote cluster**.
14
+
2. In **Select connection type**, choose the authentication mechanism you prepared earlier (**API keys** or **Certificates**), and then click **Next**.
15
+
3. In **Add connection information**, fill in the following fields:
16
+
17
+
***Remote cluster name**: This *cluster alias* is a unique identifier that represents the connection to the remote cluster and is used to distinguish local and remote indices.
18
+
19
+
When using API key authentication, this alias must match the **Remote cluster name** you configured when adding the API key in the Cloud UI.
20
+
21
+
***Remote address**: This value can be found on the **Security** page of the {{remote_type}} you want to use as a remote. Copy the **Proxy address** from the **Remote cluster parameters** section.
22
+
23
+
::::{note}
24
+
If you’re using API keys as security model, change the port to `9443`.
25
+
::::
26
+
27
+
***Configure advanced options** (optional): Expand this section if you need to customize additional settings.
28
+
***TLS server name**: Specify a value if the certificate presented by the remote cluster is signed for a different name than the remote address.
29
+
30
+
This value can be found on the **Security** page of the {{remote_type}} you want to use as a remote. Copy the **Server name** from the **Remote cluster parameters** section.
31
+
32
+
***Socket connections**: Define the number of connections to open with the remote cluster.
33
+
34
+
For a full list of available client connection settings, refer to the [remote cluster settings reference](elasticsearch://reference/elasticsearch/configuration-reference/remote-clusters.md#remote-cluster-proxy-settings).
35
+
36
+
4. Click **Next**.
37
+
5. In **Confirm setup**, click **Add remote cluster** (you have already established trust in a previous step).
Copy file name to clipboardExpand all lines: deploy-manage/remote-clusters/ec-remote-cluster-ece.md
+8-103Lines changed: 8 additions & 103 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ applies_to:
8
8
ece: ga
9
9
products:
10
10
- id: cloud-hosted
11
+
sub:
12
+
remote_type: Elastic Cloud Enterprise deployment
11
13
---
12
14
13
15
# Connect {{ech}} deployments to an {{ece}} environment [ec-remote-cluster-ece]
@@ -201,114 +203,17 @@ On the local cluster, add the remote cluster using {{kib}} or the {{es}} API.
201
203
202
204
### Using {{kib}} [ec_using_kibana_3]
203
205
204
-
1. Go to the **Remote Clusters** management page in the navigation menu or use the [global search field](/explore-analyze/find-and-organize/find-apps-and-objects.md).
205
-
2. Select **Add a remote cluster**.
206
-
2. Enable **Manually enter proxy address and server name**.
207
-
3. Fill in the following fields:
208
-
209
-
***Name**: This *cluster alias* is a unique identifier that represents the connection to the remote cluster and is used to distinguish local and remote indices.
210
-
211
-
When using API key authentication, this alias must match the **Remote cluster name** you configured when adding the API key in the Cloud UI.
212
-
***Proxy address**: This value can be found on the **Security** page of the {{ece}} deployment you want to use as a remote.<br>
213
-
214
-
::::{tip}
215
-
If you’re using API keys as security model, change the port into `9443`.
216
-
::::
217
-
218
-
***Server name**: This value can be found on the **Security** page of the {{ece}} deployment you want to use as a remote.
If you’re having issues establishing the connection and the remote cluster is part of an {{ece}} environment with a private certificate, make sure that the proxy address and server name match with the the certificate information. For more information, refer to [Administering endpoints in {{ece}}](/deploy-manage/deploy/cloud-enterprise/change-endpoint-urls.md).
227
-
::::
228
-
229
-
4. Click **Next**.
230
-
5. Click **Add remote cluster** (you have already established trust in a previous step).
231
-
232
-
233
-
### Using the {{es}} API [ec_using_the_elasticsearch_api_3]
234
-
235
-
To configure a deployment as a remote cluster, use the [cluster update settings API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cluster-put-settings). Configure the following fields:
236
-
237
-
*`mode`: `proxy`
238
-
*`proxy_address`: This value can be found on the **Security** page of the {{ech}} deployment you want to use as a remote. Also, using the API, this value can be obtained from the {{es}} resource info, concatenating the field `metadata.endpoint` and port `9400` using a semicolon.
239
-
240
-
::::{tip}
241
-
If you’re using API keys as security model, change the port into `9443`.
242
-
::::
243
-
244
-
245
-
*`server_name`: This value can be found on the **Security** page of the {{ech}} deployment you want to use as a remote. Also, using the API, this can be obtained from the {{es}} resource info field `metadata.endpoint`.
246
-
247
-
This is an example of the API call to `_cluster/settings`:
When using API key authentication, the cluster alias must match the one you configured when adding the API key in the Cloud UI.
268
-
::::
269
-
270
-
### Using the {{ecloud}} RESTful API [ec_using_the_elasticsearch_service_restful_api_3]
206
+
:::{include} _snippets/rcs-kibana-api-snippet.md
207
+
:::
271
208
272
209
::::{note}
273
-
This section only applies if you’re using TLS certificates as cross-cluster security model and when both clusters belong to the same organization. For other scenarios, the [{{es}} API](#ec_using_the_elasticsearch_api_3) should be used instead.
210
+
If you’re having issues establishing the connection and the remote cluster is part of an {{ece}} environment with a private certificate, make sure that the proxy address and server name match with the the certificate information. For more information, refer to [Administering endpoints in {{ece}}](/deploy-manage/deploy/cloud-enterprise/change-endpoint-urls.md).
274
211
::::
275
212
213
+
### Using the {{es}} API [ec_using_the_elasticsearch_api_3]
: The ID of your remote deployment, as shown in the Cloud UI or obtained through the API.
293
-
294
-
`REF_ID_REMOTE`
295
-
: The unique ID of the {{es}} resources inside your remote deployment (you can obtain these values through the API).
296
-
297
-
Note the following when using the {{ecloud}} RESTful API:
298
-
299
-
1. A cluster alias must contain only letters, numbers, dashes (-), or underscores (_).
300
-
2. To learn about skipping disconnected clusters, refer to the [{{es}} documentation](/solutions/search/cross-cluster-search.md#skip-unavailable-clusters).
301
-
3. When remote clusters are already configured for a deployment, the `PUT` request replaces the existing configuration with the new configuration passed. Passing an empty array of resources will remove all remote clusters.
302
-
303
-
The following API request retrieves the remote clusters configuration:
304
-
305
-
```sh
306
-
curl -X GET -H "Authorization: ApiKey $EC_API_KEY" https://api.elastic-cloud.com/api/v1/deployments/$DEPLOYMENT_ID/elasticsearch/$REF_ID/remote-clusters
307
-
```
308
-
309
-
::::{note}
310
-
The response will include just the remote clusters from the same {{ecloud}} organization. In order to obtain the whole list of remote clusters, use {{kib}} or the [{{es}} API](https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-cluster-remote-info) directly.
0 commit comments