I'm trying to understand how search with a timestamp range works and whether I should use a specific index to make the search faster or if I can use a wildcard. The performance test didn't show any difference.
So I have a wildcard index 1p-minus-system-*
and it contains all the date indexes like
1p-minus-system-app-2024-03-27
1p-minus-system-web-2024-03-27
1p-minus-system-app-2024-03-26
1p-minus-system-web-2024-03-26
...
And I try to make a search for the last 10 minutes with the query
{
"query": {
"bool": {
"must": [
{"match_phrase": {"context.worker": psp}},
{"range": {"@timestamp": {"gte": "now-10m/m", "lte": "now/m"}}},
],
},
},
"_source": ["datetime.date", "context.operation_id", "context.worker", "short_message"],
"sort": [
{"@timestamp": {"order": "asc"}}
],
}