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.md
+1
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ Serverless projects use the core components of the {{stack}}, such as {{es}} and
14
14
Elastic provides three serverless solutions available on {{ecloud}}:
15
15
16
16
***https://www.elastic.co/guide/en/serverless/current/what-is-elasticsearch-serverless.html[{{es-serverless}}]**: Build powerful applications and search experiences using a rich ecosystem of vector search capabilities, APIs, and libraries.
17
+
% See solutions/search/serverless-elasticsearch-get-started.md
17
18
***https://www.elastic.co/guide/en/serverless/current/what-is-observability-serverless.html[{{obs-serverless}}]**: Monitor your own platforms and services using powerful machine learning and analytics tools with your logs, metrics, traces, and APM data.
18
19
***https://www.elastic.co/guide/en/serverless/current/what-is-security-serverless.html[{{sec-serverless}}]**: Detect, investigate, and respond to threats with SIEM, endpoint protection, and AI-powered analytics capabilities.
|**Ecommerce/product catalog search**| Provide fast, relevant, and up-to-date results, faceted navigation | Inventory sync, user behavior tracking, results caching |
18
+
|**Workplace/knowledge base search**| Search across range of data sources, enforcing permissions | Third-party connectors, document-level security, role mapping |
|**Chatbots/RAG**| Enable natural conversations, provide context, maintain knowledge | Vector search, ML models, knowledge base integration |
22
+
|**Geospatial search**| Process location queries, sort by proximity, filter by area | Geo-mapping, spatial indexing, distance calculations |
23
+
24
+
## Core implementation decisions
25
+
26
+
% TODO add diagram
27
+
28
+
Building a search experience with {{es}} requires a number of fundamental implementation decisions:
29
+
30
+
1.[**Deployment**](/deploy-manage/index.md): Where will you run Elastic?
31
+
1.[**Ingestion**](search/ingest-for-search.md): What tools will you use to get your content into {{es}}?
32
+
1.[**Search approaches**](search/search-approaches.md): What search techniques and algorithms will you use to find relevant results?
33
+
1.**Implementation tools**: How will you write queries and interact with {{es}}?
34
+
- Which [programming language client]() matches your application?
35
+
- Which API endpoints and [query language(s)](search/querying-for-search.md) will you use to express your search logic?
36
+
37
+
Each decision builds on the previous ones, offering flexibility to mix and match approaches based on your needs.
38
+
39
+
% TODO update/add URLs
40
+
10
41
11
42
% Scope notes: surface key features buried in the search APIs, turn some of the API doc content into feature-specific tutorials needs some polish to separate use cases from technologies
Copy file name to clipboardExpand all lines: solutions/search/full-text.md
-2
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,6 @@ Would you prefer to jump straight into a hands-on tutorial? Refer to our quick s
12
12
13
13
::::
14
14
15
-
16
15
Full-text search, also known as lexical search, is a technique for fast, efficient searching through text fields in documents. Documents and search queries are transformed to enable returning [relevant](https://www.elastic.co/what-is/search-relevance) results instead of simply exact term matches. Fields of type [`text`](https://www.elastic.co/guide/en/elasticsearch/reference/current/text.html#text-field-type) are analyzed and indexed for full-text search.
17
16
18
17
Built on decades of information retrieval research, full-text search delivers reliable results that scale predictably as your data grows. Because it runs efficiently on CPUs, {{es}}'s full-text search requires minimal computational resources compared to GPU-intensive vector operations.
@@ -69,7 +68,6 @@ Learn about the core components of full-text search:
Copy file name to clipboardExpand all lines: solutions/search/serverless-elasticsearch-get-started.md
+19-1
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,24 @@
1
1
# Get started with {{es}} Serverless [elasticsearch-get-started]
2
2
3
+
::::{tip}
4
+
Not sure whether {{es}} on {{serverless-full}} is the right deployment choice for you?
5
+
6
+
Check out the following resources to help you decide:
7
+
-[What’s different?](/deploy-manage/deploy/elastic-cloud/differences-from-other-elasticsearch-offerings.md): Understand the differences between {{serverless-full}} and other deployment types.
8
+
-[Billing](/deploy-manage/cloud-organization/billing/elasticsearch-billing-dimensions.md): Learn about the billing model for {{es}} on {{serverless-full}}.
9
+
::::
10
+
11
+
## What is {{es-serverless}}? [what-is-elasticsearch-serverless]
12
+
13
+
14
+
{{es-serverless}} is one of the three available project types on [{{serverless-full}}](/deploy-manage/deploy.md).
15
+
16
+
This project type enables you to use the core functionality of {{es}}: searching, indexing, storing, and analyzing data of all shapes and sizes.
17
+
18
+
When using {{es}} on {{serverless-full}} you don’t need to worry about managing the infrastructure that keeps {{es}} distributed and available: nodes, shards, and replicas. These resources are completely automated on the serverless platform, which is designed to scale up and down with your workload.
19
+
20
+
This automation allows you to focus on building your search applications and solutions.
21
+
3
22
On this page, you will learn how to:
4
23
5
24
*[Create an {{es-serverless}} project](get-started.md#elasticsearch-get-started-create-project).
@@ -10,7 +29,6 @@ On this page, you will learn how to:
10
29
*[Option 3: Explore on your own](get-started.md#elasticsearch-explore-on-your-own): If you’re already familiar with {{es}}, retrieve your connection details, select an ingest method that suits your needs, and start searching.
11
30
12
31
13
-
14
32
## Create an {{es-serverless}} project [elasticsearch-get-started-create-project]
15
33
16
34
Use your {{ecloud}} account to create a fully-managed {{es}} project:
0 commit comments