OpenSearch/docs/reference/aggregations
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
..
bucket Fix lookup support in adjacency matrix (backport of #59099) (#59108) 2020-07-07 10:28:20 -04:00
matrix [DOCS] [5 of 5] Change // TESTRESPONSE comments to [source,console-results] (#46449) (#46459) 2019-09-06 16:09:09 -04:00
metrics add geo_shape documentation for supported aggregations (#58284) (#58354) 2020-06-18 12:36:24 -07:00
pipeline [7.x] Pipeline Inference Aggregation (#58965) 2020-07-03 09:29:04 +01:00
bucket.asciidoc Docs: Mark variable_width_histogram experimental (#58574) 2020-06-25 16:54:57 -04:00
matrix.asciidoc refactor matrix agg documentation from modules to main agg section 2016-06-06 07:39:00 -05:00
metrics.asciidoc [DOCS] Sort metric and pipeline agg docs (#56613) (#56846) 2020-05-15 17:15:53 -04:00
misc.asciidoc [DOCS] Links transforms in aggregation docs (#52563) 2020-02-21 08:23:34 +01:00
pipeline.asciidoc [DOCS] Sort metric and pipeline agg docs (#56613) (#56846) 2020-05-15 17:15:53 -04:00