In JSON documents, dates are represented as strings. Elasticsearch uses a set of preconfigured formats to recognize and parse these strings into a long value representing milliseconds-since-the-epoch in UTC.
Besides the built-in formats, your own
custom formats can be specified using the familiar
yyyy/MM/dd syntax:
response = client.indices.create(
index: 'my-index-000001',
body: {
mappings: {
properties: {
date: {
type: 'date',
format: 'yyyy-MM-dd'
}
}
}
}
)
puts response
res, err := es.Indices.Create(
"my-index-000001",
es.Indices.Create.WithBody(strings.NewReader(`{
"mappings": {
"properties": {
"date": {
"type": "date",
"format": "yyyy-MM-dd"
}
}
}
}`)),
)
fmt.Println(res, err)
PUT my-index-000001
{
"mappings": {
"properties": {
"date": {
"type": "date",
"format": "yyyy-MM-dd"
}
}
}
}
Many APIs which support date values also support date math
expressions, such as now-1m/d — the current time, minus one month, rounded
down to the nearest day.
Completely customizable date formats are supported. The syntax for these is explained DateTimeFormatter docs.
Most of the below formats have a strict companion format, which means that
year, month and day parts of the week must use respectively 4, 2 and 2 digits
exactly, potentially prepending zeros. For instance a date like 5/11/1 would
be considered invalid and would need to be rewritten to 2005/11/01 to be
accepted by the date parser.
To use them, you need to prepend strict_ to the name of the date format, for
instance strict_date_optional_time instead of date_optional_time.
These strict date formats are especially useful when date fields are dynamically mapped in order to make sure to not accidentally map irrelevant strings as dates.
The following tables lists all the defaults ISO formats supported:
-
epoch_millis -
A formatter for the number of milliseconds since the epoch. Note, that
this timestamp is subject to the limits of a Java
Long.MIN_VALUEandLong.MAX_VALUE. -
epoch_second -
A formatter for the number of seconds since the epoch. Note, that this
timestamp is subject to the limits of a Java
Long.MIN_VALUEandLong. MAX_VALUEdivided by 1000 (the number of milliseconds in a second). -
date_optional_timeorstrict_date_optional_time -
A generic ISO datetime parser, where the date must include the year at a minimum, and the time
(separated by
T), is optional. Examples:yyyy-MM-dd'T'HH:mm:ss.SSSZoryyyy-MM-dd. -
strict_date_optional_time_nanos -
A generic ISO datetime parser, where the date must include the year at a minimum, and the time
(separated by
T), is optional. The fraction of a second part has a nanosecond resolution. Examples:yyyy-MM-dd'T'HH:mm:ss.SSSSSSZoryyyy-MM-dd. -
basic_date -
A basic formatter for a full date as four digit year, two digit month of
year, and two digit day of month:
yyyyMMdd. -
basic_date_time -
A basic formatter that combines a basic date and time, separated by a T:
yyyyMMdd'T'HHmmss.SSSZ. -
basic_date_time_no_millis -
A basic formatter that combines a basic date and time without millis,
separated by a T:
yyyyMMdd'T'HHmmssZ. -
basic_ordinal_date -
A formatter for a full ordinal date, using a four digit year and three
digit dayOfYear:
yyyyDDD. -
basic_ordinal_date_time -
A formatter for a full ordinal date and time, using a four digit year and
three digit dayOfYear:
yyyyDDD'T'HHmmss.SSSZ. -
basic_ordinal_date_time_no_millis -
A formatter for a full ordinal date and time without millis, using a four
digit year and three digit dayOfYear:
yyyyDDD'T'HHmmssZ. -
basic_time -
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. -
basic_time_no_millis -
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. -
basic_t_time -
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. -
basic_t_time_no_millis -
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. -
basic_week_dateorstrict_basic_week_date -
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. -
basic_week_date_timeorstrict_basic_week_date_time -
A basic formatter that combines a basic weekyear date and time, separated
by a T:
xxxx'W'wwe'T'HHmmss.SSSZ. -
basic_week_date_time_no_millisorstrict_basic_week_date_time_no_millis -
A basic formatter that combines a basic weekyear date and time without
millis, separated by a T:
xxxx'W'wwe'T'HHmmssZ. -
dateorstrict_date -
A formatter for a full date as four digit year, two digit month of year,
and two digit day of month:
yyyy-MM-dd. -
date_hourorstrict_date_hour -
A formatter that combines a full date and two digit hour of day:
yyyy-MM-dd'T'HH. -
date_hour_minuteorstrict_date_hour_minute -
A formatter that combines a full date, two digit hour of day, and two
digit minute of hour:
yyyy-MM-dd'T'HH:mm. -
date_hour_minute_secondorstrict_date_hour_minute_second -
A formatter that combines a full date, two digit hour of day, two digit
minute of hour, and two digit second of minute:
yyyy-MM-dd'T'HH:mm:ss. -
date_hour_minute_second_fractionorstrict_date_hour_minute_second_fraction -
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. -
date_hour_minute_second_millisorstrict_date_hour_minute_second_millis -
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. -
date_timeorstrict_date_time -
A formatter that combines a full date and time, separated by a T:
yyyy-MM-dd'T'HH:mm:ss.SSSZ. -
date_time_no_millisorstrict_date_time_no_millis -
A formatter that combines a full date and time without millis, separated
by a T:
yyyy-MM-dd'T'HH:mm:ssZ. -
hourorstrict_hour -
A formatter for a two digit hour of day:
HH -
hour_minuteorstrict_hour_minute -
A formatter for a two digit hour of day and two digit minute of hour:
HH:mm. -
hour_minute_secondorstrict_hour_minute_second -
A formatter for a two digit hour of day, two digit minute of hour, and two
digit second of minute:
HH:mm:ss. -
hour_minute_second_fractionorstrict_hour_minute_second_fraction -
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. -
hour_minute_second_millisorstrict_hour_minute_second_millis -
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. -
ordinal_dateorstrict_ordinal_date -
A formatter for a full ordinal date, using a four digit year and three
digit dayOfYear:
yyyy-DDD. -
ordinal_date_timeorstrict_ordinal_date_time -
A formatter for a full ordinal date and time, using a four digit year and
three digit dayOfYear:
yyyy-DDD'T'HH:mm:ss.SSSZ. -
ordinal_date_time_no_millisorstrict_ordinal_date_time_no_millis -
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:ssZ. -
timeorstrict_time -
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.SSSZ. -
time_no_millisorstrict_time_no_millis -
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:ssZ. -
t_timeorstrict_t_time -
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.SSSZ. -
t_time_no_millisorstrict_t_time_no_millis -
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:ssZ. -
week_dateorstrict_week_date -
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. -
week_date_timeorstrict_week_date_time -
A formatter that combines a full weekyear date and time, separated by a
T:
xxxx-'W'ww-e'T'HH:mm:ss.SSSZ. -
week_date_time_no_millisorstrict_week_date_time_no_millis -
A formatter that combines a full weekyear date and time without millis,
separated by a T:
xxxx-'W'ww-e'T'HH:mm:ssZ. -
weekyearorstrict_weekyear -
A formatter for a four digit weekyear:
xxxx. -
weekyear_weekorstrict_weekyear_week -
A formatter for a four digit weekyear and two digit week of weekyear:
xxxx-'W'ww. -
weekyear_week_dayorstrict_weekyear_week_day -
A formatter for a four digit weekyear, two digit week of weekyear, and one
digit day of week:
xxxx-'W'ww-e. -
yearorstrict_year -
A formatter for a four digit year:
yyyy. -
year_monthorstrict_year_month -
A formatter for a four digit year and two digit month of year:
yyyy-MM. -
year_month_dayorstrict_year_month_day -
A formatter for a four digit year, two digit month of year, and two digit
day of month:
yyyy-MM-dd.