aws: additional notes on opensearch
This commit is contained in:
parent
7cfad9bc6e
commit
56b701f4cb
1 changed files with 16 additions and 1 deletions
|
@ -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.
|
||||
|
||||

|
||||
|
||||
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
|
Loading…
Add table
Reference in a new issue