aws: additional notes on opensearch

This commit is contained in:
thomasabishop 2023-11-08 09:27:33 +00:00
parent 7cfad9bc6e
commit 56b701f4cb

View file

@ -39,7 +39,7 @@ The domain provides network **endpoints** you use to communicate and send reques
#### Clusters and nodes
A cluster is the highest level of organisation in OpensSearch that contains your indexed data. It processes all the search queries and handles tasks like indexing, searching, and managing documents.
A cluster is the highest level of organisation within an OpensSearch domain that contains your indexed data. It processes all the search queries and handles tasks like indexing, searching, and managing documents.
![](/_img/opensearch-architecture.drawio.svg)
@ -188,3 +188,18 @@ Find pages published after a certain date:
}
}
```
```json
{
"query": {
"bool": {
"should": [
{ "match": { "fileId": "val" } },
{ "match": { "programmeId": "val" } },
{ "match": { "guid": "val" } }
],
"minimum_should_match": 1
}
}
}
```