Skip to content

Commit

Permalink
Merge branch 'main' into empty-input
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle authored Dec 4, 2024
2 parents 0ab1ca8 + b017356 commit a4edf41
Show file tree
Hide file tree
Showing 271 changed files with 6,153 additions and 2,314 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
import org.gradle.api.provider.Property;
import org.gradle.api.tasks.Input;
import org.jetbrains.annotations.NotNull;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
Expand All @@ -47,6 +49,8 @@

public abstract class ElasticsearchBuildCompletePlugin implements Plugin<Project> {

private static final Logger log = LoggerFactory.getLogger(ElasticsearchBuildCompletePlugin.class);

@Inject
protected abstract FlowScope getFlowScope();

Expand Down Expand Up @@ -241,8 +245,11 @@ private static void createBuildArchiveTar(List<File> files, File projectDir, Fil
tOut.setLongFileMode(TarArchiveOutputStream.LONGFILE_GNU);
tOut.setBigNumberMode(TarArchiveOutputStream.BIGNUMBER_STAR);
for (Path path : files.stream().map(File::toPath).toList()) {
if (!Files.isRegularFile(path)) {
throw new IOException("Support only file!");
if (Files.exists(path) == false) {
log.warn("File disappeared before it could be added to CI archive: " + path);
continue;
} else if (!Files.isRegularFile(path)) {
throw new IOException("Support only file!: " + path);
}

long entrySize = Files.size(path);
Expand Down
5 changes: 5 additions & 0 deletions docs/changelog/116755.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 116755
summary: Smarter field caps with subscribable listener
area: ES|QL
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/116904.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 116904
summary: Add a not-master state for desired balance
area: Allocation
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/116953.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 116953
summary: Fix false positive date detection with trailing dot
area: Mapping
type: bug
issues:
- 116946
5 changes: 5 additions & 0 deletions docs/changelog/117199.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117199
summary: Speed up bit compared with floats or bytes script operations
area: Vector Search
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/117213.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 117213
summary: Fix reconstituting version string from components
area: Ingest Node
type: bug
issues:
- 116950
6 changes: 6 additions & 0 deletions docs/changelog/117229.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 117229
summary: "In this pr, a 400 error is returned when _source / _seq_no / _feature /\
\ _nested_path / _field_names is requested, rather a 5xx"
area: Search
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/117271.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117271
summary: Don't skip shards in coord rewrite if timestamp is an alias
area: Search
type: bug
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/117530.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 117530
summary: Expose operation and request counts separately in repository stats
area: Snapshot/Restore
type: enhancement
issues:
- 104443
5 changes: 5 additions & 0 deletions docs/changelog/117572.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117572
summary: Address and remove any references of RestApiVersion version 7
area: Search
type: enhancement
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/117731.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117731
summary: Add cluster level reduction
area: ES|QL
type: enhancement
issues: []
6 changes: 6 additions & 0 deletions docs/changelog/117762.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 117762
summary: "Parse the contents of dynamic objects for [subobjects:false]"
area: Mapping
type: bug
issues:
- 117544
5 changes: 5 additions & 0 deletions docs/changelog/117831.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117831
summary: Fix/QueryBuilderBWCIT_muted_test
area: Search
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/117842.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117842
summary: Limit size of `Literal#toString`
area: ES|QL
type: bug
issues: []
5 changes: 5 additions & 0 deletions docs/changelog/117865.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 117865
summary: Fix BWC for ES|QL cluster request
area: ES|QL
type: bug
issues: []
5 changes: 0 additions & 5 deletions docs/reference/esql/esql-across-clusters.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@

preview::["{ccs-cap} for {esql} is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features."]

[NOTE]
====
For {ccs-cap} with {esql} on version 8.16 or later, remote clusters must also be on version 8.16 or later.
====

With {esql}, you can execute a single query across multiple clusters.

[discrete]
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions docs/reference/esql/functions/examples/categorize.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions docs/reference/esql/functions/grouping-functions.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ The <<esql-stats-by>> command supports these grouping functions:

// tag::group_list[]
* <<esql-bucket>>
* experimental:[] <<esql-categorize>>
// end::group_list[]

include::layout/bucket.asciidoc[]
include::layout/categorize.asciidoc[]
72 changes: 72 additions & 0 deletions docs/reference/esql/functions/kibana/definition/add.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 72 additions & 0 deletions docs/reference/esql/functions/kibana/definition/sub.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion docs/reference/esql/functions/kibana/docs/categorize.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions docs/reference/esql/functions/layout/categorize.asciidoc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit a4edf41

Please sign in to comment.