OpenSearch/docs/reference/aggregations/bucket
Nik Everett eb169ae226
Fix lookup support in adjacency matrix (backport of #59099) (#59108)
This request:
```
POST /_search
{
  "aggs": {
    "a": {
      "adjacency_matrix": {
        "filters": {
          "1": {
            "terms": { "t": { "index": "lookup", "id": "1", "path": "t" } }
          }
        }
      }
    }
  }
}
```

Would fail with a 500 error and a message like:
```
{
  "error": {
    "root_cause": [
      {
        "type": "illegal_state_exception",
        "reason":"async actions are left after rewrite"
      }
    ]
  }
}
```

This fixes that by moving the query rewrite phase from a synchronous
call on the data nodes into the standard aggregation rewrite phase which
can properly handle the asynchronous actions.
2020-07-07 10:28:20 -04:00
..
adjacency-matrix-aggregation.asciidoc Fix lookup support in adjacency matrix (backport of #59099) (#59108) 2020-07-07 10:28:20 -04:00
autodatehistogram-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
children-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
composite-aggregation.asciidoc Adding transform docs for geotile_grid (#57000) (#57474) 2020-06-01 15:46:37 -04:00
datehistogram-aggregation.asciidoc Update date_histogram docs (#56922) (#57387) 2020-05-29 17:40:40 -04:00
daterange-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
diversified-sampler-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
filter-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
filters-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
geodistance-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
geohashgrid-aggregation.asciidoc add geo_shape documentation for supported aggregations (#58284) (#58354) 2020-06-18 12:36:24 -07:00
geotilegrid-aggregation.asciidoc add geo_shape documentation for supported aggregations (#58284) (#58354) 2020-06-18 12:36:24 -07:00
global-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
histogram-aggregation.asciidoc Documentation notes for Range field histograms (#46890) (#47366) 2019-10-01 10:58:44 -04:00
iprange-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
missing-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
nested-aggregation.asciidoc [DOCS] Minor improvement to the nested aggregation docs (#46475) (#46604) 2019-09-11 12:06:42 -04:00
parent-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
range-aggregation.asciidoc Aggs must specify a `field` or `script` (or both) (#52226) 2020-04-23 19:23:41 -04:00
range-field-note.asciidoc DocValueFormat implementation for date range fields (#47472) (#47605) 2019-10-04 17:21:17 -04:00
rare-terms-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
reverse-nested-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
sampler-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
significantterms-aggregation.asciidoc [DOCS] Remove binary gendered language (#48362) 2019-10-23 09:37:12 -05:00
significanttext-aggregation.asciidoc [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
terms-aggregation.asciidoc [DOCS] Remove approximate document counts example from term agg docs (#55442) 2020-04-30 10:11:50 -04:00
variablewidthhistogram-aggregation.asciidoc Fail variable_width_histogram that collects from many (#58619) (#58780) 2020-06-30 18:26:45 -04:00