Browse Source

Improved Terms Aggregation documentation (#38892)

Added a note after the first query example talking about fielddata.
Samuel Cifuentes García 6 years ago
parent
commit
ff6ffe8ba1
1 changed files with 3 additions and 1 deletions
  1. 3 1
      docs/reference/aggregations/bucket/terms-aggregation.asciidoc

+ 3 - 1
docs/reference/aggregations/bucket/terms-aggregation.asciidoc

@@ -59,13 +59,15 @@ GET /_search
 {
     "aggs" : {
         "genres" : {
-            "terms" : { "field" : "genre" }
+            "terms" : { "field" : "genre" } <1>
         }
     }
 }
 --------------------------------------------------
 // CONSOLE
 // TEST[s/_search/_search\?filter_path=aggregations/]
+<1> `terms` aggregation should be a field of type `keyword` or any other data type suitable for bucket aggregations. In order to use it with `text` you will need to enable 
+<<fielddata, fielddata>>.
 
 Response: