Skip to content

Commit 400bc7a

Browse files
authored
Merge branch 'main' into test-assertions
2 parents 13e63f7 + ba5a9c8 commit 400bc7a

File tree

154 files changed

+940
-1027
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+940
-1027
lines changed

build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/MrjarPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ private SourceSet addSourceSet(
139139
compileOptions.getRelease().set(javaVersion);
140140
});
141141
if (isMainSourceSet) {
142-
project.getTasks().create(sourceSet.getJavadocTaskName(), Javadoc.class, javadocTask -> {
142+
project.getTasks().register(sourceSet.getJavadocTaskName(), Javadoc.class, javadocTask -> {
143143
javadocTask.getJavadocTool().set(javaToolchains.javadocToolFor(spec -> {
144144
spec.getLanguageVersion().set(JavaLanguageVersion.of(javaVersion));
145145
}));

distribution/tools/java-version-checker/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'elasticsearch.build'
22

3-
compileJava {
3+
tasks.named("compileJava").configure {
44
options.release = 8
55
}
66

docs/changelog/123290.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 123290
2+
summary: Fix Driver status iterations and `cpuTime`
3+
area: ES|QL
4+
type: enhancement
5+
issues:
6+
- 122967

docs/changelog/123610.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 123610
2+
summary: Disable concurrency when `top_hits` sorts on anything but `_score`
3+
area: "Aggregations"
4+
type: bug
5+
issues: []

docs/reference/community-contributed.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ a number of clients that have been contributed by the community for various lang
4242

4343
## Go [go]
4444

45-
Also see the [official Elasticsearch Go client](go-elasticsearch://docs/reference/index.md).
45+
Also see the [official Elasticsearch Go client](go-elasticsearch://reference/index.md).
4646

4747
* [elastigo](https://github.com/mattbaird/elastigo): Go client. **Last commit more than a year ago**
4848

@@ -56,23 +56,23 @@ Also see the [official Elasticsearch Go client](go-elasticsearch://docs/referenc
5656

5757
## Java [java]
5858

59-
Also see the [official Elasticsearch Java client](elasticsearch-java://docs/reference/index.md).
59+
Also see the [official Elasticsearch Java client](elasticsearch-java://reference/index.md).
6060

6161
* [Flummi](https://github.com/otto-de/flummi): Java Rest client with comprehensive Query DSL API.
6262

6363
* [Jest](https://github.com/searchbox-io/Jest): Java Rest client. **No longer maintained**
6464

6565
## JavaScript [javascript]
6666

67-
See the [official Elasticsearch JavaScript client](elasticsearch-js://docs/reference/index.md).
67+
See the [official Elasticsearch JavaScript client](elasticsearch-js://reference/index.md).
6868

6969
## Julia [julia]
7070

71-
* [ElasticsearchClient.jl](https://github.com/OpenSesame/ElasticsearchClient.jl): Elasticsearch client inspired by the [official Elasticsearch Ruby client](elasticsearch-ruby://docs/reference/index.md).
71+
* [ElasticsearchClient.jl](https://github.com/OpenSesame/ElasticsearchClient.jl): Elasticsearch client inspired by the [official Elasticsearch Ruby client](elasticsearch-ruby://reference/index.md).
7272

7373
## Kotlin [kotlin]
7474

75-
* [ES Kotlin](https://github.com/mbuhot/eskotlin): Elasticsearch Query DSL for kotlin based on the [official Elasticsearch Java client](elasticsearch-java://docs/reference/index.md). **Last commit more than a year ago**
75+
* [ES Kotlin](https://github.com/mbuhot/eskotlin): Elasticsearch Query DSL for kotlin based on the [official Elasticsearch Java client](elasticsearch-java://reference/index.md). **Last commit more than a year ago**
7676

7777
* [ES Kotlin Wrapper Client](https://github.com/jillesvangurp/es-kotlin-wrapper-client): Kotlin extension functions and abstractions for the [official Elasticsearch high-level client](https://www.elastic.co/guide/en/elasticsearch/client/java-api/current/index.html). Aims to reduce the amount of boilerplate needed to do searches, bulk indexing and other common things users do with the client. **No longer maintained**
7878

@@ -82,7 +82,7 @@ See the [official Elasticsearch JavaScript client](elasticsearch-js://docs/refer
8282

8383
## .NET [dotnet]
8484

85-
See the [official Elasticsearch .NET client](elasticsearch-net://docs/reference/index.md).
85+
See the [official Elasticsearch .NET client](elasticsearch-net://reference/index.md).
8686

8787
## Perl [perl]
8888

@@ -92,7 +92,7 @@ Also see the [official Elasticsearch Perl client](https://www.elastic.co/guide/e
9292

9393
## PHP [php]
9494

95-
Also see the [official Elasticsearch PHP client](elasticsearch-php://docs/reference/index.md).
95+
Also see the [official Elasticsearch PHP client](elasticsearch-php://reference/index.md).
9696

9797
* [Elastica](https://github.com/ruflin/Elastica): PHP client.
9898

@@ -102,7 +102,7 @@ Also see the [official Elasticsearch PHP client](elasticsearch-php://docs/refere
102102

103103
## Python [python]
104104

105-
See the [official Elasticsearch Python client](elasticsearch-py://docs/reference/index.md).
105+
See the [official Elasticsearch Python client](elasticsearch-py://reference/index.md).
106106

107107
## R [r]
108108

@@ -114,7 +114,7 @@ See the [official Elasticsearch Python client](elasticsearch-py://docs/reference
114114

115115
## Ruby [ruby]
116116

117-
Also see the [official Elasticsearch Ruby client](elasticsearch-ruby://docs/reference/index.md).
117+
Also see the [official Elasticsearch Ruby client](elasticsearch-ruby://reference/index.md).
118118

119119
* [chewy](https://github.com/toptal/chewy): An ODM and wrapper for the official Elasticsearch client.
120120

@@ -128,7 +128,7 @@ Also see the [official Elasticsearch Ruby client](elasticsearch-ruby://docs/refe
128128

129129
## Rust [rust]
130130

131-
Also see the [official Elasticsearch Rust client](elasticsearch-rs://docs/reference/index.md).
131+
Also see the [official Elasticsearch Rust client](elasticsearch-rs://reference/index.md).
132132

133133
* [rs-es](https://github.com/benashford/rs-es): A REST API client with a strongly-typed Query DSL. **Last commit more than a year ago**
134134

docs/reference/data-analysis/aggregations/index.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ mapped_pages:
55

66
# Aggregations
77

8-
% What needs to be done: Refine
8+
:::{note}
9+
This section provides detailed **reference information** for aggregations.
910

10-
% Scope notes: need to scope the page down to just reference content
11-
12-
% Use migrated content from existing pages that map to this page:
13-
14-
% - [ ] ./raw-migrated-files/elasticsearch/elasticsearch-reference/search-aggregations.md
11+
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+
:::
1513

1614
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.
1715

docs/reference/data-analysis/text-analysis/index.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
% TO-DO: Add links to "Data analysis basics"%
44

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+
511
This section contains reference information for text analysis components features, including:
612

713
* [Analyzers](/reference/data-analysis/text-analysis/analyzer-reference.md)

docs/reference/elasticsearch-plugins/cloud/ec-adding-elastic-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ You can use a variety of official plugins that are compatible with your version
99

1010
## Before you begin [ec_before_you_begin_6]
1111

12-
Some restrictions apply when adding plugins. To learn more, check [Restrictions for {{es}} and {{kib}} plugins](cloud://docs/release-notes/cloud-hosted/known-issues.md#ec-restrictions-plugins).
12+
Some restrictions apply when adding plugins. To learn more, check [Restrictions for {{es}} and {{kib}} plugins](cloud://release-notes/cloud-hosted/known-issues.md#ec-restrictions-plugins).
1313

1414
Only Gold, Platinum, Enterprise and Private subscriptions, running version 2.4.6 or later, have access to uploading custom plugins. All subscription levels, including Standard, can upload scripts and dictionaries.
1515

docs/reference/elasticsearch-plugins/cloud/ec-adding-plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ To learn more about the official and community-sourced plugins, refer to [{{es}}
2424

2525
For a detailed guide with examples of using the Elasticsearch Service API to create, get information about, update, and delete extensions and plugins, check [Managing plugins and extensions through the API](/reference/elasticsearch-plugins/cloud/ec-plugins-guide.md\).
2626

27-
Plugins are not supported for {{kib}}. To learn more, check [Restrictions for {{es}} and {{kib}} plugins](cloud://docs/release-notes/cloud-hosted/known-issues.md#ec-restrictions-plugins).
27+
Plugins are not supported for {{kib}}. To learn more, check [Restrictions for {{es}} and {{kib}} plugins](cloud://release-notes/cloud-hosted/known-issues.md#ec-restrictions-plugins).
2828

2929

3030

docs/reference/elasticsearch-plugins/integrations.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ Integrations are not plugins, but are external tools or modules that make it eas
2020

2121
### Supported by Elastic: [_supported_by_elastic]
2222

23-
* [Logstash output to Elasticsearch](logstash://docs/reference/plugins-outputs-elasticsearch.md): The Logstash `elasticsearch` output plugin.
24-
* [Elasticsearch input to Logstash](logstash://docs/reference/plugins-inputs-elasticsearch.md) The Logstash `elasticsearch` input plugin.
25-
* [Elasticsearch event filtering in Logstash](logstash://docs/reference/plugins-filters-elasticsearch.md) The Logstash `elasticsearch` filter plugin.
26-
* [Elasticsearch bulk codec](logstash://docs/reference/plugins-codecs-es_bulk.md) The Logstash `es_bulk` plugin decodes the Elasticsearch bulk format into individual events.
23+
* [Logstash output to Elasticsearch](logstash://reference/plugins-outputs-elasticsearch.md): The Logstash `elasticsearch` output plugin.
24+
* [Elasticsearch input to Logstash](logstash://reference/plugins-inputs-elasticsearch.md) The Logstash `elasticsearch` input plugin.
25+
* [Elasticsearch event filtering in Logstash](logstash://reference/plugins-filters-elasticsearch.md) The Logstash `elasticsearch` filter plugin.
26+
* [Elasticsearch bulk codec](logstash://reference/plugins-codecs-es_bulk.md) The Logstash `es_bulk` plugin decodes the Elasticsearch bulk format into individual events.
2727

2828

2929
### Supported by the community: [_supported_by_the_community_2]
@@ -71,7 +71,7 @@ Integrations are not plugins, but are external tools or modules that make it eas
7171

7272
### Supported by Elastic: [_supported_by_elastic_2]
7373

74-
* [es-hadoop](elasticsearch-hadoop://docs/reference/preface.md): Elasticsearch real-time search and analytics natively integrated with Hadoop. Supports Map/Reduce, Cascading, Apache Hive, Apache Pig, Apache Spark and Apache Storm.
74+
* [es-hadoop](https://www.elastic.co/elasticsearch/hadoop): Elasticsearch real-time search and analytics natively integrated with Hadoop. Supports Map/Reduce, Cascading, Apache Hive, Apache Pig, Apache Spark and Apache Storm.
7575

7676

7777
### Supported by the community: [_supported_by_the_community_5]

0 commit comments

Comments
 (0)