WARNING: Version 1.4 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.
Date Format
editDate Format
editIn JSON documents, dates are represented as strings. Elasticsearch uses a set
of pre-configured format to recognize and convert those, but you can change the
defaults by specifying the format
option when defining a date
type, or by
specifying dynamic_date_formats
in the root object
mapping (which will
be used unless explicitly overridden by a date
type). There are built in
formats supported, as well as complete custom one.
The parsing of dates uses Joda. The default date parsing used if no format is specified is ISODateTimeFormat.dateOptionalTimeParser.
An extension to the format allow to define several formats using ||
separator. This allows to define less strict formats that can be used,
for example, the yyyy/MM/dd HH:mm:ss||yyyy/MM/dd
format will parse
both yyyy/MM/dd HH:mm:ss
and yyyy/MM/dd
. The first format will also
act as the one that converts back from milliseconds to a string
representation.
Date Math
editThe date
type supports using date math expression when using it in a
query/filter (mainly makes sense in range
query/filter).
The expression starts with an "anchor" date, which can be either now
or a date string (in the applicable format) ending with ||
. It can
then follow by a math expression, supporting +
, -
and /
(rounding). The units supported are y
(year), M
(month), w
(week),
d
(day), h
(hour), m
(minute), and s
(second).
Here are some samples: now+1h
, now+1h+1m
, now+1h/d
,
2012-01-01||+1M/d
.
Note, when doing range
type searches, and the upper value is
inclusive, the rounding will properly be rounded to the ceiling instead
of flooring it.
To change this behavior, set
"mapping.date.round_ceil": false
.
Built In Formats
editThe following tables lists all the defaults ISO formats supported:
Name | Description |
---|---|
|
A basic formatter for a full date as four digit year, two digit month of year, and two digit day of month (yyyyMMdd). |
|
A basic formatter that combines a basic date and time, separated by a 'T' (yyyyMMdd'T'HHmmss.SSSZ). |
|
A basic formatter that combines a basic date and time without millis, separated by a 'T' (yyyyMMdd'T'HHmmssZ). |
|
A formatter for a full ordinal date, using a four digit year and three digit dayOfYear (yyyyDDD). |
|
A formatter for a full ordinal date and time, using a four digit year and three digit dayOfYear (yyyyDDD'T'HHmmss.SSSZ). |
|
A formatter for a full ordinal date and time without millis, using a four digit year and three digit dayOfYear (yyyyDDD'T'HHmmssZ). |
|
A basic formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, three digit millis, and time zone offset (HHmmss.SSSZ). |
|
A basic formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, and time zone offset (HHmmssZ). |
|
A basic formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, three digit millis, and time zone off set prefixed by 'T' ('T'HHmmss.SSSZ). |
|
A basic formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, and time zone offset prefixed by 'T' ('T'HHmmssZ). |
|
A basic formatter for a full date as four digit weekyear, two digit week of weekyear, and one digit day of week (xxxx'W'wwe). |
|
A basic formatter that combines a basic weekyear date and time, separated by a 'T' (xxxx'W'wwe'T'HHmmss.SSSZ). |
|
A basic formatter that combines a basic weekyear date and time without millis, separated by a 'T' (xxxx'W'wwe'T'HHmmssZ). |
|
A formatter for a full date as four digit year, two digit month of year, and two digit day of month (yyyy-MM-dd). |
|
A formatter that combines a full date and two digit hour of day. |
|
A formatter that combines a full date, two digit hour of day, and two digit minute of hour. |
|
A formatter that combines a full date, two digit hour of day, two digit minute of hour, and two digit second of minute. |
|
A formatter that combines a full date, two digit hour of day, two digit minute of hour, two digit second of minute, and three digit fraction of second (yyyy-MM-dd'T'HH:mm:ss.SSS). |
|
A formatter that combines a full date, two digit hour of day, two digit minute of hour, two digit second of minute, and three digit fraction of second (yyyy-MM-dd'T'HH:mm:ss.SSS). |
|
a generic ISO datetime parser where the date is mandatory and the time is optional. |
|
A formatter that combines a full date and time, separated by a 'T' (yyyy-MM-dd'T'HH:mm:ss.SSSZZ). |
|
A formatter that combines a full date and time without millis, separated by a 'T' (yyyy-MM-dd'T'HH:mm:ssZZ). |
|
A formatter for a two digit hour of day. |
|
A formatter for a two digit hour of day and two digit minute of hour. |
|
A formatter for a two digit hour of day, two digit minute of hour, and two digit second of minute. |
|
A formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, and three digit fraction of second (HH:mm:ss.SSS). |
|
A formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, and three digit fraction of second (HH:mm:ss.SSS). |
|
A formatter for a full ordinal date, using a four digit year and three digit dayOfYear (yyyy-DDD). |
|
A formatter for a full ordinal date and time, using a four digit year and three digit dayOfYear (yyyy-DDD'T'HH:mm:ss.SSSZZ). |
|
A formatter for a full ordinal date and time without millis, using a four digit year and three digit dayOfYear (yyyy-DDD'T'HH:mm:ssZZ). |
|
A formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, three digit fraction of second, and time zone offset (HH:mm:ss.SSSZZ). |
|
A formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, and time zone offset (HH:mm:ssZZ). |
|
A formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, three digit fraction of second, and time zone offset prefixed by 'T' ('T'HH:mm:ss.SSSZZ). |
|
A formatter for a two digit hour of day, two digit minute of hour, two digit second of minute, and time zone offset prefixed by 'T' ('T'HH:mm:ssZZ). |
|
A formatter for a full date as four digit weekyear, two digit week of weekyear, and one digit day of week (xxxx-'W'ww-e). |
|
A formatter that combines a full weekyear date and time, separated by a 'T' (xxxx-'W'ww-e'T'HH:mm:ss.SSSZZ). |
|
A formatter that combines a full weekyear date and time without millis, separated by a 'T' (xxxx-'W'ww-e'T'HH:mm:ssZZ). |
|
A formatter for a four digit weekyear. |
|
A formatter for a four digit weekyear and two digit week of weekyear. |
|
A formatter for a four digit weekyear, two digit week of weekyear, and one digit day of week. |
|
A formatter for a four digit year. |
|
A formatter for a four digit year and two digit month of year. |
|
A formatter for a four digit year, two digit month of year, and two digit day of month. |
Custom Format
editAllows for a completely customizable date format explained here.