Skip to content

Commit b45ebeb

Browse files
authored
Merge branch 'main' into transform-yaml-tests
2 parents cde0a9d + 9bbd895 commit b45ebeb

File tree

145 files changed

+5983
-2508
lines changed

Some content is hidden

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

145 files changed

+5983
-2508
lines changed

build-tools-internal/version.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ ldapsdk = 7.0.3
2626
antlr4 = 4.13.1
2727
iceberg = 1.10.1
2828
aircompressor = 2.0.3
29+
snappyJava = 1.1.10.8
2930
# bouncy castle version for non-fips. fips jars use a different version
3031
bouncycastle=1.79
3132
# used by security and idp (need to be in sync due to cross-dependency in testing)

distribution/src/config/log4j2.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ appender.querylog.layout.type=ECSJsonLayout
167167
appender.querylog.layout.dataset=elasticsearch.querylog
168168
# Rolling policies
169169
appender.querylog.filePattern=${sys:es.logs.base_path}${sys:file.separator}${sys:es.logs\
170-
.cluster_name}_querylog-%i.json.gz
170+
.cluster_name}_querylog-%d{yyyy-MM-dd}-%i.json.gz
171171
appender.querylog.policies.type=Policies
172172
appender.querylog.policies.size.type=SizeBasedTriggeringPolicy
173173
appender.querylog.policies.size.size=1GB

docs/changelog/144236.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
area: Mapping
2+
issues: []
3+
pr: 144236
4+
summary: Update semantic text to use BFLOAT16 by default
5+
type: enhancement

docs/changelog/144704.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
area: ES|QL
2+
issues: []
3+
pr: 144704
4+
summary: ES|QL Improve LOOKUP JOIN on single keyword
5+
type: enhancement

docs/changelog/145052.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
pr: 145052
2+
summary: "ESQL: enable `unmapped_fields=\"load\"` in tech preview"
3+
area: ES|QL
4+
type: enhancement
5+
issues:
6+
- 142369

docs/changelog/145225.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
area: ES|QL
2+
issues:
3+
- 112918
4+
pr: 145225
5+
summary: Adds LIMIT BY ESQL command in Tech Preview
6+
type: enhancement

docs/changelog/145300.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
area: ES|QL
2+
issues: []
3+
pr: 145300
4+
summary: Add coordinator-only caching for external source metadata
5+
type: enhancement

docs/changelog/145393.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
area: ES|QL
2+
issues: []
3+
pr: 145393
4+
summary: Add xerial snappy-java to compression-libs
5+
type: enhancement

docs/changelog/145415.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
pr: 145415
2+
summary: "Fix CsvIT overflow tests failing on JDK 25 due to missing OmitStackTraceInFastThrow flag"
3+
area: ES|QL
4+
type: bug
5+
issues:
6+
- 145415
7+
- 145424
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
% This is generated by ESQL's CommandDocsTests. Do not edit it. See ../README.md for how to regenerate it.
2+
3+
```esql
4+
FROM employees
5+
| SORT salary DESC
6+
| LIMIT 1 BY gender
7+
| KEEP first_name, last_name, salary, gender
8+
```
9+
10+
| first_name:keyword | last_name:keyword | salary:integer | gender:keyword |
11+
| --- | --- | --- | --- |
12+
| Otmar | Herbst | 74999 | M |
13+
| Tzvetan | Zielinski | 74572 | F |
14+
| Lillian | Haddadi | 73717 | null |

0 commit comments

Comments
 (0)