Skip to content

Commit 8d05cfd

Browse files
committed
minor update
1 parent a2de239 commit 8d05cfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

deploy-manage/production-guidance/general-recommendations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ applies_to:
1111

1212
# General recommendations [general-recommendations]
1313

14+
This page offers general best practices to improve performance and avoid common issues when working with Elasticsearch.
1415

1516
## Don’t return large result sets [large-size]
1617

1718
Elasticsearch is designed as a search engine, which makes it very good at getting back the top documents that match a query. However, it is not as good for workloads that fall into the database domain, such as retrieving all documents that match a particular query. If you need to do this, make sure to use the [Scroll](elasticsearch://reference/elasticsearch/rest-apis/paginate-search-results.md#scroll-search-results) API.
1819

19-
2020
## Avoid large documents [maximum-document-size]
2121

2222
Given that the default [`http.max_content_length`](elasticsearch://reference/elasticsearch/configuration-reference/networking-settings.md#http-settings) is set to 100MB, Elasticsearch will refuse to index any document that is larger than that. You might decide to increase that particular setting, but Lucene still has a limit of about 2GB.

deploy-manage/production-guidance/kibana-load-balance-traffic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ elasticsearch.hosts:
8888
Related configurations include `elasticsearch.sniffInterval`, `elasticsearch.sniffOnStart`, and `elasticsearch.sniffOnConnectionFault`. These can be used to automatically update the list of hosts as a cluster is resized. Parameters can be found in the [{{kib}} configuration reference](kibana://reference/configuration-reference/general-settings.md).
8989

9090
::::{note}
91-
The previous configuration can be useful when there is no load balancer or reverse proxy in front of {{es}}. If a load balancer is in place to distribute traffic among {{es}} instances, Kibana should be configured to connect to it instead.
91+
This configuration can be useful when there is no load balancer or reverse proxy in front of {{es}}. If a load balancer is in place to distribute traffic among {{es}} instances, {{kib}} should be configured to connect to it instead.
9292

9393
In [orchestrated deployments](/deploy-manage/deploy.md#about-orchestration), {{kib}} is automatically configured to connect to {{es}} through load-balanced services—such as platform proxies in ECE or ECH, or Kubernetes services in the case of ECK.
9494
::::

0 commit comments

Comments
 (0)