daterange-aggregation.asciidoc 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. [[search-aggregations-bucket-daterange-aggregation]]
  2. === Date Range Aggregation
  3. A range aggregation that is dedicated for date values. The main difference between this aggregation and the normal <<search-aggregations-bucket-range-aggregation,range>> aggregation is that the `from` and `to` values can be expressed in <<date-math,Date Math>> expressions, and it is also possible to specify a date format by which the `from` and `to` response fields will be returned.
  4. Note that this aggregation includes the `from` value and excludes the `to` value for each range.
  5. Example:
  6. [source,js]
  7. --------------------------------------------------
  8. POST /sales/_search?size=0
  9. {
  10. "aggs": {
  11. "range": {
  12. "date_range": {
  13. "field": "date",
  14. "format": "MM-yyy",
  15. "ranges": [
  16. { "to": "now-10M/M" }, <1>
  17. { "from": "now-10M/M" } <2>
  18. ]
  19. }
  20. }
  21. }
  22. }
  23. --------------------------------------------------
  24. // CONSOLE
  25. // TEST[setup:sales s/now-10M\/M/10-2015/]
  26. <1> < now minus 10 months, rounded down to the start of the month.
  27. <2> >= now minus 10 months, rounded down to the start of the month.
  28. In the example above, we created two range buckets, the first will "bucket" all documents dated prior to 10 months ago and
  29. the second will "bucket" all documents dated since 10 months ago
  30. Response:
  31. [source,js]
  32. --------------------------------------------------
  33. {
  34. ...
  35. "aggregations": {
  36. "range": {
  37. "buckets": [
  38. {
  39. "to": 1.4436576E12,
  40. "to_as_string": "10-2015",
  41. "doc_count": 7,
  42. "key": "*-10-2015"
  43. },
  44. {
  45. "from": 1.4436576E12,
  46. "from_as_string": "10-2015",
  47. "doc_count": 0,
  48. "key": "10-2015-*"
  49. }
  50. ]
  51. }
  52. }
  53. }
  54. --------------------------------------------------
  55. // TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]
  56. [[date-format-pattern]]
  57. ==== Date Format/Pattern
  58. NOTE: this information was copied from http://www.joda.org/joda-time/apidocs/org/joda/time/format/DateTimeFormat.html[JodaDate]
  59. All ASCII letters are reserved as format pattern letters, which are defined as follows:
  60. [options="header"]
  61. |=======
  62. |Symbol |Meaning |Presentation |Examples
  63. |G |era |text |AD
  64. |C |century of era (>=0) |number |20
  65. |Y |year of era (>=0) |year |1996
  66. |x |weekyear |year |1996
  67. |w |week of weekyear |number |27
  68. |e |day of week |number |2
  69. |E |day of week |text |Tuesday; Tue
  70. |y |year |year |1996
  71. |D |day of year |number |189
  72. |M |month of year |month |July; Jul; 07
  73. |d |day of month |number |10
  74. |a |halfday of day |text |PM
  75. |K |hour of halfday (0~11) |number |0
  76. |h |clockhour of halfday (1~12) |number |12
  77. |H |hour of day (0~23) |number |0
  78. |k |clockhour of day (1~24) |number |24
  79. |m |minute of hour |number |30
  80. |s |second of minute |number |55
  81. |S |fraction of second |number |978
  82. |z |time zone |text |Pacific Standard Time; PST
  83. |Z |time zone offset/id |zone |-0800; -08:00; America/Los_Angeles
  84. |' |escape for text |delimiter
  85. |'' |single quote |literal |'
  86. |=======
  87. The count of pattern letters determine the format.
  88. Text:: If the number of pattern letters is 4 or more, the full form is used; otherwise a short or abbreviated form is used if available.
  89. Number:: The minimum number of digits. Shorter numbers are zero-padded to this amount.
  90. Year:: Numeric presentation for year and weekyear fields are handled specially. For example, if the count of 'y' is 2, the year will be displayed as the zero-based year of the century, which is two digits.
  91. Month:: 3 or over, use text, otherwise use number.
  92. Zone:: 'Z' outputs offset without a colon, 'ZZ' outputs the offset with a colon, 'ZZZ' or more outputs the zone id.
  93. Zone names:: Time zone names ('z') cannot be parsed.
  94. Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '?' will appear in the resulting time text even they are not embraced within single quotes.
  95. [[time-zones]]
  96. ==== Time zone in date range aggregations
  97. Dates can be converted from another time zone to UTC by specifying the `time_zone` parameter.
  98. Time zones may either be specified as an ISO 8601 UTC offset (e.g. +01:00 or -08:00) or as one of
  99. the http://www.joda.org/joda-time/timezones.html[time zone ids] from the TZ database.
  100. The `time_zone` parameter is also applied to rounding in date math expressions. As an example,
  101. to round to the beginning of the day in the CET time zone, you can do the following:
  102. [source,js]
  103. --------------------------------------------------
  104. POST /sales/_search?size=0
  105. {
  106. "aggs": {
  107. "range": {
  108. "date_range": {
  109. "field": "date",
  110. "time_zone": "CET",
  111. "ranges": [
  112. { "to": "2016/02/01" }, <1>
  113. { "from": "2016/02/01", "to" : "now/d" <2>},
  114. { "from": "now/d" }
  115. ]
  116. }
  117. }
  118. }
  119. }
  120. --------------------------------------------------
  121. // CONSOLE
  122. // TEST[setup:sales]
  123. <1> This date will be converted to `2016-02-15T00:00:00.000+01:00`.
  124. <2> `now/d` will be rounded to the beginning of the day in the CET time zone.
  125. ==== Keyed Response
  126. Setting the `keyed` flag to `true` will associate a unique string key with each bucket and return the ranges as a hash rather than an array:
  127. [source,js]
  128. --------------------------------------------------
  129. POST /sales/_search?size=0
  130. {
  131. "aggs": {
  132. "range": {
  133. "date_range": {
  134. "field": "date",
  135. "format": "MM-yyy",
  136. "ranges": [
  137. { "to": "now-10M/M" },
  138. { "from": "now-10M/M" }
  139. ],
  140. "keyed": true
  141. }
  142. }
  143. }
  144. }
  145. --------------------------------------------------
  146. // CONSOLE
  147. // TEST[setup:sales s/now-10M\/M/10-2015/]
  148. Response:
  149. [source,js]
  150. --------------------------------------------------
  151. {
  152. ...
  153. "aggregations": {
  154. "range": {
  155. "buckets": {
  156. "*-10-2015": {
  157. "to": 1.4436576E12,
  158. "to_as_string": "10-2015",
  159. "doc_count": 7
  160. },
  161. "10-2015-*": {
  162. "from": 1.4436576E12,
  163. "from_as_string": "10-2015",
  164. "doc_count": 0
  165. }
  166. }
  167. }
  168. }
  169. }
  170. --------------------------------------------------
  171. // TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]
  172. It is also possible to customize the key for each range:
  173. [source,js]
  174. --------------------------------------------------
  175. POST /sales/_search?size=0
  176. {
  177. "aggs": {
  178. "range": {
  179. "date_range": {
  180. "field": "date",
  181. "format": "MM-yyy",
  182. "ranges": [
  183. { "from": "01-2015", "to": "03-2015", "key": "quarter_01" },
  184. { "from": "03-2015", "to": "06-2015", "key": "quarter_02" }
  185. ],
  186. "keyed": true
  187. }
  188. }
  189. }
  190. }
  191. --------------------------------------------------
  192. // CONSOLE
  193. // TEST[setup:sales]
  194. Response:
  195. [source,js]
  196. --------------------------------------------------
  197. {
  198. ...
  199. "aggregations": {
  200. "range": {
  201. "buckets": {
  202. "quarter_01": {
  203. "from": 1.4200704E12,
  204. "from_as_string": "01-2015",
  205. "to": 1.425168E12,
  206. "to_as_string": "03-2015",
  207. "doc_count": 5
  208. },
  209. "quarter_02": {
  210. "from": 1.425168E12,
  211. "from_as_string": "03-2015",
  212. "to": 1.4331168E12,
  213. "to_as_string": "06-2015",
  214. "doc_count": 2
  215. }
  216. }
  217. }
  218. }
  219. }
  220. --------------------------------------------------
  221. // TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]