forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'db70623' into fix_swallow_send_request
- Loading branch information
Showing
133 changed files
with
2,581 additions
and
631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
pr: 106486 | ||
summary: Create custom parser for ISO-8601 datetimes | ||
area: Infra/Core | ||
type: enhancement | ||
issues: | ||
- 102063 | ||
highlight: | ||
title: New custom parser for ISO-8601 datetimes | ||
body: |- | ||
This introduces a new custom parser for ISO-8601 datetimes, for the `iso8601`, `strict_date_optional_time`, and | ||
`strict_date_optional_time_nanos` built-in date formats. This provides a performance improvement over the | ||
default Java date-time parsing. Whilst it maintains much of the same behaviour, | ||
the new parser does not accept nonsensical date-time strings that have multiple fractional seconds fields | ||
or multiple timezone specifiers. If the new parser fails to parse a string, it will then use the previous parser | ||
to parse it. If a large proportion of the input data consists of these invalid strings, this may cause | ||
a small performance degradation. If you wish to force the use of the old parsers regardless, | ||
set the JVM property `es.datetime.java_time_parsers=true` on all ES nodes. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pr: 108571 | ||
summary: Workaround G1 bug for JDK 22 and 22.0.1 | ||
area: Infra/CLI | ||
type: bug | ||
issues: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
pr: 108639 | ||
summary: Add support for the 'Domain' database to the geoip processor | ||
area: Ingest Node | ||
type: enhancement | ||
issues: [] | ||
highlight: | ||
title: Add support for the 'Domain' database to the geoip processor | ||
body: |- | ||
Follow on to #107287 and #107377 | ||
Adds support for the ['GeoIP2 | ||
Domain'](https://dev.maxmind.com/geoip/docs/databases/domain) database | ||
from MaxMind to the `geoip` processor. | ||
The `geoip` processor will automatically download the [various | ||
'GeoLite2' | ||
databases](https://dev.maxmind.com/geoip/geolite2-free-geolocation-data), | ||
but the 'GeoIP2 Domain' database is not a 'GeoLite2' database -- it's a | ||
commercial database available to those with a suitable license from | ||
MaxMind. | ||
The support that is being added for it in this PR is in line with the | ||
support that we already have for MaxMind's 'GeoIP2 City' and 'GeoIP2 | ||
Country' databases -- that is, one would need to arrange their own | ||
download management via some custom endpoint or otherwise arrange for | ||
the relevant file(s) to be in the `$ES_CONFIG/ingest-geoip` directory on | ||
the nodes of the cluster. | ||
notable: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.