date-format.asciidoc 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. [[mapping-date-format]]
  2. == Date Format
  3. In JSON documents, dates are represented as strings. Elasticsearch uses a set
  4. of pre-configured format to recognize and convert those, but you can change the
  5. defaults by specifying the `format` option when defining a `date` type, or by
  6. specifying `dynamic_date_formats` in the `root object` mapping (which will
  7. be used unless explicitly overridden by a `date` type). There are built in
  8. formats supported, as well as complete custom one.
  9. The parsing of dates uses http://www.joda.org/joda-time/[Joda]. The
  10. default date parsing used if no format is specified is
  11. http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateOptionalTimeParser--[ISODateTimeFormat.dateOptionalTimeParser].
  12. An extension to the format allow to define several formats using `||`
  13. separator. This allows to define less strict formats that can be used,
  14. for example, the `yyyy/MM/dd HH:mm:ss||yyyy/MM/dd` format will parse
  15. both `yyyy/MM/dd HH:mm:ss` and `yyyy/MM/dd`. The first format will also
  16. act as the one that converts back from milliseconds to a string
  17. representation.
  18. [float]
  19. [[date-math]]
  20. === Date Math
  21. The `date` type supports using date math expression when using it in a
  22. query/filter (mainly makes sense in `range` query/filter).
  23. The expression starts with an "anchor" date, which can be either `now`
  24. or a date string (in the applicable format) ending with `||`. It can
  25. then follow by a math expression, supporting `+`, `-` and `/`
  26. (rounding). The units supported are `y` (year), `M` (month), `w` (week),
  27. `d` (day), `h` (hour), `m` (minute), and `s` (second).
  28. Here are some samples: `now+1h`, `now+1h+1m`, `now+1h/d`,
  29. `2012-01-01||+1M/d`.
  30. When doing `range` type searches with rounding, the value parsed
  31. depends on whether the end of the range is inclusive or exclusive, and
  32. whether the beginning or end of the range. Rounding up moves to the
  33. last millisecond of the rounding scope, and rounding down to the
  34. first millisecond of the rounding scope. The semantics work as follows:
  35. * `gt` - round up, and use > that value (`2014-11-18||/M` becomes `2014-11-30T23:59:59.999`, ie excluding the entire month)
  36. * `gte` - round D down, and use >= that value (`2014-11-18||/M` becomes `2014-11-01`, ie including the entire month)
  37. * `lt` - round D down, and use < that value (`2014-11-18||/M` becomes `2014-11-01`, ie excluding the entire month)
  38. * `lte` - round D up, and use <= that value(`2014-11-18||/M` becomes `2014-11-30T23:59:59.999`, ie including the entire month)
  39. [float]
  40. [[built-in]]
  41. === Built In Formats
  42. The following tables lists all the defaults ISO formats supported:
  43. [cols="<,<",options="header",]
  44. |=======================================================================
  45. |Name |Description
  46. |`basic_date`|A basic formatter for a full date as four digit year, two
  47. digit month of year, and two digit day of month (yyyyMMdd).
  48. |`basic_date_time`|A basic formatter that combines a basic date and time,
  49. separated by a 'T' (yyyyMMdd'T'HHmmss.SSSZ).
  50. |`basic_date_time_no_millis`|A basic formatter that combines a basic date
  51. and time without millis, separated by a 'T' (yyyyMMdd'T'HHmmssZ).
  52. |`basic_ordinal_date`|A formatter for a full ordinal date, using a four
  53. digit year and three digit dayOfYear (yyyyDDD).
  54. |`basic_ordinal_date_time`|A formatter for a full ordinal date and time,
  55. using a four digit year and three digit dayOfYear
  56. (yyyyDDD'T'HHmmss.SSSZ).
  57. |`basic_ordinal_date_time_no_millis`|A formatter for a full ordinal date
  58. and time without millis, using a four digit year and three digit
  59. dayOfYear (yyyyDDD'T'HHmmssZ).
  60. |`basic_time`|A basic formatter for a two digit hour of day, two digit
  61. minute of hour, two digit second of minute, three digit millis, and time
  62. zone offset (HHmmss.SSSZ).
  63. |`basic_time_no_millis`|A basic formatter for a two digit hour of day,
  64. two digit minute of hour, two digit second of minute, and time zone
  65. offset (HHmmssZ).
  66. |`basic_t_time`|A basic formatter for a two digit hour of day, two digit
  67. minute of hour, two digit second of minute, three digit millis, and time
  68. zone off set prefixed by 'T' ('T'HHmmss.SSSZ).
  69. |`basic_t_time_no_millis`|A basic formatter for a two digit hour of day,
  70. two digit minute of hour, two digit second of minute, and time zone
  71. offset prefixed by 'T' ('T'HHmmssZ).
  72. |`basic_week_date`|A basic formatter for a full date as four digit
  73. weekyear, two digit week of weekyear, and one digit day of week
  74. (xxxx'W'wwe).
  75. |`basic_week_date_time`|A basic formatter that combines a basic weekyear
  76. date and time, separated by a 'T' (xxxx'W'wwe'T'HHmmss.SSSZ).
  77. |`basic_week_date_time_no_millis`|A basic formatter that combines a basic
  78. weekyear date and time without millis, separated by a 'T'
  79. (xxxx'W'wwe'T'HHmmssZ).
  80. |`date`|A formatter for a full date as four digit year, two digit month
  81. of year, and two digit day of month (yyyy-MM-dd).
  82. |`date_hour`|A formatter that combines a full date and two digit hour of
  83. day.
  84. |`date_hour_minute`|A formatter that combines a full date, two digit hour
  85. of day, and two digit minute of hour.
  86. |`date_hour_minute_second`|A formatter that combines a full date, two
  87. digit hour of day, two digit minute of hour, and two digit second of
  88. minute.
  89. |`date_hour_minute_second_fraction`|A formatter that combines a full
  90. date, two digit hour of day, two digit minute of hour, two digit second
  91. of minute, and three digit fraction of second
  92. (yyyy-MM-dd'T'HH:mm:ss.SSS).
  93. |`date_hour_minute_second_millis`|A formatter that combines a full date,
  94. two digit hour of day, two digit minute of hour, two digit second of
  95. minute, and three digit fraction of second (yyyy-MM-dd'T'HH:mm:ss.SSS).
  96. |`date_optional_time`|a generic ISO datetime parser where the date is
  97. mandatory and the time is optional.
  98. |`date_time`|A formatter that combines a full date and time, separated by
  99. a 'T' (yyyy-MM-dd'T'HH:mm:ss.SSSZZ).
  100. |`date_time_no_millis`|A formatter that combines a full date and time
  101. without millis, separated by a 'T' (yyyy-MM-dd'T'HH:mm:ssZZ).
  102. |`hour`|A formatter for a two digit hour of day.
  103. |`hour_minute`|A formatter for a two digit hour of day and two digit
  104. minute of hour.
  105. |`hour_minute_second`|A formatter for a two digit hour of day, two digit
  106. minute of hour, and two digit second of minute.
  107. |`hour_minute_second_fraction`|A formatter for a two digit hour of day,
  108. two digit minute of hour, two digit second of minute, and three digit
  109. fraction of second (HH:mm:ss.SSS).
  110. |`hour_minute_second_millis`|A formatter for a two digit hour of day, two
  111. digit minute of hour, two digit second of minute, and three digit
  112. fraction of second (HH:mm:ss.SSS).
  113. |`ordinal_date`|A formatter for a full ordinal date, using a four digit
  114. year and three digit dayOfYear (yyyy-DDD).
  115. |`ordinal_date_time`|A formatter for a full ordinal date and time, using
  116. a four digit year and three digit dayOfYear (yyyy-DDD'T'HH:mm:ss.SSSZZ).
  117. |`ordinal_date_time_no_millis`|A formatter for a full ordinal date and
  118. time without millis, using a four digit year and three digit dayOfYear
  119. (yyyy-DDD'T'HH:mm:ssZZ).
  120. |`time`|A formatter for a two digit hour of day, two digit minute of
  121. hour, two digit second of minute, three digit fraction of second, and
  122. time zone offset (HH:mm:ss.SSSZZ).
  123. |`time_no_millis`|A formatter for a two digit hour of day, two digit
  124. minute of hour, two digit second of minute, and time zone offset
  125. (HH:mm:ssZZ).
  126. |`t_time`|A formatter for a two digit hour of day, two digit minute of
  127. hour, two digit second of minute, three digit fraction of second, and
  128. time zone offset prefixed by 'T' ('T'HH:mm:ss.SSSZZ).
  129. |`t_time_no_millis`|A formatter for a two digit hour of day, two digit
  130. minute of hour, two digit second of minute, and time zone offset
  131. prefixed by 'T' ('T'HH:mm:ssZZ).
  132. |`week_date`|A formatter for a full date as four digit weekyear, two
  133. digit week of weekyear, and one digit day of week (xxxx-'W'ww-e).
  134. |`week_date_time`|A formatter that combines a full weekyear date and
  135. time, separated by a 'T' (xxxx-'W'ww-e'T'HH:mm:ss.SSSZZ).
  136. |`weekDateTimeNoMillis`|A formatter that combines a full weekyear date
  137. and time without millis, separated by a 'T' (xxxx-'W'ww-e'T'HH:mm:ssZZ).
  138. |`week_year`|A formatter for a four digit weekyear.
  139. |`weekyearWeek`|A formatter for a four digit weekyear and two digit week
  140. of weekyear.
  141. |`weekyearWeekDay`|A formatter for a four digit weekyear, two digit week
  142. of weekyear, and one digit day of week.
  143. |`year`|A formatter for a four digit year.
  144. |`year_month`|A formatter for a four digit year and two digit month of
  145. year.
  146. |`year_month_day`|A formatter for a four digit year, two digit month of
  147. year, and two digit day of month.
  148. |`epoch_second`|A formatter for the number of seconds since the epoch.
  149. Note, that this timestamp allows a max length of 10 chars, so dates
  150. older than 1653 and 2286 are not supported. You should use a different
  151. date formatter in that case.
  152. |`epoch_millis`|A formatter for the number of milliseconds since the epoch.
  153. Note, that this timestamp allows a max length of 13 chars, so dates
  154. older than 1653 and 2286 are not supported. You should use a different
  155. date formatter in that case.
  156. |=======================================================================
  157. [float]
  158. [[custom]]
  159. === Custom Format
  160. Allows for a completely customizable date format explained
  161. http://www.joda.org/joda-time/apidocs/org/joda/time/format/DateTimeFormat.html[here].