WARNING: Version 6.2 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Ingest changes
editIngest changes
editTimestamp meta-data field type has changed
editThe type of the "timestamp" meta-data field has changed from java.lang.String
to java.util.Date
.
The format of the string-formatted ingest.timestamp field has changed
editPreviously, since Elasticsearch 5.4.0, you needed to use ingest.new_date_format
to have the
ingest.timestamp
metadata field be formatted in such a way that ES can coerce it to a field
of type date
without further transformation. This is not necessary anymore and this setting was
removed. You can now simply set a field to {{ingest.timestamp}}
in a pipeline, and have that
field be of type date
without any mapping errors.