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
Refer to [Aggregations](docs-content://explore-analyze/query-filter/aggregations.md) in the **Explore and analyze** section for overview, getting started and conceptual information.
12
+
:::
15
13
16
14
Aggregations are a powerful framework that enables you to perform complex data analysis and summarization over indexed documents. They enable you to extract and compute statistics, trends, and patterns from large datasets.
Copy file name to clipboardexpand all lines: docs/reference/data-analysis/text-analysis/index.md
+6
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
% TO-DO: Add links to "Data analysis basics"%
4
4
5
+
:::{note}
6
+
This section provides detailed **reference information**.
7
+
8
+
Refer to [the text analysis overview](docs-content://manage-data/data-store/text-analysis.md) in the **Manage data** section for overview and conceptual information.
9
+
:::
10
+
5
11
This section contains reference information for text analysis components features, including:
This document describes operations available to connectors using the UI.
9
13
10
-
In the Kibana UI, navigate to **Search > Content > Connectors** from the main menu, or use the [global search field](docs-content://explore-analyze/query-filter/filtering.md#_finding_your_apps_and_objects). Here, you can view a summary of all your connectors and sync jobs, and to create new connectors.
14
+
In the Kibana or Serverless UI, find Connectors using the [global search field](docs-content://explore-analyze/query-filter/filtering.md#_finding_your_apps_and_objects). Here, you can view a summary of all your connectors and sync jobs, and to create new connectors.
11
15
12
16
::::{tip}
13
17
In 8.12 we introduced a set of [Connector APIs](https://www.elastic.co/docs/api/doc/elasticsearch/group/endpoint-connector) to create and manage Elastic connectors and sync jobs, along with a [CLI tool](https://github.com/elastic/connectors/blob/main/docs/CLI.md). Use these tools if you’d like to work with connectors and sync jobs programmatically, without using the UI.
Copy file name to clipboardexpand all lines: docs/reference/ingestion-tools/search-connectors/es-connectors-overview-architecture.md
+2-17
Original file line number
Diff line number
Diff line change
@@ -10,24 +10,9 @@ mapped_pages:
10
10
The following section provides a high-level overview of common architecture approaches for the internal knowledge search use case (AKA workplace search).
Data is synced to an Elastic Cloud deployment through managed connectors and/or self-managed connectors. A self-managed search application exposes the relevant data that your end users are authorized to see in a search experience.
16
-
17
-
Summary:
18
-
19
-
* The best combination in terms of flexibility and out-of-the box functionality
20
-
* Integrates with Elastic Cloud hosted managed connectors to bring data to Elasticsearch with minimal operational overhead
21
-
* Self-managed connectors allow enterprises to adhere to strict access policies when using firewalls that don’t allow incoming connections to data sources, while outgoing traffic is easier to control
22
-
* Provides additional functionality available for self-managed connectors such as the [Extraction Service](/reference/ingestion-tools/search-connectors/es-connectors-content-extraction.md#es-connectors-content-extraction-local)
23
-
* Basic functionality available for Standard licenses, advanced features for Platinum licenses
24
-
25
-
The following diagram provides a high-level overview of the hybrid internal knowledge search architecture.
% Internal links rely on the following IDs being on this page (e.g. as a heading ID, paragraph ID, etc):
11
-
12
13
$$$es-connectors-native$$$
13
14
14
15
15
-
:::{tip}
16
-
This page is about Search connectors that synchronize third-party data into Elasticsearch. If you’re looking for Kibana connectors to integrate with services like generative AI model providers, refer to [Kibana Connectors](docs-content://deploy-manage/manage-connectors.md).
16
+
:::{note}
17
+
This page is about Search connectors that synchronize third-party data into {{es}}. If you’re looking for Kibana connectors to integrate with services like generative AI model providers, refer to [Kibana Connectors](docs-content://deploy-manage/manage-connectors.md).
17
18
:::
18
19
19
-
A _connector_ is a type of [Elastic integration](https://www.elastic.co/integrations/data-integrations) that syncs data from an original data source to Elasticsearch. Each connector extracts the original files, records, or objects; and transforms them into documents within Elasticsearch.
20
+
A _connector_ is an Elastic integration that syncs data from an original data source to {{es}}. Use connectors to create searchable, read-only replicas of your data in {{es}}.
21
+
22
+
Each connector extracts the original files, records, or objects; and transforms them into documents within {{es}}.
20
23
21
-
_Connector clients_ are **self-managed** connectors that you run on your own infrastructure. These connectors are written in Python and the source code is available in the [`elastic/connectors`](https://github.com/elastic/connectors/tree/main/connectors/sources) repo.
24
+
These connectors are written in Python and the source code is available in the [`elastic/connectors`](https://github.com/elastic/connectors/tree/main/connectors/sources) repo.
22
25
23
26
## Available connectors
24
27
@@ -28,9 +31,7 @@ As of Elastic 9.0, managed connectors on Elastic Cloud Hosted are no longer avai
28
31
::::
29
32
30
33
31
-
Connector clients are available for the following third-party data sources:
32
-
33
-
The following connectors are available as self-managed connectors:
34
+
Connectors are available for the following third-party data sources:
@@ -86,7 +87,6 @@ In order to set up, configure, and run a connector you’ll be moving between yo
86
87
87
88
### Data source prerequisites
88
89
89
-
90
-
The first decision you need to make before deploying a connector is which third party service (data source) you want to sync to Elasticsearch. See the list of [available connectors](#available-connectors).
90
+
The first decision you need to make before deploying a connector is which third party service (data source) you want to sync to {{es}}. See the list of [available connectors](#available-connectors).
91
91
92
92
Note that each data source will have specific prerequisites you’ll need to meet to authorize the connector to access its data. For example, certain data sources may require you to create an OAuth application, or create a service account. You’ll need to check the [individual connector documentation](connector-reference.md) for these details.
@@ -10,22 +13,15 @@ Self-managed connectors were initially known as "connector clients". You might f
10
13
11
14
::::
12
15
13
-
14
16
Self-managed [Elastic connectors](/reference/ingestion-tools/search-connectors/index.md) are run on your own infrastructure. This means they run outside of your Elastic deployment.
15
17
16
-
You can run the [connectors service](#es-connectors-deploy-connector-service) from source or from a Docker container.
17
-
18
-
We also have a quickstart option using **Docker Compose**, to spin up all the required services at once: Elasticsearch, Kibana, and the connectors service. Refer to [Docker Compose quickstart](/reference/ingestion-tools/search-connectors/es-connectors-docker-compose-quickstart.md) for more information.
19
-
20
-
21
18
## Availability and Elastic prerequisites [es-build-connector-prerequisites]
22
19
23
20
::::{note}
24
21
Self-managed connectors currently don’t support Windows. Use this [compatibility matrix](https://www.elastic.co/support/matrix#matrix_os) to check which operating systems are supported by self-managed connectors. Find this information under **self-managed connectors** on that page.
25
22
26
23
::::
27
24
28
-
29
25
:::::{dropdown} Expand for Elastic prerequisites information
30
26
Your Elastic deployment must include the following Elastic services:
31
27
@@ -63,17 +59,16 @@ Note the following information regarding support for self-managed connectors:
The first decision you need to make before deploying a connector is which third party service (data source) you want to sync to Elasticsearch. Note that each data source will have specific prerequisites you’ll need to meet to authorize the connector to access its data. For example, certain data sources may require you to create an OAuth application, or create a service account.
71
-
72
-
You’ll need to check the individual connector documentation for these details.
73
-
74
-
::::
75
-
64
+
In order to set up, configure, and run a connector you’ll be moving between your third-party service, the Elastic UI, and your terminal. At a high-level, the workflow looks like this:
76
65
66
+
1. Satisfy any data source prerequisites (e.g., create an OAuth application).
67
+
2. Create a connector in the UI (or via the API).
68
+
3. Deploy the connector service:
69
+
-[Option 1: Run with Docker](es-connectors-run-from-docker.md) (recommended)
70
+
-[Option 2: Run from source](es-connectors-run-from-source.md)
71
+
4. Enter data source configuration details in the UI.
77
72
78
73
## Deploy the connector service [es-connectors-deploy-connector-service]
79
74
@@ -87,16 +82,14 @@ You can run the connector service from source or use Docker:
87
82
* Refer to our [Docker Compose quickstart](/reference/ingestion-tools/search-connectors/es-connectors-docker-compose-quickstart.md) for a quick way to spin up all the required services at once.
88
83
89
84
90
-
91
85
## Tutorials [es-build-connector-example]
92
86
93
87
* Follow our [UI-based tutorial](/reference/ingestion-tools/search-connectors/es-postgresql-connector-client-tutorial.md) to learn how run the self-managed connector service and a set up a self-managed connector, **using the UI**.
94
88
* Follow our [API-based tutorial](/reference/ingestion-tools/search-connectors/api-tutorial.md) to learn how to set up a self-managed connector **using the**[**connector APIs**](https://www.elastic.co/docs/api/doc/elasticsearch/group/endpoint-connector).
95
89
96
90
These examples use the PostgreSQL connector but the basic process is the same for all self-managed connectors.
97
91
98
-
99
-
## Connector testing [es-build-connector-testing]
92
+
## E2E testing [es-build-connector-testing]
100
93
101
94
The connector framework enables you to run end-to-end (E2E) tests on your self-managed connectors, against a real data source.
102
95
@@ -105,7 +98,7 @@ To avoid tampering with a real Elasticsearch instance, E2E tests run an isolated
105
98
E2E tests use **default** configuration values for the connector. Find instructions about testing in each connector’s documentation.
This section contains the Painless scripting language reference.
3
+
:::{note}
4
+
This section provides detailed **reference information** about the the Painless scripting language.
4
5
5
-
For an overview of scripting languages in {{es}}, go to [Scripting](docs-content://explore-analyze/scripting.md).
6
+
Refer to the [scripting languages overview](docs-content://explore-analyze/scripting.md) in the **Explore and analyze** section for an overview of available scripting languages in {{es}}.
0 commit comments