-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Labels
Description
There are 2 query string on message operation in big5 and we have been slower compared to ES. Based on this report https://blog.trailofbits.com/2025/03/06/benchmarking-opensearch-and-elasticsearch/
Big5 Text Querying section
Query Details
query-string-on-message OS 145 ES 3.5
https://github.com/opensearch-project/opensearch-benchmark-workloads/blob/main/big5/queries/query-string-on-message.json
{
"query": {
"query_string": {
"query": "message: shield AND carp AND shark"
}
}
}query-string-on-message-filtered OS 27 ES 10.4
https://github.com/opensearch-project/opensearch-benchmark-workloads/blob/main/big5/queries/query-string-on-message-filtered.json
{
"query": {
"bool": {
"must": [
{
"range": {
"@timestamp": {
"gte": "2023-01-01T00:00:00",
"lt": "2023-01-03T00:00:00"
}
}
},
{
"query_string": {
"query": "message: shield AND carp AND shark"
}
}
]
}
}
}We suspect some problem in our implementation of match only text field and are investigating.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
✅ Done
Status
Done