Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Collapsing search results new page added to documentation #7919

Merged
Merged
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
23e0e89
adding documentation for collapsing search results
leanneeliatra Aug 6, 2024
3b21a0c
Merge branch 'main' into collapse-search-results-#7507
leanneeliatra Aug 7, 2024
53f5f3f
Merge branch 'main' into collapse-search-results-#7507
leanneeliatra Aug 15, 2024
3ab36b1
Clarifying collapsing of search results
leanneeliatra Aug 15, 2024
fa3ffbd
updating collapsing example as per request
leanneeliatra Aug 19, 2024
84bec0d
updates as per reviewdog
leanneeliatra Aug 20, 2024
18befbb
updates as per review dog
leanneeliatra Aug 20, 2024
d040c7d
Merge branch 'main' into collapse-search-results-#7507
leanneeliatra Aug 20, 2024
a5a1a5a
remove unneeded space
leanneeliatra Aug 20, 2024
b7a0f88
Merge branch 'main' into collapse-search-results-#7507
vagimeli Aug 28, 2024
d3b6fe6
Update _search-plugins/collapse-search.md
leanneeliatra Aug 30, 2024
bdedb11
Update _search-plugins/collapse-search.md
leanneeliatra Aug 30, 2024
856b6c6
Update _search-plugins/collapse-search.md
leanneeliatra Aug 30, 2024
ad12cd8
Update _search-plugins/collapse-search.md
leanneeliatra Aug 30, 2024
1d1e5ca
Apply suggestions from code review
leanneeliatra Aug 30, 2024
9942b78
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
587e3b6
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
6d1cc8f
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
df62330
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
9544dcd
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
c74e350
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
80c8b03
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
38a6cd8
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
c8cac89
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
0c68494
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
3df37b8
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
535f77a
Update _search-plugins/collapse-search.md
vagimeli Sep 12, 2024
b606e21
Update _search-plugins/collapse-search.md
leanneeliatra Sep 17, 2024
63a62e3
Merge branch 'main' into collapse-search-results-#7507
leanneeliatra Sep 17, 2024
5dbb1c6
Review suggestions addressed
leanneeliatra Sep 17, 2024
5535fcf
update to language
leanneeliatra Sep 17, 2024
4e6c712
update to language from review
leanneeliatra Sep 17, 2024
cf38f29
Merge branch 'main' into collapse-search-results-#7507
leanneeliatra Sep 18, 2024
224721d
Merge branch 'main' into collapse-search-results-#7507
vagimeli Sep 24, 2024
d2e728f
Merge branch 'main' into collapse-search-results-#7507
vagimeli Sep 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
231 changes: 231 additions & 0 deletions _search-plugins/collapse-search.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,231 @@
---
layout: default
title: Collapse search results
nav_order: 3
---

# Collapse search results

The `collapse` parameter groups search results by a particular field value. This returns only the top document within each group, which helps reduce redundancy by eliminating duplicates.

The `collapse` parameter requires the field being collapsed to be of either a `keyword` or a `numeric` type.

leanneeliatra marked this conversation as resolved.
Show resolved Hide resolved
---

## Collapsing search results

To populate an index with data, define the index mappings and an `item` field indexed as a `keyword`. The following example request shows you how to define index mappings, populate an index, and then search it.

#### Define index mappings

```json
PUT /bakery-items
{
"mappings": {
"properties": {
"item": {
"type": "keyword"
},
"category": {
"type": "keyword"
},
"price": {
"type": "float"
},
"baked_date": {
"type": "date"
}
}
}
}
```

#### Populate an index

```json
POST /bakery-items/_bulk
{ "index": {} }
{ "item": "Chocolate Cake", "category": "cakes", "price": 15, "baked_date": "2023-07-01T00:00:00Z" }
{ "index": {} }
{ "item": "Chocolate Cake", "category": "cakes", "price": 18, "baked_date": "2023-07-04T00:00:00Z" }
{ "index": {} }
{ "item": "Vanilla Cake", "category": "cakes", "price": 12, "baked_date": "2023-07-02T00:00:00Z" }
```

#### Search the index, returning all results

```json
GET /bakery-items/_search
{
"query": {
"match": {
"category": "cakes"
}
},
"sort": ["price"]
}
```

This query returns the uncollapsed search results, showing all documents, including both entries for "Chocolate Cake".

Check failure on line 69 in _search-plugins/collapse-search.md

View workflow job for this annotation

GitHub Actions / style-job

[vale] reported by reviewdog 🐶 [OpenSearch.Spelling] Error: uncollapsed. If you are referencing a setting, variable, format, function, or repository, surround it with tic marks. Raw Output: {"message": "[OpenSearch.Spelling] Error: uncollapsed. If you are referencing a setting, variable, format, function, or repository, surround it with tic marks.", "location": {"path": "_search-plugins/collapse-search.md", "range": {"start": {"line": 69, "column": 24}}}, "severity": "ERROR"}

#### Search the index and collapse the results

To group search results by the `item` field and sort them by `price`, you can use the following query:

**Collapsed `item` field search results**

```json
GET /bakery-items/_search
{
"query": {
"match": {
"category": "cakes"
}
},
"collapse": {
"field": "item"
},
"sort": ["price"]
}
```

**Response**

```json
{
"took": 3,
"timed_out": false,
"_shards": {
"total": 1,
"successful": 1,
"skipped": 0,
"failed": 0
},
"hits": {
"total": {
"value": 4,
"relation": "eq"
},
"max_score": null,
"hits": [
{
"_index": "bakery-items",
"_id": "mISga5EB2HLDXHkv9kAr",
"_score": null,
"_source": {
"item": "Vanilla Cake",
"category": "cakes",
"price": 12,
"baked_date": "2023-07-02T00:00:00Z",
"baker": "Baker A"
},
"fields": {
"item": [
"Vanilla Cake"
]
},
"sort": [
12
]
},
{
"_index": "bakery-items",
"_id": "loSga5EB2HLDXHkv9kAr",
"_score": null,
"_source": {
"item": "Chocolate Cake",
"category": "cakes",
"price": 15,
"baked_date": "2023-07-01T00:00:00Z",
"baker": "Baker A"
},
"fields": {
"item": [
"Chocolate Cake"
]
},
"sort": [
15
]
}
]
}
}
```

The collapsed search results will show only one "Chocolate Cake" entry, demonstrating how the `collapse` parameter reduces redundancy.

leanneeliatra marked this conversation as resolved.
Show resolved Hide resolved
The `collapse` parameter affects only the top search results and does not change any aggregation results. The total number of hits shown in the response reflects all matching documents before the parameter is applied, including duplicates. However, the response doesn't indicate the exact number of unique groups formed by the operation.

leanneeliatra marked this conversation as resolved.
Show resolved Hide resolved
---

leanneeliatra marked this conversation as resolved.
Show resolved Hide resolved
## Expanding collapsed results

You can expand each collapsed top hit with the `inner_hits` property.

The following example request applies `inner_hits` to retrieve the lowest-priced and most recent item, for each type of cake:

```json
GET /bakery-items/_search
{
"query": {
"match": {
"category": "cakes"
}
},
"collapse": {
"field": "item",
"inner_hits": [
{
"name": "cheapest_items",
"size": 1,
"sort": ["price"]
},
{
"name": "newest_items",
"size": 1,
"sort": [{ "baked_date": "desc" }]
}
]
},
"sort": ["price"]
}

```

### Multiple inner hits for each collapsed hit

To obtain several groups of inner hits for each collapsed result, you can set different criteria for each group. For example, lets request the three most recent items for every bakery item:

leanneeliatra marked this conversation as resolved.
Show resolved Hide resolved
```json
GET /bakery-items/_search
{
"query": {
"match": {
"category": "cakes"
}
},
"collapse": {
"field": "item",
"inner_hits": [
{
"name": "cheapest_items",
"size": 1,
"sort": ["price"]
},
{
"name": "newest_items",
"size": 3,
"sort": [{ "baked_date": "desc" }]
}
]
},
"sort": ["price"]
}


```
This query searches for documents in the `cakes` category and groups the search results by the `item_name` field. For each `item_name`, it retrieves the top three lowest-priced items and the top three most recent items, sorted by `baked_date` in descending order.

You can expand the groups by sending an additional query for each inner hit request corresponding to each collapsed hit in the response. This can significantly slow down the process if there are too many groups or inner hit requests. The `max_concurrent_group_searches` request parameter can be used to control the maximum number of concurrent searches allowed in this phase. The default is based on the number of data nodes and the default search thread pool size.

leanneeliatra marked this conversation as resolved.
Show resolved Hide resolved
Loading