cardinality-aggregation.asciidoc 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. [[search-aggregations-metrics-cardinality-aggregation]]
  2. === Cardinality Aggregation
  3. A `single-value` metrics aggregation that calculates an approximate count of
  4. distinct values. Values can be extracted either from specific fields in the
  5. document or generated by a script.
  6. Assume you are indexing books and would like to count the unique authors that
  7. match a query:
  8. [source,js]
  9. --------------------------------------------------
  10. POST /sales/_search?size=0
  11. {
  12. "aggs" : {
  13. "type_count" : {
  14. "cardinality" : {
  15. "field" : "type"
  16. }
  17. }
  18. }
  19. }
  20. --------------------------------------------------
  21. // CONSOLE
  22. // TEST[setup:sales]
  23. Response:
  24. [source,js]
  25. --------------------------------------------------
  26. {
  27. ...
  28. "aggregations" : {
  29. "type_count" : {
  30. "value" : 3
  31. }
  32. }
  33. }
  34. --------------------------------------------------
  35. // TESTRESPONSE[s/\.\.\./"took": $body.took,"timed_out": false,"_shards": $body._shards,"hits": $body.hits,/]
  36. ==== Precision control
  37. This aggregation also supports the `precision_threshold` option:
  38. [source,js]
  39. --------------------------------------------------
  40. POST /sales/_search?size=0
  41. {
  42. "aggs" : {
  43. "type_count" : {
  44. "cardinality" : {
  45. "field" : "type",
  46. "precision_threshold": 100 <1>
  47. }
  48. }
  49. }
  50. }
  51. --------------------------------------------------
  52. // CONSOLE
  53. // TEST[setup:sales]
  54. <1> The `precision_threshold` options allows to trade memory for accuracy, and
  55. defines a unique count below which counts are expected to be close to
  56. accurate. Above this value, counts might become a bit more fuzzy. The maximum
  57. supported value is 40000, thresholds above this number will have the same
  58. effect as a threshold of 40000. The default values is +3000+.
  59. ==== Counts are approximate
  60. Computing exact counts requires loading values into a hash set and returning its
  61. size. This doesn't scale when working on high-cardinality sets and/or large
  62. values as the required memory usage and the need to communicate those
  63. per-shard sets between nodes would utilize too many resources of the cluster.
  64. This `cardinality` aggregation is based on the
  65. http://static.googleusercontent.com/media/research.google.com/fr//pubs/archive/40671.pdf[HyperLogLog++]
  66. algorithm, which counts based on the hashes of the values with some interesting
  67. properties:
  68. * configurable precision, which decides on how to trade memory for accuracy,
  69. * excellent accuracy on low-cardinality sets,
  70. * fixed memory usage: no matter if there are tens or billions of unique values,
  71. memory usage only depends on the configured precision.
  72. For a precision threshold of `c`, the implementation that we are using requires
  73. about `c * 8` bytes.
  74. The following chart shows how the error varies before and after the threshold:
  75. ////
  76. To generate this chart use this gnuplot script:
  77. [source,gnuplot]
  78. -------
  79. #!/usr/bin/gnuplot
  80. reset
  81. set terminal png size 1000,400
  82. set xlabel "Actual cardinality"
  83. set logscale x
  84. set ylabel "Relative error (%)"
  85. set yrange [0:8]
  86. set title "Cardinality error"
  87. set grid
  88. set style data lines
  89. plot "test.dat" using 1:2 title "threshold=100", \
  90. "" using 1:3 title "threshold=1000", \
  91. "" using 1:4 title "threshold=10000"
  92. #
  93. -------
  94. and generate data in a 'test.dat' file using the below Java code:
  95. [source,java]
  96. -------
  97. private static double error(HyperLogLogPlusPlus h, long expected) {
  98. double actual = h.cardinality(0);
  99. return Math.abs(expected - actual) / expected;
  100. }
  101. public static void main(String[] args) {
  102. HyperLogLogPlusPlus h100 = new HyperLogLogPlusPlus(precisionFromThreshold(100), BigArrays.NON_RECYCLING_INSTANCE, 1);
  103. HyperLogLogPlusPlus h1000 = new HyperLogLogPlusPlus(precisionFromThreshold(1000), BigArrays.NON_RECYCLING_INSTANCE, 1);
  104. HyperLogLogPlusPlus h10000 = new HyperLogLogPlusPlus(precisionFromThreshold(10000), BigArrays.NON_RECYCLING_INSTANCE, 1);
  105. int next = 100;
  106. int step = 10;
  107. for (int i = 1; i <= 10000000; ++i) {
  108. long h = BitMixer.mix64(i);
  109. h100.collect(0, h);
  110. h1000.collect(0, h);
  111. h10000.collect(0, h);
  112. if (i == next) {
  113. System.out.println(i + " " + error(h100, i)*100 + " " + error(h1000, i)*100 + " " + error(h10000, i)*100);
  114. next += step;
  115. if (next >= 100 * step) {
  116. step *= 10;
  117. }
  118. }
  119. }
  120. }
  121. -------
  122. ////
  123. image:images/cardinality_error.png[]
  124. For all 3 thresholds, counts have been accurate up to the configured threshold
  125. (although not guaranteed, this is likely to be the case). Please also note that
  126. even with a threshold as low as 100, the error remains very low, even when
  127. counting millions of items.
  128. ==== Pre-computed hashes
  129. On string fields that have a high cardinality, it might be faster to store the
  130. hash of your field values in your index and then run the cardinality aggregation
  131. on this field. This can either be done by providing hash values from client-side
  132. or by letting elasticsearch compute hash values for you by using the
  133. {plugins}/mapper-murmur3.html[`mapper-murmur3`] plugin.
  134. NOTE: Pre-computing hashes is usually only useful on very large and/or
  135. high-cardinality fields as it saves CPU and memory. However, on numeric
  136. fields, hashing is very fast and storing the original values requires as much
  137. or less memory than storing the hashes. This is also true on low-cardinality
  138. string fields, especially given that those have an optimization in order to
  139. make sure that hashes are computed at most once per unique value per segment.
  140. ==== Script
  141. The `cardinality` metric supports scripting, with a noticeable performance hit
  142. however since hashes need to be computed on the fly.
  143. [source,js]
  144. --------------------------------------------------
  145. POST /sales/_search?size=0
  146. {
  147. "aggs" : {
  148. "type_promoted_count" : {
  149. "cardinality" : {
  150. "script": {
  151. "lang": "painless",
  152. "source": "doc['type'].value + ' ' + doc['promoted'].value"
  153. }
  154. }
  155. }
  156. }
  157. }
  158. --------------------------------------------------
  159. // CONSOLE
  160. // TEST[setup:sales]
  161. This will interpret the `script` parameter as an `inline` script with the `painless` script language and no script parameters. To use a stored script use the following syntax:
  162. [source,js]
  163. --------------------------------------------------
  164. POST /sales/_search?size=0
  165. {
  166. "aggs" : {
  167. "type_promoted_count" : {
  168. "cardinality" : {
  169. "script" : {
  170. "id": "my_script",
  171. "params": {
  172. "type_field": "type",
  173. "promoted_field": "promoted"
  174. }
  175. }
  176. }
  177. }
  178. }
  179. }
  180. --------------------------------------------------
  181. // CONSOLE
  182. // TEST[skip:no script]
  183. ==== Missing value
  184. The `missing` parameter defines how documents that are missing a value should be treated.
  185. By default they will be ignored but it is also possible to treat them as if they
  186. had a value.
  187. [source,js]
  188. --------------------------------------------------
  189. POST /sales/_search?size=0
  190. {
  191. "aggs" : {
  192. "tag_cardinality" : {
  193. "cardinality" : {
  194. "field" : "tag",
  195. "missing": "N/A" <1>
  196. }
  197. }
  198. }
  199. }
  200. --------------------------------------------------
  201. // CONSOLE
  202. // TEST[setup:sales]
  203. <1> Documents without a value in the `tag` field will fall into the same bucket as documents that have the value `N/A`.