Skip to content

Commit b0cdbe0

Browse files
author
elasticsearchmachine
committed
Merge remote-tracking branch 'origin/main' into lucene_snapshot
2 parents e7ddc74 + 4496aa0 commit b0cdbe0

File tree

147 files changed

+3307
-1022
lines changed

Some content is hidden

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

147 files changed

+3307
-1022
lines changed

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

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
import org.gradle.api.provider.Property;
3030
import org.gradle.api.tasks.Input;
3131
import org.jetbrains.annotations.NotNull;
32+
import org.slf4j.Logger;
33+
import org.slf4j.LoggerFactory;
3234

3335
import java.io.BufferedInputStream;
3436
import java.io.BufferedOutputStream;
@@ -47,6 +49,8 @@
4749

4850
public abstract class ElasticsearchBuildCompletePlugin implements Plugin<Project> {
4951

52+
private static final Logger log = LoggerFactory.getLogger(ElasticsearchBuildCompletePlugin.class);
53+
5054
@Inject
5155
protected abstract FlowScope getFlowScope();
5256

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

248255
long entrySize = Files.size(path);

docs/changelog/116755.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 116755
2+
summary: Smarter field caps with subscribable listener
3+
area: ES|QL
4+
type: enhancement
5+
issues: []

docs/changelog/116904.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 116904
2+
summary: Add a not-master state for desired balance
3+
area: Allocation
4+
type: enhancement
5+
issues: []

docs/changelog/116953.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 116953
2+
summary: Fix false positive date detection with trailing dot
3+
area: Mapping
4+
type: bug
5+
issues:
6+
- 116946

docs/changelog/117213.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 117213
2+
summary: Fix reconstituting version string from components
3+
area: Ingest Node
4+
type: bug
5+
issues:
6+
- 116950

docs/changelog/117530.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 117530
2+
summary: Expose operation and request counts separately in repository stats
3+
area: Snapshot/Restore
4+
type: enhancement
5+
issues:
6+
- 104443

docs/changelog/117762.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 117762
2+
summary: "Parse the contents of dynamic objects for [subobjects:false]"
3+
area: Mapping
4+
type: bug
5+
issues:
6+
- 117544

docs/changelog/117831.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 117831
2+
summary: Fix/QueryBuilderBWCIT_muted_test
3+
area: Search
4+
type: bug
5+
issues: []

docs/changelog/117865.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
pr: 117865
2+
summary: Fix BWC for ES|QL cluster request
3+
area: ES|QL
4+
type: bug
5+
issues: []

docs/reference/esql/functions/description/categorize.asciidoc

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)